Project name changed

This commit is contained in:
Sigmanor 2016-01-09 22:46:25 +02:00
parent 2312ac891c
commit 94b8814d9b
32 changed files with 86 additions and 91 deletions

View file

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EncryptPad", "EncryptPad\EncryptPad.csproj", "{06D6F36C-FAFA-4B88-BE04-3F73EB28C21E}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Crypto Notepad", "Crypto Notepad\Crypto Notepad.csproj", "{06D6F36C-FAFA-4B88-BE04-3F73EB28C21E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View file

@ -3,7 +3,7 @@
using System.Security.Cryptography;
using System.Text;
namespace EncryptPad
namespace Crypto_Notepad
{
class AES
{

View file

@ -1,4 +1,4 @@
namespace EncryptPad
namespace Crypto_Notepad
{
partial class AboutFrom
{
@ -41,10 +41,10 @@ private void InitializeComponent()
this.label8 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
@ -55,9 +55,9 @@ private void InitializeComponent()
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(5, 6);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(160, 22);
this.label1.Size = new System.Drawing.Size(220, 22);
this.label1.TabIndex = 0;
this.label1.Text = "EncryptPad v0.0";
this.label1.Text = "Crypto Notepad v1.0.0";
//
// pictureBox1
//
@ -168,17 +168,6 @@ private void InitializeComponent()
this.toolTip1.SetToolTip(this.label9, "http://www.codeproject.com/Articles/20917/Creating-a-Custom-Settings-Provider");
this.label9.Click += new System.EventHandler(this.label9_Click);
//
// label10
//
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label10.ForeColor = System.Drawing.Color.White;
this.label10.Location = new System.Drawing.Point(6, 182);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(31, 13);
this.label10.TabIndex = 5;
this.label10.Text = "AES:";
//
// label11
//
this.label11.AutoEllipsis = true;
@ -193,17 +182,6 @@ private void InitializeComponent()
this.toolTip1.SetToolTip(this.label11, "http://easylab.net.ua/net-c-windows-forms/c-algoritm-shifrovaniya-aes");
this.label11.Click += new System.EventHandler(this.label11_Click);
//
// label12
//
this.label12.AutoSize = true;
this.label12.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label12.ForeColor = System.Drawing.Color.White;
this.label12.Location = new System.Drawing.Point(6, 206);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(115, 13);
this.label12.TabIndex = 5;
this.label12.Text = "CustomRichTextBox:";
//
// label13
//
this.label13.AutoEllipsis = true;
@ -218,7 +196,29 @@ private void InitializeComponent()
this.toolTip1.SetToolTip(this.label13, "https://code.msdn.microsoft.com/windowsdesktop/How-to-find-the-text-and-e92b8d78");
this.label13.Click += new System.EventHandler(this.label13_Click);
//
// AboutWindow
// label10
//
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label10.ForeColor = System.Drawing.Color.White;
this.label10.Location = new System.Drawing.Point(6, 182);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(31, 13);
this.label10.TabIndex = 5;
this.label10.Text = "AES:";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label12.ForeColor = System.Drawing.Color.White;
this.label12.Location = new System.Drawing.Point(6, 206);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(115, 13);
this.label12.TabIndex = 5;
this.label12.Text = "CustomRichTextBox:";
//
// AboutFrom
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
@ -241,7 +241,7 @@ private void InitializeComponent()
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AboutWindow";
this.Name = "AboutFrom";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "About";
this.Load += new System.EventHandler(this.AboutWindow_Load);

View file

@ -3,7 +3,7 @@
using System.Drawing;
using System.Windows.Forms;
namespace EncryptPad
namespace Crypto_Notepad
{
public partial class AboutFrom : Form
{
@ -40,7 +40,7 @@ private void label13_Click(object sender, EventArgs e)
private void AboutWindow_Load(object sender, EventArgs e)
{
Version vrs = new Version(Application.ProductVersion);
label1.Text = string.Format("EncryptPad "+ "{0}.{1}.{2}", vrs.Major, vrs.Minor, vrs.Build);
label1.Text = string.Format("Crypto Notepad " + "{0}.{1}.{2}", vrs.Major, vrs.Minor, vrs.Build);
}
private void label4_Click(object sender, EventArgs e)

View file

@ -120,39 +120,35 @@
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="pictureBox1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
UAAAAABJRU5ErkJggg==
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
</value>
</data>
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
</root>

View file

@ -1,4 +1,4 @@
namespace EncryptPad
namespace Crypto_Notepad
{
partial class ChangeKeyForm
{
@ -87,7 +87,7 @@ private void InitializeComponent()
//
this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBox2.Cursor = System.Windows.Forms.Cursors.Hand;
this.pictureBox2.Image = global::EncryptPad.Properties.Resources.eye_icon;
this.pictureBox2.Image = global::Crypto_Notepad.Properties.Resources.eye_icon;
this.pictureBox2.Location = new System.Drawing.Point(185, 50);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(32, 20);
@ -100,7 +100,7 @@ private void InitializeComponent()
//
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
this.pictureBox1.Image = global::EncryptPad.Properties.Resources.eye_icon;
this.pictureBox1.Image = global::Crypto_Notepad.Properties.Resources.eye_icon;
this.pictureBox1.Location = new System.Drawing.Point(185, 12);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(32, 20);

View file

@ -8,7 +8,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;
namespace EncryptPad
namespace Crypto_Notepad
{
public partial class ChangeKeyForm : Form
{

View file

@ -7,8 +7,8 @@
<ProjectGuid>{06D6F36C-FAFA-4B88-BE04-3F73EB28C21E}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>EncryptPad</RootNamespace>
<AssemblyName>EncryptPad</AssemblyName>
<RootNamespace>Crypto_Notepad</RootNamespace>
<AssemblyName>Crypto Notepad</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>

View file

@ -1,4 +1,4 @@
namespace EncryptPad
namespace Crypto_Notepad
{
partial class CustomRichTextBox
{

View file

@ -21,7 +21,7 @@
using System.Runtime.InteropServices;
using System;
namespace EncryptPad
namespace Crypto_Notepad
{
/// <summary>
/// Custom RichTextBox control

View file

@ -1,4 +1,4 @@
namespace EncryptPad
namespace Crypto_Notepad
{
partial class MainWindow
{
@ -89,7 +89,7 @@ public void InitializeComponent()
this.chkMatchCase = new System.Windows.Forms.CheckBox();
this.chkMatchWholeWord = new System.Windows.Forms.CheckBox();
this.panel1 = new System.Windows.Forms.Panel();
this.customRTB = new EncryptPad.CustomRichTextBox();
this.customRTB = new Crypto_Notepad.CustomRichTextBox();
this.MainMenu.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.statusStrip1.SuspendLayout();
@ -332,14 +332,14 @@ public void InitializeComponent()
// changeKeyToolStripMenuItem
//
this.changeKeyToolStripMenuItem.Name = "changeKeyToolStripMenuItem";
this.changeKeyToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.changeKeyToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
this.changeKeyToolStripMenuItem.Text = "Change Key";
this.changeKeyToolStripMenuItem.Click += new System.EventHandler(this.changeKeyToolStripMenuItem_Click);
//
// settingsToolStripMenuItem
//
this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
this.settingsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.settingsToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
this.settingsToolStripMenuItem.Text = "Settings";
this.settingsToolStripMenuItem.Click += new System.EventHandler(this.settingsToolStripMenuItem_Click);
//
@ -634,7 +634,7 @@ public void InitializeComponent()
this.MainMenuStrip = this.MainMenu;
this.MinimumSize = new System.Drawing.Size(500, 300);
this.Name = "MainWindow";
this.Text = "EncryptPad";
this.Text = "Crypto Notepad";
this.Activated += new System.EventHandler(this.MainWindow_Activated);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
this.Load += new System.EventHandler(this.MainWindow_Load);

View file

@ -9,7 +9,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;
namespace EncryptPad
namespace Crypto_Notepad
{
public partial class MainWindow : Form
{

View file

@ -1,4 +1,4 @@
namespace EncryptPad
namespace Crypto_Notepad
{
partial class Form2
{
@ -61,7 +61,7 @@ private void InitializeComponent()
//
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
this.pictureBox1.Image = global::EncryptPad.Properties.Resources.eye_icon;
this.pictureBox1.Image = global::Crypto_Notepad.Properties.Resources.eye_icon;
this.pictureBox1.Location = new System.Drawing.Point(127, 12);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(32, 20);

View file

@ -1,7 +1,7 @@
using System;
using System.Windows.Forms;
namespace EncryptPad
namespace Crypto_Notepad
{
public partial class Form2 : Form
{

View file

@ -4,7 +4,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;
namespace EncryptPad
namespace Crypto_Notepad
{
static class Program
{

View file

@ -5,11 +5,11 @@
// Управление общими сведениями о сборке осуществляется с помощью
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
// связанные со сборкой.
[assembly: AssemblyTitle("EncryptPad")]
[assembly: AssemblyTitle("Crypto Notepad")]
[assembly: AssemblyDescription("Simple editor with encryption features")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("EncryptPad")]
[assembly: AssemblyProduct("Crypto Notepad")]
[assembly: AssemblyCopyright("Sigmanor")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@ -32,5 +32,5 @@
// Можно задать все значения или принять номер построения и номер редакции по умолчанию,
// используя "*", как показано ниже:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.3.0.0")]
[assembly: AssemblyFileVersion("0.3.0.0")]
[assembly: AssemblyVersion("0.4.0.0")]
[assembly: AssemblyFileVersion("0.4.0.0")]

View file

@ -8,7 +8,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace EncryptPad.Properties {
namespace Crypto_Notepad.Properties {
using System;
@ -39,7 +39,7 @@ internal Resources() {
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EncryptPad.Properties.Resources", typeof(Resources).Assembly);
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Crypto_Notepad.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;

View file

@ -8,7 +8,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace EncryptPad.Properties {
namespace Crypto_Notepad.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]

View file

Before

Width:  |  Height:  |  Size: 395 B

After

Width:  |  Height:  |  Size: 395 B

View file

@ -1,4 +1,4 @@
namespace EncryptPad
namespace Crypto_Notepad
{
partial class SettingsForm
{

View file

@ -5,7 +5,7 @@
using System.Reflection;
using System.Windows.Forms;
namespace EncryptPad
namespace Crypto_Notepad
{
public partial class SettingsForm : Form
{

View file

Before

Width:  |  Height:  |  Size: 97 KiB

After

Width:  |  Height:  |  Size: 97 KiB

View file

@ -1 +0,0 @@
<OpenCoverSettings />