Crypto-Notepad/Crypto Notepad/MainForm.Designer.cs
2019-09-28 22:57:03 +03:00

1179 lines
76 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Crypto_Notepad
{
partial class MainForm
{
/// <summary>
/// Требуется переменная конструктора.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Код, автоматически созданный конструктором форм Windows
/// <summary>
/// Обязательный метод для поддержки конструктора - не изменяйте
/// содержимое данного метода при помощи редактора кода.
/// </summary>
public void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.mainMenu = new System.Windows.Forms.MenuStrip();
this.fileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.newMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.openMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.mainMenuSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.saveMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.saveAsMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.mainMenuSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.fileLocationMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.deleteFileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.mainMenuSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.exitMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.editMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.undoMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.redoMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.mainMenuSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.cutMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.copyMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.pasteMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.deleteMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.mainMenuSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.findMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.mainMenuSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.selectAllMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.wordWrapMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.mainMenuSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.clearMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.toolsMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.changeKeyMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.lockMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.settingsMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.helpMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.docsMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.updatesMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.mainMenuSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.aboutMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.debugMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.variablesMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.insMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.undoContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.redoContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenuSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.cutContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.copyContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.pasteContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.deleteContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenuSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.selectAllContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.rightToLeftContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.clearContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
this.searchPanel = new System.Windows.Forms.TableLayoutPanel();
this.findNextButton = new System.Windows.Forms.Button();
this.searchTextBox = new System.Windows.Forms.TextBox();
this.wholeWordCheckBox = new System.Windows.Forms.CheckBox();
this.caseSensitiveCheckBox = new System.Windows.Forms.CheckBox();
this.closeSearchPanel = new System.Windows.Forms.PictureBox();
this.toolbarPanel = new System.Windows.Forms.TableLayoutPanel();
this.lockToolbarButton = new System.Windows.Forms.PictureBox();
this.newToolbarButton = new System.Windows.Forms.PictureBox();
this.changeKeyToolbarButton = new System.Windows.Forms.PictureBox();
this.openToolbarButton = new System.Windows.Forms.PictureBox();
this.pasteToolbarButton = new System.Windows.Forms.PictureBox();
this.saveToolbarButton = new System.Windows.Forms.PictureBox();
this.copyToolbarButton = new System.Windows.Forms.PictureBox();
this.fileLocationToolbarButton = new System.Windows.Forms.PictureBox();
this.cutToolbarButton = new System.Windows.Forms.PictureBox();
this.deleteFileToolbarButton = new System.Windows.Forms.PictureBox();
this.closeToolbarButton = new System.Windows.Forms.PictureBox();
this.settingsToolbarButton = new System.Windows.Forms.PictureBox();
this.statusPanel = new System.Windows.Forms.StatusStrip();
this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.lengthStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.linesStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.lnStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.colStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.richTextBox = new Crypto_Notepad.ExRichTextBox();
this.RTBLineNumbers = new LineNumbers.LineNumbers();
this.mainMenu.SuspendLayout();
this.contextMenu.SuspendLayout();
this.searchPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.closeSearchPanel)).BeginInit();
this.toolbarPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.lockToolbarButton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.newToolbarButton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.changeKeyToolbarButton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.openToolbarButton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pasteToolbarButton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.saveToolbarButton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.copyToolbarButton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.fileLocationToolbarButton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.cutToolbarButton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.deleteFileToolbarButton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.closeToolbarButton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.settingsToolbarButton)).BeginInit();
this.statusPanel.SuspendLayout();
this.SuspendLayout();
//
// mainMenu
//
this.mainMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
this.mainMenu.DataBindings.Add(new System.Windows.Forms.Binding("Visible", global::Crypto_Notepad.Properties.Settings.Default, "mainMenu", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.mainMenu.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileMainMenu,
this.editMainMenu,
this.toolsMainMenu,
this.helpMainMenu,
this.debugMainMenu});
this.mainMenu.Location = new System.Drawing.Point(0, 0);
this.mainMenu.Name = "mainMenu";
this.mainMenu.Padding = new System.Windows.Forms.Padding(0);
this.mainMenu.Size = new System.Drawing.Size(484, 24);
this.mainMenu.TabIndex = 0;
this.mainMenu.Text = "menuStrip1";
this.mainMenu.Visible = global::Crypto_Notepad.Properties.Settings.Default.mainMenu;
//
// fileMainMenu
//
this.fileMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newMainMenu,
this.openMainMenu,
this.mainMenuSeparator1,
this.saveMainMenu,
this.saveAsMainMenu,
this.mainMenuSeparator2,
this.fileLocationMainMenu,
this.deleteFileMainMenu,
this.mainMenuSeparator3,
this.exitMainMenu});
this.fileMainMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.fileMainMenu.Name = "fileMainMenu";
this.fileMainMenu.Size = new System.Drawing.Size(36, 24);
this.fileMainMenu.Text = "File";
this.fileMainMenu.DropDownOpened += new System.EventHandler(this.fileMainMenu_DropDownOpened);
//
// newMainMenu
//
this.newMainMenu.Name = "newMainMenu";
this.newMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.newMainMenu.Size = new System.Drawing.Size(202, 22);
this.newMainMenu.Text = "New";
this.newMainMenu.Click += new System.EventHandler(this.NewMainMenu_Click);
//
// openMainMenu
//
this.openMainMenu.Name = "openMainMenu";
this.openMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.openMainMenu.Size = new System.Drawing.Size(202, 22);
this.openMainMenu.Text = "Open...";
this.openMainMenu.Click += new System.EventHandler(this.OpenMainMenu_Click);
//
// mainMenuSeparator1
//
this.mainMenuSeparator1.Name = "mainMenuSeparator1";
this.mainMenuSeparator1.Size = new System.Drawing.Size(199, 6);
//
// saveMainMenu
//
this.saveMainMenu.Name = "saveMainMenu";
this.saveMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.saveMainMenu.Size = new System.Drawing.Size(202, 22);
this.saveMainMenu.Text = "Save";
this.saveMainMenu.Click += new System.EventHandler(this.SaveMainMenu_Click);
//
// saveAsMainMenu
//
this.saveAsMainMenu.Name = "saveAsMainMenu";
this.saveAsMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.S)));
this.saveAsMainMenu.Size = new System.Drawing.Size(202, 22);
this.saveAsMainMenu.Text = "Save As...";
this.saveAsMainMenu.Click += new System.EventHandler(this.SaveAsMainMenu_Click);
//
// mainMenuSeparator2
//
this.mainMenuSeparator2.Name = "mainMenuSeparator2";
this.mainMenuSeparator2.Size = new System.Drawing.Size(199, 6);
//
// fileLocationMainMenu
//
this.fileLocationMainMenu.Name = "fileLocationMainMenu";
this.fileLocationMainMenu.Size = new System.Drawing.Size(202, 22);
this.fileLocationMainMenu.Text = "Open File Location";
this.fileLocationMainMenu.Click += new System.EventHandler(this.FileLocationMainMenu_Click);
//
// deleteFileMainMenu
//
this.deleteFileMainMenu.Name = "deleteFileMainMenu";
this.deleteFileMainMenu.Size = new System.Drawing.Size(202, 22);
this.deleteFileMainMenu.Text = "Delete File";
this.deleteFileMainMenu.Click += new System.EventHandler(this.DeleteFileToolStripMenuItem_Click);
//
// mainMenuSeparator3
//
this.mainMenuSeparator3.Name = "mainMenuSeparator3";
this.mainMenuSeparator3.Size = new System.Drawing.Size(199, 6);
//
// exitMainMenu
//
this.exitMainMenu.Name = "exitMainMenu";
this.exitMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Q)));
this.exitMainMenu.Size = new System.Drawing.Size(202, 22);
this.exitMainMenu.Text = "Exit";
this.exitMainMenu.Click += new System.EventHandler(this.ExitMainMenu_Click);
//
// editMainMenu
//
this.editMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.undoMainMenu,
this.redoMainMenu,
this.mainMenuSeparator4,
this.cutMainMenu,
this.copyMainMenu,
this.pasteMainMenu,
this.deleteMainMenu,
this.mainMenuSeparator5,
this.findMainMenu,
this.mainMenuSeparator6,
this.selectAllMainMenu,
this.wordWrapMainMenu,
this.mainMenuSeparator7,
this.clearMainMenu});
this.editMainMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.editMainMenu.Name = "editMainMenu";
this.editMainMenu.Size = new System.Drawing.Size(40, 24);
this.editMainMenu.Text = "Edit";
this.editMainMenu.DropDownOpened += new System.EventHandler(this.EditMainMenu_DropDownOpened);
//
// undoMainMenu
//
this.undoMainMenu.Name = "undoMainMenu";
this.undoMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
this.undoMainMenu.Size = new System.Drawing.Size(165, 22);
this.undoMainMenu.Text = "Undo";
this.undoMainMenu.Click += new System.EventHandler(this.UndoMainMenu_Click);
//
// redoMainMenu
//
this.redoMainMenu.Name = "redoMainMenu";
this.redoMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
this.redoMainMenu.Size = new System.Drawing.Size(165, 22);
this.redoMainMenu.Text = "Redo";
this.redoMainMenu.Click += new System.EventHandler(this.RedoMainMenu_Click);
//
// mainMenuSeparator4
//
this.mainMenuSeparator4.Name = "mainMenuSeparator4";
this.mainMenuSeparator4.Size = new System.Drawing.Size(162, 6);
//
// cutMainMenu
//
this.cutMainMenu.Enabled = false;
this.cutMainMenu.Name = "cutMainMenu";
this.cutMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
this.cutMainMenu.Size = new System.Drawing.Size(165, 22);
this.cutMainMenu.Text = "Cut";
this.cutMainMenu.Click += new System.EventHandler(this.CutMainMenu_Click);
//
// copyMainMenu
//
this.copyMainMenu.Enabled = false;
this.copyMainMenu.Name = "copyMainMenu";
this.copyMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
this.copyMainMenu.Size = new System.Drawing.Size(165, 22);
this.copyMainMenu.Text = "Copy";
this.copyMainMenu.Click += new System.EventHandler(this.CopyMainMenu_Click);
//
// pasteMainMenu
//
this.pasteMainMenu.Name = "pasteMainMenu";
this.pasteMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
this.pasteMainMenu.Size = new System.Drawing.Size(165, 22);
this.pasteMainMenu.Text = "Paste";
this.pasteMainMenu.Click += new System.EventHandler(this.PasteMainMenu_Click);
//
// deleteMainMenu
//
this.deleteMainMenu.Enabled = false;
this.deleteMainMenu.Name = "deleteMainMenu";
this.deleteMainMenu.ShortcutKeys = System.Windows.Forms.Keys.Delete;
this.deleteMainMenu.Size = new System.Drawing.Size(165, 22);
this.deleteMainMenu.Text = "Delete";
this.deleteMainMenu.Click += new System.EventHandler(this.DeleteMainMenu_Click);
//
// mainMenuSeparator5
//
this.mainMenuSeparator5.Name = "mainMenuSeparator5";
this.mainMenuSeparator5.Size = new System.Drawing.Size(162, 6);
//
// findMainMenu
//
this.findMainMenu.Name = "findMainMenu";
this.findMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F)));
this.findMainMenu.Size = new System.Drawing.Size(165, 22);
this.findMainMenu.Text = "Find";
this.findMainMenu.Click += new System.EventHandler(this.FindMainMenu_Click);
//
// mainMenuSeparator6
//
this.mainMenuSeparator6.Name = "mainMenuSeparator6";
this.mainMenuSeparator6.Size = new System.Drawing.Size(162, 6);
//
// selectAllMainMenu
//
this.selectAllMainMenu.Name = "selectAllMainMenu";
this.selectAllMainMenu.ShortcutKeyDisplayString = "";
this.selectAllMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
this.selectAllMainMenu.Size = new System.Drawing.Size(165, 22);
this.selectAllMainMenu.Text = "Select All";
this.selectAllMainMenu.Click += new System.EventHandler(this.SelectAllMainMenu_Click);
//
// wordWrapMainMenu
//
this.wordWrapMainMenu.Checked = true;
this.wordWrapMainMenu.CheckOnClick = true;
this.wordWrapMainMenu.CheckState = System.Windows.Forms.CheckState.Checked;
this.wordWrapMainMenu.Name = "wordWrapMainMenu";
this.wordWrapMainMenu.Size = new System.Drawing.Size(165, 22);
this.wordWrapMainMenu.Text = "Word Wrap";
this.wordWrapMainMenu.Click += new System.EventHandler(this.WordWrapMainMenu_Click);
//
// mainMenuSeparator7
//
this.mainMenuSeparator7.Name = "mainMenuSeparator7";
this.mainMenuSeparator7.Size = new System.Drawing.Size(162, 6);
//
// clearMainMenu
//
this.clearMainMenu.Name = "clearMainMenu";
this.clearMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Delete)));
this.clearMainMenu.Size = new System.Drawing.Size(165, 22);
this.clearMainMenu.Text = "Clear";
this.clearMainMenu.Click += new System.EventHandler(this.ClearMainMenu_Click);
//
// toolsMainMenu
//
this.toolsMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.changeKeyMainMenu,
this.lockMainMenu,
this.settingsMainMenu});
this.toolsMainMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.toolsMainMenu.Name = "toolsMainMenu";
this.toolsMainMenu.Size = new System.Drawing.Size(48, 24);
this.toolsMainMenu.Text = "Tools";
this.toolsMainMenu.DropDownOpened += new System.EventHandler(this.ToolsMainMenu_DropDownOpened);
//
// changeKeyMainMenu
//
this.changeKeyMainMenu.Name = "changeKeyMainMenu";
this.changeKeyMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt)
| System.Windows.Forms.Keys.K)));
this.changeKeyMainMenu.Size = new System.Drawing.Size(202, 22);
this.changeKeyMainMenu.Text = "Change Key";
this.changeKeyMainMenu.Click += new System.EventHandler(this.ChangeKeyMainMenu_Click);
//
// lockMainMenu
//
this.lockMainMenu.Name = "lockMainMenu";
this.lockMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.L)));
this.lockMainMenu.Size = new System.Drawing.Size(202, 22);
this.lockMainMenu.Text = "Lock";
this.lockMainMenu.Click += new System.EventHandler(this.LockMainMenu_Click);
//
// settingsMainMenu
//
this.settingsMainMenu.Name = "settingsMainMenu";
this.settingsMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt)
| System.Windows.Forms.Keys.S)));
this.settingsMainMenu.Size = new System.Drawing.Size(202, 22);
this.settingsMainMenu.Text = "Settings";
this.settingsMainMenu.Click += new System.EventHandler(this.SettingsMainMenu_Click);
//
// helpMainMenu
//
this.helpMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.docsMainMenu,
this.updatesMainMenu,
this.mainMenuSeparator8,
this.aboutMainMenu});
this.helpMainMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.helpMainMenu.Name = "helpMainMenu";
this.helpMainMenu.Size = new System.Drawing.Size(43, 24);
this.helpMainMenu.Text = "Help";
//
// docsMainMenu
//
this.docsMainMenu.Name = "docsMainMenu";
this.docsMainMenu.ShortcutKeys = System.Windows.Forms.Keys.F1;
this.docsMainMenu.Size = new System.Drawing.Size(187, 22);
this.docsMainMenu.Text = "Documentation";
this.docsMainMenu.Click += new System.EventHandler(this.DocsMainMenu_Click);
//
// updatesMainMenu
//
this.updatesMainMenu.Name = "updatesMainMenu";
this.updatesMainMenu.RightToLeftAutoMirrorImage = true;
this.updatesMainMenu.Size = new System.Drawing.Size(187, 22);
this.updatesMainMenu.Text = "Сheck for Updates...";
this.updatesMainMenu.Click += new System.EventHandler(this.UpdatesMainMenu_Click);
//
// mainMenuSeparator8
//
this.mainMenuSeparator8.ForeColor = System.Drawing.SystemColors.ControlText;
this.mainMenuSeparator8.Name = "mainMenuSeparator8";
this.mainMenuSeparator8.Size = new System.Drawing.Size(184, 6);
//
// aboutMainMenu
//
this.aboutMainMenu.BackColor = System.Drawing.SystemColors.Control;
this.aboutMainMenu.Name = "aboutMainMenu";
this.aboutMainMenu.ShortcutKeyDisplayString = "";
this.aboutMainMenu.Size = new System.Drawing.Size(187, 22);
this.aboutMainMenu.Text = "About";
this.aboutMainMenu.Click += new System.EventHandler(this.AboutMainMenu_Click);
//
// debugMainMenu
//
this.debugMainMenu.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.debugMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.variablesMainMenu,
this.insMainMenu});
this.debugMainMenu.Name = "debugMainMenu";
this.debugMainMenu.Size = new System.Drawing.Size(55, 24);
this.debugMainMenu.Text = "Debug";
this.debugMainMenu.Visible = false;
//
// variablesMainMenu
//
this.variablesMainMenu.Name = "variablesMainMenu";
this.variablesMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Space)));
this.variablesMainMenu.Size = new System.Drawing.Size(213, 22);
this.variablesMainMenu.Text = "Main variables";
this.variablesMainMenu.Click += new System.EventHandler(this.VariablesMainMenu_Click);
//
// insMainMenu
//
this.insMainMenu.Name = "insMainMenu";
this.insMainMenu.Size = new System.Drawing.Size(213, 22);
this.insMainMenu.Text = "Insert";
this.insMainMenu.Visible = false;
//
// contextMenu
//
this.contextMenu.BackColor = System.Drawing.SystemColors.Control;
this.contextMenu.Font = new System.Drawing.Font("Tahoma", 9F);
this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.undoContextMenu,
this.redoContextMenu,
this.contextMenuSeparator1,
this.cutContextMenu,
this.copyContextMenu,
this.pasteContextMenu,
this.deleteContextMenu,
this.contextMenuSeparator2,
this.selectAllContextMenu,
this.rightToLeftContextMenu,
this.clearContextMenu});
this.contextMenu.Name = "contextMenuStrip1";
this.contextMenu.Size = new System.Drawing.Size(185, 214);
this.contextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.ContextMenu_Opening);
//
// undoContextMenu
//
this.undoContextMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.undoContextMenu.Name = "undoContextMenu";
this.undoContextMenu.Size = new System.Drawing.Size(184, 22);
this.undoContextMenu.Text = "Undo";
this.undoContextMenu.Click += new System.EventHandler(this.UndoContextMenu_Click);
//
// redoContextMenu
//
this.redoContextMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.redoContextMenu.Name = "redoContextMenu";
this.redoContextMenu.Size = new System.Drawing.Size(184, 22);
this.redoContextMenu.Text = "Redo";
this.redoContextMenu.Click += new System.EventHandler(this.RedoContextMenu_Click);
//
// contextMenuSeparator1
//
this.contextMenuSeparator1.Name = "contextMenuSeparator1";
this.contextMenuSeparator1.Size = new System.Drawing.Size(181, 6);
//
// cutContextMenu
//
this.cutContextMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.cutContextMenu.Name = "cutContextMenu";
this.cutContextMenu.Size = new System.Drawing.Size(184, 22);
this.cutContextMenu.Text = "Cut";
this.cutContextMenu.Click += new System.EventHandler(this.CutContextMenu_Click);
//
// copyContextMenu
//
this.copyContextMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.copyContextMenu.Name = "copyContextMenu";
this.copyContextMenu.Size = new System.Drawing.Size(184, 22);
this.copyContextMenu.Text = "Copy";
this.copyContextMenu.Click += new System.EventHandler(this.CopyContextMenu_Click);
//
// pasteContextMenu
//
this.pasteContextMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.pasteContextMenu.Name = "pasteContextMenu";
this.pasteContextMenu.Size = new System.Drawing.Size(184, 22);
this.pasteContextMenu.Text = "Paste";
this.pasteContextMenu.Click += new System.EventHandler(this.PasteContextMenu_Click);
//
// deleteContextMenu
//
this.deleteContextMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.deleteContextMenu.Name = "deleteContextMenu";
this.deleteContextMenu.Size = new System.Drawing.Size(184, 22);
this.deleteContextMenu.Text = "Delete";
this.deleteContextMenu.Click += new System.EventHandler(this.DeleteContextMenu_Click);
//
// contextMenuSeparator2
//
this.contextMenuSeparator2.Name = "contextMenuSeparator2";
this.contextMenuSeparator2.Size = new System.Drawing.Size(181, 6);
//
// selectAllContextMenu
//
this.selectAllContextMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.selectAllContextMenu.Name = "selectAllContextMenu";
this.selectAllContextMenu.Size = new System.Drawing.Size(184, 22);
this.selectAllContextMenu.Text = "Select All";
this.selectAllContextMenu.Click += new System.EventHandler(this.SelectAllContextMenu_Click);
//
// rightToLeftContextMenu
//
this.rightToLeftContextMenu.Checked = global::Crypto_Notepad.Properties.Settings.Default.editorRightToLeft;
this.rightToLeftContextMenu.CheckOnClick = true;
this.rightToLeftContextMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.rightToLeftContextMenu.Name = "rightToLeftContextMenu";
this.rightToLeftContextMenu.Size = new System.Drawing.Size(184, 22);
this.rightToLeftContextMenu.Text = "Right-to-left reading";
this.rightToLeftContextMenu.Click += new System.EventHandler(this.RightToLeftContextMenu_Click);
//
// clearContextMenu
//
this.clearContextMenu.ForeColor = System.Drawing.SystemColors.ControlText;
this.clearContextMenu.Name = "clearContextMenu";
this.clearContextMenu.Size = new System.Drawing.Size(184, 22);
this.clearContextMenu.Text = "Clear";
this.clearContextMenu.Click += new System.EventHandler(this.ClearContextMenu_Click);
//
// openFileDialog
//
this.openFileDialog.Filter = "Crypto Notepad (*.cnp)|*.cnp|All files (*.*)|*.*";
//
// saveFileDialog
//
this.saveFileDialog.Filter = "Crypto Notepad (*.cnp)|*.cnp";
//
// searchPanel
//
this.searchPanel.BackColor = global::Crypto_Notepad.Properties.Settings.Default.searchPanelBackColor;
this.searchPanel.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
this.searchPanel.ColumnCount = 5;
this.searchPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.searchPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.searchPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.searchPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.searchPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 44F));
this.searchPanel.Controls.Add(this.findNextButton, 3, 0);
this.searchPanel.Controls.Add(this.searchTextBox, 0, 0);
this.searchPanel.Controls.Add(this.wholeWordCheckBox, 2, 0);
this.searchPanel.Controls.Add(this.caseSensitiveCheckBox, 1, 0);
this.searchPanel.Controls.Add(this.closeSearchPanel, 4, 0);
this.searchPanel.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::Crypto_Notepad.Properties.Settings.Default, "searchPanelBackColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.searchPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
this.searchPanel.ForeColor = System.Drawing.Color.Black;
this.searchPanel.Location = new System.Drawing.Point(0, 211);
this.searchPanel.Name = "searchPanel";
this.searchPanel.RowCount = 1;
this.searchPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.searchPanel.Size = new System.Drawing.Size(484, 28);
this.searchPanel.TabIndex = 17;
this.searchPanel.Visible = false;
//
// findNextButton
//
this.findNextButton.BackColor = System.Drawing.Color.Transparent;
this.findNextButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.findNextButton.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::Crypto_Notepad.Properties.Settings.Default, "searchPanelFontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.findNextButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.findNextButton.FlatAppearance.BorderColor = System.Drawing.Color.Black;
this.findNextButton.FlatAppearance.BorderSize = 0;
this.findNextButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.findNextButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
this.findNextButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.findNextButton.ForeColor = global::Crypto_Notepad.Properties.Settings.Default.searchPanelFontColor;
this.findNextButton.Location = new System.Drawing.Point(375, 4);
this.findNextButton.Name = "findNextButton";
this.findNextButton.Size = new System.Drawing.Size(60, 20);
this.findNextButton.TabIndex = 15;
this.findNextButton.TabStop = false;
this.findNextButton.Text = "Find Next";
this.findNextButton.UseMnemonic = false;
this.findNextButton.UseVisualStyleBackColor = false;
this.findNextButton.Click += new System.EventHandler(this.FindNextButton_Click);
//
// searchTextBox
//
this.searchTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.searchTextBox.BackColor = global::Crypto_Notepad.Properties.Settings.Default.searchPanelBackColor;
this.searchTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.searchTextBox.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::Crypto_Notepad.Properties.Settings.Default, "searchPanelFontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.searchTextBox.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::Crypto_Notepad.Properties.Settings.Default, "searchPanelBackColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.searchTextBox.ForeColor = global::Crypto_Notepad.Properties.Settings.Default.searchPanelFontColor;
this.searchTextBox.Location = new System.Drawing.Point(4, 7);
this.searchTextBox.Name = "searchTextBox";
this.searchTextBox.Size = new System.Drawing.Size(173, 13);
this.searchTextBox.TabIndex = 9;
this.searchTextBox.TabStop = false;
this.searchTextBox.TextChanged += new System.EventHandler(this.SearchTextBox_TextChanged);
this.searchTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SearchTextBox_KeyDown);
//
// wholeWordCheckBox
//
this.wholeWordCheckBox.AutoSize = true;
this.wholeWordCheckBox.BackColor = System.Drawing.Color.Transparent;
this.wholeWordCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::Crypto_Notepad.Properties.Settings.Default, "searchPanelFontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.wholeWordCheckBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.wholeWordCheckBox.ForeColor = global::Crypto_Notepad.Properties.Settings.Default.searchPanelFontColor;
this.wholeWordCheckBox.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.wholeWordCheckBox.Location = new System.Drawing.Point(285, 4);
this.wholeWordCheckBox.Name = "wholeWordCheckBox";
this.wholeWordCheckBox.Size = new System.Drawing.Size(83, 20);
this.wholeWordCheckBox.TabIndex = 12;
this.wholeWordCheckBox.Text = "Whole word";
this.wholeWordCheckBox.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
this.wholeWordCheckBox.UseVisualStyleBackColor = false;
this.wholeWordCheckBox.CheckedChanged += new System.EventHandler(this.WholeWordCheckBox_CheckedChanged);
//
// caseSensitiveCheckBox
//
this.caseSensitiveCheckBox.AutoSize = true;
this.caseSensitiveCheckBox.BackColor = System.Drawing.Color.Transparent;
this.caseSensitiveCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::Crypto_Notepad.Properties.Settings.Default, "searchPanelFontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.caseSensitiveCheckBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.caseSensitiveCheckBox.ForeColor = global::Crypto_Notepad.Properties.Settings.Default.searchPanelFontColor;
this.caseSensitiveCheckBox.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.caseSensitiveCheckBox.Location = new System.Drawing.Point(184, 4);
this.caseSensitiveCheckBox.Name = "caseSensitiveCheckBox";
this.caseSensitiveCheckBox.Size = new System.Drawing.Size(94, 20);
this.caseSensitiveCheckBox.TabIndex = 11;
this.caseSensitiveCheckBox.Text = "Case sensitive";
this.caseSensitiveCheckBox.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
this.caseSensitiveCheckBox.UseVisualStyleBackColor = false;
this.caseSensitiveCheckBox.CheckedChanged += new System.EventHandler(this.CaseSensitiveCheckBox_CheckedChanged);
//
// closeSearchPanel
//
this.closeSearchPanel.BackColor = System.Drawing.Color.Transparent;
this.closeSearchPanel.Cursor = System.Windows.Forms.Cursors.Hand;
this.closeSearchPanel.Image = ((System.Drawing.Image)(resources.GetObject("closeSearchPanel.Image")));
this.closeSearchPanel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.closeSearchPanel.Location = new System.Drawing.Point(442, 4);
this.closeSearchPanel.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
this.closeSearchPanel.Name = "closeSearchPanel";
this.closeSearchPanel.Size = new System.Drawing.Size(15, 19);
this.closeSearchPanel.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.closeSearchPanel.TabIndex = 14;
this.closeSearchPanel.TabStop = false;
this.closeSearchPanel.Click += new System.EventHandler(this.CloseSearchPanel_Click);
this.closeSearchPanel.MouseLeave += new System.EventHandler(this.CloseSearchPanel_MouseLeave);
this.closeSearchPanel.MouseHover += new System.EventHandler(this.CloseSearchPanel_MouseHover);
//
// toolbarPanel
//
this.toolbarPanel.BackColor = global::Crypto_Notepad.Properties.Settings.Default.toolbarBackColor;
this.toolbarPanel.ColumnCount = 13;
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.toolbarPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.toolbarPanel.Controls.Add(this.lockToolbarButton, 9, 0);
this.toolbarPanel.Controls.Add(this.newToolbarButton, 0, 0);
this.toolbarPanel.Controls.Add(this.changeKeyToolbarButton, 8, 0);
this.toolbarPanel.Controls.Add(this.openToolbarButton, 1, 0);
this.toolbarPanel.Controls.Add(this.pasteToolbarButton, 7, 0);
this.toolbarPanel.Controls.Add(this.saveToolbarButton, 2, 0);
this.toolbarPanel.Controls.Add(this.copyToolbarButton, 6, 0);
this.toolbarPanel.Controls.Add(this.fileLocationToolbarButton, 3, 0);
this.toolbarPanel.Controls.Add(this.cutToolbarButton, 5, 0);
this.toolbarPanel.Controls.Add(this.deleteFileToolbarButton, 4, 0);
this.toolbarPanel.Controls.Add(this.closeToolbarButton, 12, 0);
this.toolbarPanel.Controls.Add(this.settingsToolbarButton, 10, 0);
this.toolbarPanel.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::Crypto_Notepad.Properties.Settings.Default, "toolbarBackColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.toolbarPanel.DataBindings.Add(new System.Windows.Forms.Binding("Visible", global::Crypto_Notepad.Properties.Settings.Default, "showToolbar", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.toolbarPanel.Dock = System.Windows.Forms.DockStyle.Top;
this.toolbarPanel.ForeColor = System.Drawing.SystemColors.Control;
this.toolbarPanel.Location = new System.Drawing.Point(0, 24);
this.toolbarPanel.Name = "toolbarPanel";
this.toolbarPanel.RowCount = 1;
this.toolbarPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.toolbarPanel.Size = new System.Drawing.Size(484, 25);
this.toolbarPanel.TabIndex = 17;
this.toolbarPanel.Visible = global::Crypto_Notepad.Properties.Settings.Default.showToolbar;
//
// lockToolbarButton
//
this.lockToolbarButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.lockToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("lockToolbarButton.Image")));
this.lockToolbarButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.lockToolbarButton.Location = new System.Drawing.Point(219, 3);
this.lockToolbarButton.Name = "lockToolbarButton";
this.lockToolbarButton.Size = new System.Drawing.Size(16, 16);
this.lockToolbarButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.lockToolbarButton.TabIndex = 15;
this.lockToolbarButton.TabStop = false;
this.lockToolbarButton.Click += new System.EventHandler(this.LockToolbarButton_Click);
//
// newToolbarButton
//
this.newToolbarButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.newToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolbarButton.Image")));
this.newToolbarButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.newToolbarButton.Location = new System.Drawing.Point(3, 3);
this.newToolbarButton.Name = "newToolbarButton";
this.newToolbarButton.Size = new System.Drawing.Size(16, 16);
this.newToolbarButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.newToolbarButton.TabIndex = 15;
this.newToolbarButton.TabStop = false;
this.newToolbarButton.Click += new System.EventHandler(this.NewToolbarButton_Click);
//
// changeKeyToolbarButton
//
this.changeKeyToolbarButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.changeKeyToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("changeKeyToolbarButton.Image")));
this.changeKeyToolbarButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.changeKeyToolbarButton.Location = new System.Drawing.Point(195, 3);
this.changeKeyToolbarButton.Name = "changeKeyToolbarButton";
this.changeKeyToolbarButton.Size = new System.Drawing.Size(16, 16);
this.changeKeyToolbarButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.changeKeyToolbarButton.TabIndex = 15;
this.changeKeyToolbarButton.TabStop = false;
this.changeKeyToolbarButton.Click += new System.EventHandler(this.ChangeKeyToolbarButton_Click);
//
// openToolbarButton
//
this.openToolbarButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.openToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolbarButton.Image")));
this.openToolbarButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.openToolbarButton.Location = new System.Drawing.Point(27, 3);
this.openToolbarButton.Name = "openToolbarButton";
this.openToolbarButton.Size = new System.Drawing.Size(16, 16);
this.openToolbarButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.openToolbarButton.TabIndex = 15;
this.openToolbarButton.TabStop = false;
this.openToolbarButton.Click += new System.EventHandler(this.OpenToolbarButton_Click);
//
// pasteToolbarButton
//
this.pasteToolbarButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.pasteToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolbarButton.Image")));
this.pasteToolbarButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.pasteToolbarButton.Location = new System.Drawing.Point(171, 3);
this.pasteToolbarButton.Name = "pasteToolbarButton";
this.pasteToolbarButton.Size = new System.Drawing.Size(16, 16);
this.pasteToolbarButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pasteToolbarButton.TabIndex = 15;
this.pasteToolbarButton.TabStop = false;
this.pasteToolbarButton.Click += new System.EventHandler(this.PasteToolbarButton_Click);
//
// saveToolbarButton
//
this.saveToolbarButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.saveToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolbarButton.Image")));
this.saveToolbarButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.saveToolbarButton.Location = new System.Drawing.Point(51, 3);
this.saveToolbarButton.Name = "saveToolbarButton";
this.saveToolbarButton.Size = new System.Drawing.Size(16, 16);
this.saveToolbarButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.saveToolbarButton.TabIndex = 15;
this.saveToolbarButton.TabStop = false;
this.saveToolbarButton.Click += new System.EventHandler(this.SaveToolbarButton_Click);
//
// copyToolbarButton
//
this.copyToolbarButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.copyToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolbarButton.Image")));
this.copyToolbarButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.copyToolbarButton.Location = new System.Drawing.Point(147, 3);
this.copyToolbarButton.Name = "copyToolbarButton";
this.copyToolbarButton.Size = new System.Drawing.Size(16, 16);
this.copyToolbarButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.copyToolbarButton.TabIndex = 15;
this.copyToolbarButton.TabStop = false;
this.copyToolbarButton.Click += new System.EventHandler(this.CopyToolbarButton_Click);
//
// fileLocationToolbarButton
//
this.fileLocationToolbarButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.fileLocationToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("fileLocationToolbarButton.Image")));
this.fileLocationToolbarButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.fileLocationToolbarButton.Location = new System.Drawing.Point(75, 3);
this.fileLocationToolbarButton.Name = "fileLocationToolbarButton";
this.fileLocationToolbarButton.Size = new System.Drawing.Size(16, 16);
this.fileLocationToolbarButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.fileLocationToolbarButton.TabIndex = 15;
this.fileLocationToolbarButton.TabStop = false;
this.fileLocationToolbarButton.Click += new System.EventHandler(this.FileLocationToolbarButton_Click);
//
// cutToolbarButton
//
this.cutToolbarButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.cutToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("cutToolbarButton.Image")));
this.cutToolbarButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.cutToolbarButton.Location = new System.Drawing.Point(123, 3);
this.cutToolbarButton.Name = "cutToolbarButton";
this.cutToolbarButton.Size = new System.Drawing.Size(16, 16);
this.cutToolbarButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.cutToolbarButton.TabIndex = 15;
this.cutToolbarButton.TabStop = false;
this.cutToolbarButton.Click += new System.EventHandler(this.CutToolbarButton_Click);
//
// deleteFileToolbarButton
//
this.deleteFileToolbarButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.deleteFileToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("deleteFileToolbarButton.Image")));
this.deleteFileToolbarButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.deleteFileToolbarButton.Location = new System.Drawing.Point(99, 3);
this.deleteFileToolbarButton.Name = "deleteFileToolbarButton";
this.deleteFileToolbarButton.Size = new System.Drawing.Size(16, 16);
this.deleteFileToolbarButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.deleteFileToolbarButton.TabIndex = 15;
this.deleteFileToolbarButton.TabStop = false;
this.deleteFileToolbarButton.Click += new System.EventHandler(this.DeleteFileToolbarButton_Click);
//
// closeToolbarButton
//
this.closeToolbarButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.closeToolbarButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.closeToolbarButton.Image = global::Crypto_Notepad.Properties.Resources.close_g;
this.closeToolbarButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.closeToolbarButton.Location = new System.Drawing.Point(467, 3);
this.closeToolbarButton.Margin = new System.Windows.Forms.Padding(3, 3, 2, 3);
this.closeToolbarButton.Name = "closeToolbarButton";
this.closeToolbarButton.Size = new System.Drawing.Size(15, 19);
this.closeToolbarButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.closeToolbarButton.TabIndex = 14;
this.closeToolbarButton.TabStop = false;
this.closeToolbarButton.Click += new System.EventHandler(this.CloseToolbarButton_Click);
this.closeToolbarButton.MouseEnter += new System.EventHandler(this.CloseToolbarButton_MouseEnter);
this.closeToolbarButton.MouseLeave += new System.EventHandler(this.CloseToolbarButton_MouseLeave);
//
// settingsToolbarButton
//
this.settingsToolbarButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.settingsToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("settingsToolbarButton.Image")));
this.settingsToolbarButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.settingsToolbarButton.Location = new System.Drawing.Point(243, 3);
this.settingsToolbarButton.Name = "settingsToolbarButton";
this.settingsToolbarButton.Size = new System.Drawing.Size(16, 16);
this.settingsToolbarButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.settingsToolbarButton.TabIndex = 15;
this.settingsToolbarButton.TabStop = false;
this.settingsToolbarButton.Click += new System.EventHandler(this.SettingsToolbarButton_Click);
//
// statusPanel
//
this.statusPanel.BackColor = global::Crypto_Notepad.Properties.Settings.Default.statusPanelBackColor;
this.statusPanel.DataBindings.Add(new System.Windows.Forms.Binding("Visible", global::Crypto_Notepad.Properties.Settings.Default, "statusPanel", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.statusPanel.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::Crypto_Notepad.Properties.Settings.Default, "statusPanelBackColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.statusPanel.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::Crypto_Notepad.Properties.Settings.Default, "statusPanelFontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.statusPanel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.statusPanel.ForeColor = global::Crypto_Notepad.Properties.Settings.Default.statusPanelFontColor;
this.statusPanel.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.statusLabel,
this.lengthStatusLabel,
this.linesStatusLabel,
this.lnStatusLabel,
this.colStatusLabel});
this.statusPanel.Location = new System.Drawing.Point(0, 239);
this.statusPanel.Name = "statusPanel";
this.statusPanel.Size = new System.Drawing.Size(484, 22);
this.statusPanel.TabIndex = 18;
this.statusPanel.Visible = global::Crypto_Notepad.Properties.Settings.Default.statusPanel;
//
// statusLabel
//
this.statusLabel.ActiveLinkColor = System.Drawing.Color.SteelBlue;
this.statusLabel.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right;
this.statusLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
this.statusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.statusLabel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.statusLabel.ImageTransparentColor = System.Drawing.SystemColors.Control;
this.statusLabel.LinkColor = System.Drawing.Color.SteelBlue;
this.statusLabel.Name = "statusLabel";
this.statusLabel.Size = new System.Drawing.Size(43, 17);
this.statusLabel.Text = "Ready";
this.statusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.statusLabel.VisitedLinkColor = System.Drawing.Color.SteelBlue;
this.statusLabel.Click += new System.EventHandler(this.StatusLabel_Click);
this.statusLabel.TextChanged += new System.EventHandler(this.StatusLabel_TextChanged);
//
// lengthStatusLabel
//
this.lengthStatusLabel.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right;
this.lengthStatusLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
this.lengthStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.lengthStatusLabel.Name = "lengthStatusLabel";
this.lengthStatusLabel.Size = new System.Drawing.Size(59, 17);
this.lengthStatusLabel.Text = "Length: 0";
//
// linesStatusLabel
//
this.linesStatusLabel.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right;
this.linesStatusLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
this.linesStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.linesStatusLabel.Name = "linesStatusLabel";
this.linesStatusLabel.Size = new System.Drawing.Size(49, 17);
this.linesStatusLabel.Text = "Lines: 1";
//
// lnStatusLabel
//
this.lnStatusLabel.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right;
this.lnStatusLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
this.lnStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.lnStatusLabel.Name = "lnStatusLabel";
this.lnStatusLabel.Size = new System.Drawing.Size(35, 17);
this.lnStatusLabel.Text = "Ln: 1";
//
// colStatusLabel
//
this.colStatusLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
this.colStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.colStatusLabel.Name = "colStatusLabel";
this.colStatusLabel.Size = new System.Drawing.Size(36, 17);
this.colStatusLabel.Text = "Col: 0";
//
// richTextBox
//
this.richTextBox.AcceptsTab = true;
this.richTextBox.BackColor = global::Crypto_Notepad.Properties.Settings.Default.editorBackColor;
this.richTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.richTextBox.ContextMenuStrip = this.contextMenu;
this.richTextBox.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::Crypto_Notepad.Properties.Settings.Default, "editorBackColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.richTextBox.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::Crypto_Notepad.Properties.Settings.Default, "editroFontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.richTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::Crypto_Notepad.Properties.Settings.Default, "editorFont", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.richTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTextBox.Font = global::Crypto_Notepad.Properties.Settings.Default.editorFont;
this.richTextBox.ForeColor = global::Crypto_Notepad.Properties.Settings.Default.editroFontColor;
this.richTextBox.Location = new System.Drawing.Point(22, 49);
this.richTextBox.Name = "richTextBox";
this.richTextBox.Size = new System.Drawing.Size(462, 162);
this.richTextBox.TabIndex = 16;
this.richTextBox.Text = "";
this.richTextBox.CursorPositionChanged += new System.EventHandler(this.RichTextBox_CursorPositionChanged);
this.richTextBox.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.RichTextBox_LinkClicked);
this.richTextBox.SelectionChanged += new System.EventHandler(this.RichTextBox_SelectionChanged);
this.richTextBox.Click += new System.EventHandler(this.RichTextBox_Click);
this.richTextBox.TextChanged += new System.EventHandler(this.RichTextBox_TextChanged);
this.richTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.RichTextBox_KeyDown);
//
// RTBLineNumbers
//
this.RTBLineNumbers._SeeThroughMode_ = false;
this.RTBLineNumbers.AutoSizing = true;
this.RTBLineNumbers.BackColor = global::Crypto_Notepad.Properties.Settings.Default.lnBackColor;
this.RTBLineNumbers.BackgroundGradient_AlphaColor = System.Drawing.Color.Transparent;
this.RTBLineNumbers.BackgroundGradient_BetaColor = System.Drawing.Color.Transparent;
this.RTBLineNumbers.BackgroundGradient_Direction = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
this.RTBLineNumbers.BorderLines_Color = System.Drawing.Color.Transparent;
this.RTBLineNumbers.BorderLines_Style = System.Drawing.Drawing2D.DashStyle.Solid;
this.RTBLineNumbers.BorderLines_Thickness = 1F;
this.RTBLineNumbers.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::Crypto_Notepad.Properties.Settings.Default, "editorFont", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.RTBLineNumbers.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::Crypto_Notepad.Properties.Settings.Default, "lnBackColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.RTBLineNumbers.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::Crypto_Notepad.Properties.Settings.Default, "lnFontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.RTBLineNumbers.Dock = System.Windows.Forms.DockStyle.Left;
this.RTBLineNumbers.DockSide = LineNumbers.LineNumbers.LineNumberDockSide.Left;
this.RTBLineNumbers.Font = global::Crypto_Notepad.Properties.Settings.Default.editorFont;
this.RTBLineNumbers.ForeColor = global::Crypto_Notepad.Properties.Settings.Default.lnFontColor;
this.RTBLineNumbers.GridLines_Color = System.Drawing.Color.Transparent;
this.RTBLineNumbers.GridLines_Style = System.Drawing.Drawing2D.DashStyle.Solid;
this.RTBLineNumbers.GridLines_Thickness = 1F;
this.RTBLineNumbers.LineNrs_Alignment = System.Drawing.ContentAlignment.TopCenter;
this.RTBLineNumbers.LineNrs_AntiAlias = true;
this.RTBLineNumbers.LineNrs_AsHexadecimal = false;
this.RTBLineNumbers.LineNrs_ClippedByItemRectangle = true;
this.RTBLineNumbers.LineNrs_LeadingZeroes = false;
this.RTBLineNumbers.LineNrs_Offset = new System.Drawing.Size(0, 0);
this.RTBLineNumbers.Location = new System.Drawing.Point(0, 49);
this.RTBLineNumbers.Margin = new System.Windows.Forms.Padding(0);
this.RTBLineNumbers.MarginLines_Color = System.Drawing.Color.DarkGray;
this.RTBLineNumbers.MarginLines_Side = LineNumbers.LineNumbers.LineNumberDockSide.None;
this.RTBLineNumbers.MarginLines_Style = System.Drawing.Drawing2D.DashStyle.Solid;
this.RTBLineNumbers.MarginLines_Thickness = 1F;
this.RTBLineNumbers.Name = "RTBLineNumbers";
this.RTBLineNumbers.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0);
this.RTBLineNumbers.ParentRichTextBox = this.richTextBox;
this.RTBLineNumbers.Show_BackgroundGradient = true;
this.RTBLineNumbers.Show_BorderLines = false;
this.RTBLineNumbers.Show_GridLines = true;
this.RTBLineNumbers.Show_LineNrs = true;
this.RTBLineNumbers.Show_MarginLines = true;
this.RTBLineNumbers.Size = new System.Drawing.Size(22, 162);
this.RTBLineNumbers.TabIndex = 19;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = global::Crypto_Notepad.Properties.Settings.Default.editorBackColor;
this.ClientSize = new System.Drawing.Size(484, 261);
this.Controls.Add(this.richTextBox);
this.Controls.Add(this.RTBLineNumbers);
this.Controls.Add(this.searchPanel);
this.Controls.Add(this.toolbarPanel);
this.Controls.Add(this.mainMenu);
this.Controls.Add(this.statusPanel);
this.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::Crypto_Notepad.Properties.Settings.Default, "editorBackColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
this.ForeColor = System.Drawing.Color.Black;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.mainMenu;
this.MinimumSize = new System.Drawing.Size(500, 300);
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
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);
this.Shown += new System.EventHandler(this.MainForm_Shown);
this.mainMenu.ResumeLayout(false);
this.mainMenu.PerformLayout();
this.contextMenu.ResumeLayout(false);
this.searchPanel.ResumeLayout(false);
this.searchPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.closeSearchPanel)).EndInit();
this.toolbarPanel.ResumeLayout(false);
this.toolbarPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.lockToolbarButton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.newToolbarButton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.changeKeyToolbarButton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.openToolbarButton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pasteToolbarButton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.saveToolbarButton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.copyToolbarButton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.fileLocationToolbarButton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.cutToolbarButton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.deleteFileToolbarButton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.closeToolbarButton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.settingsToolbarButton)).EndInit();
this.statusPanel.ResumeLayout(false);
this.statusPanel.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStripMenuItem fileMainMenu;
private System.Windows.Forms.ToolStripMenuItem editMainMenu;
private System.Windows.Forms.ToolStripMenuItem helpMainMenu;
private System.Windows.Forms.ToolStripMenuItem saveAsMainMenu;
private System.Windows.Forms.ToolStripMenuItem exitMainMenu;
private System.Windows.Forms.ToolStripMenuItem aboutMainMenu;
private System.Windows.Forms.OpenFileDialog openFileDialog;
private System.Windows.Forms.SaveFileDialog saveFileDialog;
private System.Windows.Forms.ToolStripMenuItem newMainMenu;
private System.Windows.Forms.ToolStripMenuItem toolsMainMenu;
private System.Windows.Forms.ToolStripMenuItem clearMainMenu;
private System.Windows.Forms.ToolStripMenuItem openMainMenu;
private System.Windows.Forms.ToolStripSeparator mainMenuSeparator3;
private System.Windows.Forms.ToolStripMenuItem saveMainMenu;
private System.Windows.Forms.ToolStripMenuItem selectAllMainMenu;
private System.Windows.Forms.ToolStripSeparator mainMenuSeparator4;
private System.Windows.Forms.ToolStripMenuItem cutMainMenu;
private System.Windows.Forms.ToolStripMenuItem copyMainMenu;
private System.Windows.Forms.ToolStripMenuItem pasteMainMenu;
private System.Windows.Forms.ToolStripSeparator mainMenuSeparator6;
private System.Windows.Forms.ToolStripMenuItem deleteFileMainMenu;
private System.Windows.Forms.ToolStripSeparator mainMenuSeparator2;
private System.Windows.Forms.ToolStripMenuItem fileLocationMainMenu;
private System.Windows.Forms.ToolStripMenuItem wordWrapMainMenu;
private System.Windows.Forms.ContextMenuStrip contextMenu;
private System.Windows.Forms.ToolStripMenuItem undoContextMenu;
private System.Windows.Forms.ToolStripMenuItem undoMainMenu;
private System.Windows.Forms.ToolStripSeparator mainMenuSeparator7;
private System.Windows.Forms.ToolStripSeparator contextMenuSeparator2;
private System.Windows.Forms.ToolStripMenuItem cutContextMenu;
private System.Windows.Forms.ToolStripMenuItem copyContextMenu;
private System.Windows.Forms.ToolStripMenuItem pasteContextMenu;
private System.Windows.Forms.ToolStripMenuItem deleteMainMenu;
private System.Windows.Forms.ToolStripMenuItem deleteContextMenu;
private System.Windows.Forms.ToolStripSeparator contextMenuSeparator1;
private System.Windows.Forms.ToolStripMenuItem selectAllContextMenu;
private System.Windows.Forms.ToolStripMenuItem rightToLeftContextMenu;
private System.Windows.Forms.ToolStripMenuItem clearContextMenu;
private System.Windows.Forms.ToolStripSeparator mainMenuSeparator1;
private System.Windows.Forms.ToolStripMenuItem changeKeyMainMenu;
private System.Windows.Forms.ToolStripMenuItem updatesMainMenu;
private System.Windows.Forms.ToolStripMenuItem docsMainMenu;
private System.Windows.Forms.ToolStripMenuItem settingsMainMenu;
private System.Windows.Forms.ToolStripSeparator mainMenuSeparator5;
private System.Windows.Forms.ToolStripMenuItem findMainMenu;
private System.Windows.Forms.PictureBox newToolbarButton;
private System.Windows.Forms.PictureBox openToolbarButton;
private System.Windows.Forms.PictureBox saveToolbarButton;
private System.Windows.Forms.PictureBox fileLocationToolbarButton;
private System.Windows.Forms.PictureBox deleteFileToolbarButton;
private System.Windows.Forms.PictureBox cutToolbarButton;
private System.Windows.Forms.PictureBox copyToolbarButton;
private System.Windows.Forms.PictureBox pasteToolbarButton;
private System.Windows.Forms.PictureBox changeKeyToolbarButton;
private System.Windows.Forms.PictureBox settingsToolbarButton;
private System.Windows.Forms.PictureBox closeToolbarButton;
private System.Windows.Forms.PictureBox lockToolbarButton;
private System.Windows.Forms.ToolStripMenuItem lockMainMenu;
private System.Windows.Forms.ToolStripSeparator mainMenuSeparator8;
private System.Windows.Forms.ToolStripMenuItem redoMainMenu;
private System.Windows.Forms.ToolStripMenuItem redoContextMenu;
private System.Windows.Forms.ToolStripMenuItem debugMainMenu;
private System.Windows.Forms.ToolStripMenuItem variablesMainMenu;
private System.Windows.Forms.ToolStripStatusLabel lengthStatusLabel;
private System.Windows.Forms.ToolStripStatusLabel linesStatusLabel;
private System.Windows.Forms.ToolStripStatusLabel lnStatusLabel;
private System.Windows.Forms.ToolStripStatusLabel colStatusLabel;
public System.Windows.Forms.TableLayoutPanel toolbarPanel;
public ExRichTextBox richTextBox;
public System.Windows.Forms.ToolStripMenuItem insMainMenu;
public LineNumbers.LineNumbers RTBLineNumbers;
protected internal System.Windows.Forms.StatusStrip statusPanel;
protected internal System.Windows.Forms.ToolStripStatusLabel statusLabel;
protected internal System.Windows.Forms.TextBox searchTextBox;
protected internal System.Windows.Forms.CheckBox caseSensitiveCheckBox;
protected internal System.Windows.Forms.CheckBox wholeWordCheckBox;
protected internal System.Windows.Forms.Button findNextButton;
public System.Windows.Forms.TableLayoutPanel searchPanel;
private System.Windows.Forms.PictureBox closeSearchPanel;
public System.Windows.Forms.MenuStrip mainMenu;
}
}