Пример #1
0
        public static UserUILayout SaveUILayout(WeifenLuo.WinFormsUI.Docking.DockPanel dockPanel, string layoutName)
        {
            string layoutDir = Path.Combine(AppDataFolder, "layouts");

            if (!Directory.Exists(layoutDir))
            {
                Directory.CreateDirectory(layoutDir);
            }

            string filename = FileHelper.GetSafeFileName(layoutName) + ".xml";

            filename = Path.Combine(layoutDir, filename);
            dockPanel.SaveAsXml(filename, Encoding.UTF8);

            var layoutInfo = new UserUILayout()
            {
                Name       = layoutName,
                Path       = filename,
                AppVersion = $"{CurrentAppVersion.Major}.{CurrentAppVersion.Minor}.{CurrentAppVersion.Build}"
            };

            var doc = XDocument.Load(filename);

            doc.Root.Add(new XAttribute(nameof(UserUILayout.Name), layoutInfo.Name));
            doc.Root.Add(new XAttribute(nameof(UserUILayout.AppVersion), layoutInfo.AppVersion));
            doc.Save(filename);

            return(layoutInfo);
        }
Пример #2
0
 public override void _initControl()
 {
     if (null == mDockPanel || mDockPanel.IsDisposed)
     {
         mDockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
         mDockPanel.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow;
         mDockPanel.m_tDockTabDBClicked += this._dBClickTab;
         mDockPanel.ActiveDocumentChanged += this._activeDocumentChanged;
         if (string.Compare(mDockStyle, @"Top") == 0)
         {
             mDockPanel.Dock = System.Windows.Forms.DockStyle.Top;
         }
         else if (string.Compare(mDockStyle, @"Bottom") == 0)
         {
             mDockPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
         }
         else if (string.Compare(mDockStyle, @"Fill") == 0)
         {
             mDockPanel.Dock = System.Windows.Forms.DockStyle.Fill;
         }
         else if (string.Compare(mDockStyle, @"Left") == 0)
         {
             mDockPanel.Dock = System.Windows.Forms.DockStyle.Left;
         }
         else if (string.Compare(mDockStyle, @"Right") == 0)
         {
             mDockPanel.Dock = System.Windows.Forms.DockStyle.Right;
         }
         else
         {
             mDockPanel.Dock = System.Windows.Forms.DockStyle.None;
         }
     }
     base._initControl();
 }
Пример #3
0
        private void Form1_Load(object sender, EventArgs e)
        {
            WeifenLuo.WinFormsUI.Docking.DockPanel objete = new WeifenLuo.WinFormsUI.Docking.DockPanel();
            objete.Dock = System.Windows.Forms.DockStyle.Fill;
            Controls.Add(objete);
            propertyGrid1.SelectedObject = panel3;

            //objete = new WeifenLuo.WinFormsUI.Docking.DockPanel();
        }
Пример #4
0
 static void LoadFromXml(WeifenLuo.WinFormsUI.Docking.DockPanel panel, string xml, params WeifenLuo.WinFormsUI.Docking.IDockContent[] contents)
 {
     if (string.IsNullOrEmpty(xml))
     {
         return;
     }
     using (System.IO.MemoryStream ms = new System.IO.MemoryStream(System.Text.Encoding.UTF8.GetBytes(xml)))
         panel.LoadFromXml(ms, persistString => Array.Find(contents, x => string.Equals(persistString, x.DockHandler.GetPersistStringCallback(), StringComparison.Ordinal)));
 }
Пример #5
0
 public DockPanel()
 {
     mDockPads = new Dictionary<string, DockPad>();
     mDBClickTabCommand = null;
     mDBClickTabCmd = null;
     mDockPanel = null;
     mDockStyle = @"None";
     mActiveDockUrl = null;
 }
Пример #6
0
        public static void SaveCurrentUILayout(WeifenLuo.WinFormsUI.Docking.DockPanel dockPanel)
        {
            string filename = "currentLayout.xml";

            filename = Path.Combine(AppDataFolder, filename);
            dockPanel.SaveAsXml(filename);

            var doc = XDocument.Load(filename);

            doc.Root.Add(new XAttribute(nameof(UserUILayout.AppVersion),
                                        $"{CurrentAppVersion.Major}.{CurrentAppVersion.Minor}.{CurrentAppVersion.Build}"));
            doc.Save(filename);
        }
Пример #7
0
        public FormMain()
        {
            InitializeComponent();
            dp = this.dockPanel1;
            labNewVersion.Tag = DOWNLOAD_URL;

            CheckForIllegalCrossThreadCalls = false;

            BackgroundWorker bw = new BackgroundWorker();

            bw.DoWork             += new DoWorkEventHandler(bw_DoWork);
            bw.RunWorkerCompleted += new RunWorkerCompletedEventHandler(bw_RunWorkerCompleted);
            bw.RunWorkerAsync();
        }
Пример #8
0
        internal MainWindow()
        {
            // add the designers resource manager to the list of all available resource managers
            Plugin.AddResourceManager(Resources.ResourceManager);

            InitializeComponent();

            // display the file version
            string[] vernums = ProductVersion.Split('.');

            Text += " " + vernums[0] + "." + vernums[1];

            if (vernums[2] != "0")
            {
                Text += (char)(int.Parse(vernums[2]) + 0x60);
            }

            if (vernums.Length > 3 && vernums[3] != "0")
            {
                Text += " (" + vernums[3] + ')';
            }

            // create docking panels
            __dockPanel = dockPanel;

            // if we have no stored layout generate a default one
            if (!System.IO.File.Exists(__layoutFile))
            {
                BehaviorTreeListDock btlDock = new BehaviorTreeListDock();
                RegisterBehaviorTreeList(btlDock);
                btlDock.Show(dockPanel, WeifenLuo.WinFormsUI.Docking.DockState.DockLeft);

                new PropertiesDock().Show(dockPanel, WeifenLuo.WinFormsUI.Docking.DockState.DockRight);
            }

            _edgePenReadOnly = new Pen(Brushes.LightGray, 3.0f);
            //_edgePenReadOnly.DashCap= System.Drawing.Drawing2D.DashCap.Round;
            //_edgePenReadOnly.DashStyle= System.Drawing.Drawing2D.DashStyle.Dash;
            //_edgePenReadOnly.DashPattern= new float[] { 4.0f, 3.0f };
        }
Пример #9
0
        internal static void Create(WeifenLuo.WinFormsUI.Docking.DockPanel dockPanel, ScriptInformation script)
        {
            frmFormatObject frmFormatObject = new frmFormatObject();

            frmFormatObject.SetScriptInformation(script);

            DialogResult cResult = frmFormatObject.ShowDialog();

            frmFormatObject.Dispose();

            if (cResult == DialogResult.OK)
            {
                ProfileSetting cProfile = frmFormatObject.Profile;
                switch (cProfile.ScriptType)
                {
                case ScriptType.Script:
                    break;

                case ScriptType.Signal:
                    frmSignalViewer.Create(dockPanel, cProfile);
                    break;
                }
            }
        }
Пример #10
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin2 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin2 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient4 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient8 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin2 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient9 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient5 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient10 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient11 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient12 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient6 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient13 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient14 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.archivoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mostrarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exploradorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.opcionesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.permisosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.autoresToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this._mainToolStrip = new System.Windows.Forms.ToolStrip();
     this.TslEmpresaInfo = new System.Windows.Forms.ToolStripLabel();
     this.lblRazonSocial = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.lblRUC = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.lblRubro = new System.Windows.Forms.ToolStripLabel();
     this._mainStatusStrip = new System.Windows.Forms.StatusStrip();
     this.lblCargo = new System.Windows.Forms.ToolStripLabel();
     this.lblUsuario = new System.Windows.Forms.ToolStripLabel();
     this.menuStrip1.SuspendLayout();
     this._mainToolStrip.SuspendLayout();
     this._mainStatusStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.archivoToolStripMenuItem,
     this.mostrarToolStripMenuItem,
     this.opcionesToolStripMenuItem,
     this.autoresToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(1251, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // archivoToolStripMenuItem
     //
     this.archivoToolStripMenuItem.Name = "archivoToolStripMenuItem";
     this.archivoToolStripMenuItem.Size = new System.Drawing.Size(60, 20);
     this.archivoToolStripMenuItem.Text = "Archivo";
     //
     // mostrarToolStripMenuItem
     //
     this.mostrarToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exploradorToolStripMenuItem});
     this.mostrarToolStripMenuItem.Name = "mostrarToolStripMenuItem";
     this.mostrarToolStripMenuItem.Size = new System.Drawing.Size(60, 20);
     this.mostrarToolStripMenuItem.Text = "Mostrar";
     //
     // exploradorToolStripMenuItem
     //
     this.exploradorToolStripMenuItem.Name = "exploradorToolStripMenuItem";
     this.exploradorToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
     this.exploradorToolStripMenuItem.Text = "Explorador";
     this.exploradorToolStripMenuItem.Click += new System.EventHandler(this.exploradorToolStripMenuItem_Click);
     //
     // opcionesToolStripMenuItem
     //
     this.opcionesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.permisosToolStripMenuItem});
     this.opcionesToolStripMenuItem.Name = "opcionesToolStripMenuItem";
     this.opcionesToolStripMenuItem.Size = new System.Drawing.Size(69, 20);
     this.opcionesToolStripMenuItem.Text = "Opciones";
     //
     // permisosToolStripMenuItem
     //
     this.permisosToolStripMenuItem.Name = "permisosToolStripMenuItem";
     this.permisosToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.permisosToolStripMenuItem.Text = "Permisos";
     this.permisosToolStripMenuItem.Click += new System.EventHandler(this.permisosToolStripMenuItem_Click);
     //
     // autoresToolStripMenuItem
     //
     this.autoresToolStripMenuItem.Name = "autoresToolStripMenuItem";
     this.autoresToolStripMenuItem.Size = new System.Drawing.Size(60, 20);
     this.autoresToolStripMenuItem.Text = "Autores";
     //
     // dockPanel
     //
     this.dockPanel.ActiveAutoHideContent = null;
     this.dockPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dockPanel.DockBackColor = System.Drawing.SystemColors.AppWorkspace;
     this.dockPanel.DockBottomPortion = 150D;
     this.dockPanel.DockLeftPortion = 200D;
     this.dockPanel.DockRightPortion = 200D;
     this.dockPanel.DockTopPortion = 150D;
     this.dockPanel.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World, ((byte)(0)));
     this.dockPanel.Location = new System.Drawing.Point(0, 49);
     this.dockPanel.Name = "dockPanel";
     this.dockPanel.RightToLeftLayout = true;
     this.dockPanel.Size = new System.Drawing.Size(1251, 605);
     dockPanelGradient4.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient4.StartColor = System.Drawing.SystemColors.ControlLight;
     autoHideStripSkin2.DockStripGradient = dockPanelGradient4;
     tabGradient8.EndColor = System.Drawing.SystemColors.Control;
     tabGradient8.StartColor = System.Drawing.SystemColors.Control;
     tabGradient8.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin2.TabGradient = tabGradient8;
     dockPanelSkin2.AutoHideStripSkin = autoHideStripSkin2;
     tabGradient9.EndColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient9.StartColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient9.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient2.ActiveTabGradient = tabGradient9;
     dockPanelGradient5.EndColor = System.Drawing.SystemColors.Control;
     dockPanelGradient5.StartColor = System.Drawing.SystemColors.Control;
     dockPaneStripGradient2.DockStripGradient = dockPanelGradient5;
     tabGradient10.EndColor = System.Drawing.SystemColors.ControlLight;
     tabGradient10.StartColor = System.Drawing.SystemColors.ControlLight;
     tabGradient10.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient2.InactiveTabGradient = tabGradient10;
     dockPaneStripSkin2.DocumentGradient = dockPaneStripGradient2;
     tabGradient11.EndColor = System.Drawing.SystemColors.ActiveCaption;
     tabGradient11.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient11.StartColor = System.Drawing.SystemColors.GradientActiveCaption;
     tabGradient11.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
     dockPaneStripToolWindowGradient2.ActiveCaptionGradient = tabGradient11;
     tabGradient12.EndColor = System.Drawing.SystemColors.Control;
     tabGradient12.StartColor = System.Drawing.SystemColors.Control;
     tabGradient12.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient2.ActiveTabGradient = tabGradient12;
     dockPanelGradient6.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient6.StartColor = System.Drawing.SystemColors.ControlLight;
     dockPaneStripToolWindowGradient2.DockStripGradient = dockPanelGradient6;
     tabGradient13.EndColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient13.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient13.StartColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient13.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient2.InactiveCaptionGradient = tabGradient13;
     tabGradient14.EndColor = System.Drawing.Color.Transparent;
     tabGradient14.StartColor = System.Drawing.Color.Transparent;
     tabGradient14.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     dockPaneStripToolWindowGradient2.InactiveTabGradient = tabGradient14;
     dockPaneStripSkin2.ToolWindowGradient = dockPaneStripToolWindowGradient2;
     dockPanelSkin2.DockPaneStripSkin = dockPaneStripSkin2;
     this.dockPanel.Skin = dockPanelSkin2;
     this.dockPanel.TabIndex = 2;
     //
     // _mainToolStrip
     //
     this._mainToolStrip.Font = new System.Drawing.Font("Segoe UI", 9F);
     this._mainToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TslEmpresaInfo,
     this.lblRazonSocial,
     this.toolStripSeparator2,
     this.toolStripLabel1,
     this.lblRUC,
     this.toolStripSeparator3,
     this.lblRubro});
     this._mainToolStrip.Location = new System.Drawing.Point(0, 24);
     this._mainToolStrip.Name = "_mainToolStrip";
     this._mainToolStrip.Size = new System.Drawing.Size(1251, 25);
     this._mainToolStrip.TabIndex = 9;
     this._mainToolStrip.Text = "Informacion de Empresa";
     //
     // TslEmpresaInfo
     //
     this.TslEmpresaInfo.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.TslEmpresaInfo.Name = "TslEmpresaInfo";
     this.TslEmpresaInfo.Size = new System.Drawing.Size(97, 22);
     this.TslEmpresaInfo.Text = "EXACT TARGET";
     //
     // lblRazonSocial
     //
     this.lblRazonSocial.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRazonSocial.Name = "lblRazonSocial";
     this.lblRazonSocial.Size = new System.Drawing.Size(0, 22);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(13, 22);
     this.toolStripLabel1.Text = ": ";
     //
     // lblRUC
     //
     this.lblRUC.Name = "lblRUC";
     this.lblRUC.Size = new System.Drawing.Size(0, 22);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // lblRubro
     //
     this.lblRubro.Name = "lblRubro";
     this.lblRubro.Size = new System.Drawing.Size(0, 22);
     //
     // _mainStatusStrip
     //
     this._mainStatusStrip.Font = new System.Drawing.Font("Segoe UI", 9F);
     this._mainStatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.lblCargo,
     this.lblUsuario});
     this._mainStatusStrip.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this._mainStatusStrip.Location = new System.Drawing.Point(0, 654);
     this._mainStatusStrip.Name = "_mainStatusStrip";
     this._mainStatusStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     this._mainStatusStrip.Size = new System.Drawing.Size(1251, 22);
     this._mainStatusStrip.TabIndex = 10;
     this._mainStatusStrip.Text = "StatusStrip";
     //
     // lblCargo
     //
     this.lblCargo.Name = "lblCargo";
     this.lblCargo.Size = new System.Drawing.Size(53, 20);
     this.lblCargo.Text = "Usuario: ";
     //
     // lblUsuario
     //
     this.lblUsuario.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblUsuario.Name = "lblUsuario";
     this.lblUsuario.Size = new System.Drawing.Size(0, 20);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1251, 676);
     this.Controls.Add(this.dockPanel);
     this.Controls.Add(this._mainToolStrip);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this._mainStatusStrip);
     this.IsMdiContainer = true;
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "BANCO FALABELLA";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this._mainToolStrip.ResumeLayout(false);
     this._mainToolStrip.PerformLayout();
     this._mainStatusStrip.ResumeLayout(false);
     this._mainStatusStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MyScheduleView));
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.editAppointmentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.importExportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsXMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deIdentifiedToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.identifiedToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.loadFromXMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.saveAsHL7ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deIdentifiedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.identifiedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.loadFromHL7ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.markCompleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.markForAutomationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.gedComImportOpenFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.importExportBackgroundWorker = new System.ComponentModel.BackgroundWorker();
     this.exportSaveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this.importOpenFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.buttonApplyTextSearch = new System.Windows.Forms.Button();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.panel1 = new System.Windows.Forms.Panel();
     this.progressBar1 = new System.Windows.Forms.ProgressBar();
     this.comboBox2 = new System.Windows.Forms.ComboBox();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.copyApptButton = new System.Windows.Forms.Button();
     this.editApptButton = new System.Windows.Forms.Button();
     this.addApptButton = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.checkBox2 = new System.Windows.Forms.CheckBox();
     this.label2 = new System.Windows.Forms.Label();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.riskClinic = new System.Windows.Forms.Button();
     this.orders = new System.Windows.Forms.Button();
     this.newTask = new System.Windows.Forms.Button();
     this.pedigree = new System.Windows.Forms.Button();
     this.notes = new System.Windows.Forms.Button();
     this.textBoxFilterData = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.buttonClearTextSearch = new System.Windows.Forms.Button();
     this.todayButton = new System.Windows.Forms.Button();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.fastDataListView1 = new BrightIdeasSoftware.FastDataListView();
     this.olvColumn2 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn3 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn4 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn7 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn5 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn8 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumnCompleted = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn6 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn11 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn9 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn10 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.NoApptSelectedLabel = new System.Windows.Forms.Label();
     this.patientRecordHeader1 = new RiskApps3.View.PatientRecord.PatientRecordHeader();
     this.theDockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.addToDoNotCallListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuStrip1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fastDataListView1)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "GoldenAppt.bmp");
     this.imageList1.Images.SetKeyName(1, "PastAppt.bmp");
     this.imageList1.Images.SetKeyName(2, "FutureAppt.bmp");
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.editAppointmentToolStripMenuItem,
     this.importExportToolStripMenuItem,
     this.toolStripSeparator1,
     this.markCompleteToolStripMenuItem,
     this.toolStripMenuItem1,
     this.markForAutomationToolStripMenuItem,
     this.toolStripSeparator2,
     this.addToDoNotCallListToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(227, 170);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
     //
     // editAppointmentToolStripMenuItem
     //
     this.editAppointmentToolStripMenuItem.Name = "editAppointmentToolStripMenuItem";
     this.editAppointmentToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
     this.editAppointmentToolStripMenuItem.Text = "Edit Appointment";
     this.editAppointmentToolStripMenuItem.Click += new System.EventHandler(this.editAppointmentToolStripMenuItem_Click);
     //
     // importExportToolStripMenuItem
     //
     this.importExportToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.saveAsXMLToolStripMenuItem,
     this.loadFromXMLToolStripMenuItem,
     this.toolStripSeparator3,
     this.saveAsHL7ToolStripMenuItem,
     this.loadFromHL7ToolStripMenuItem});
     this.importExportToolStripMenuItem.Name = "importExportToolStripMenuItem";
     this.importExportToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
     this.importExportToolStripMenuItem.Text = "Import/Export";
     this.importExportToolStripMenuItem.Click += new System.EventHandler(this.importExportToolStripMenuItem_Click);
     //
     // saveAsXMLToolStripMenuItem
     //
     this.saveAsXMLToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.deIdentifiedToolStripMenuItem1,
     this.identifiedToolStripMenuItem1});
     this.saveAsXMLToolStripMenuItem.Name = "saveAsXMLToolStripMenuItem";
     this.saveAsXMLToolStripMenuItem.Size = new System.Drawing.Size(156, 22);
     this.saveAsXMLToolStripMenuItem.Text = "Save as XML";
     this.saveAsXMLToolStripMenuItem.Click += new System.EventHandler(this.saveAsXMLToolStripMenuItem_Click);
     //
     // deIdentifiedToolStripMenuItem1
     //
     this.deIdentifiedToolStripMenuItem1.Name = "deIdentifiedToolStripMenuItem1";
     this.deIdentifiedToolStripMenuItem1.Size = new System.Drawing.Size(143, 22);
     this.deIdentifiedToolStripMenuItem1.Text = "De-Identified";
     this.deIdentifiedToolStripMenuItem1.Click += new System.EventHandler(this.deIdentifiedXMLToolStripMenuItem_Click);
     //
     // identifiedToolStripMenuItem1
     //
     this.identifiedToolStripMenuItem1.Name = "identifiedToolStripMenuItem1";
     this.identifiedToolStripMenuItem1.Size = new System.Drawing.Size(143, 22);
     this.identifiedToolStripMenuItem1.Text = "Identified";
     this.identifiedToolStripMenuItem1.Click += new System.EventHandler(this.identifiedXMLToolStripMenuItem_Click);
     //
     // loadFromXMLToolStripMenuItem
     //
     this.loadFromXMLToolStripMenuItem.Name = "loadFromXMLToolStripMenuItem";
     this.loadFromXMLToolStripMenuItem.Size = new System.Drawing.Size(156, 22);
     this.loadFromXMLToolStripMenuItem.Text = "Load from XML";
     this.loadFromXMLToolStripMenuItem.Click += new System.EventHandler(this.loadFromXMLToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(153, 6);
     //
     // saveAsHL7ToolStripMenuItem
     //
     this.saveAsHL7ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.deIdentifiedToolStripMenuItem,
     this.identifiedToolStripMenuItem});
     this.saveAsHL7ToolStripMenuItem.Name = "saveAsHL7ToolStripMenuItem";
     this.saveAsHL7ToolStripMenuItem.Size = new System.Drawing.Size(156, 22);
     this.saveAsHL7ToolStripMenuItem.Text = "Save as HL7";
     this.saveAsHL7ToolStripMenuItem.Click += new System.EventHandler(this.saveAsHL7ToolStripMenuItem_Click);
     //
     // deIdentifiedToolStripMenuItem
     //
     this.deIdentifiedToolStripMenuItem.Name = "deIdentifiedToolStripMenuItem";
     this.deIdentifiedToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.deIdentifiedToolStripMenuItem.Text = "De-Identified";
     this.deIdentifiedToolStripMenuItem.Click += new System.EventHandler(this.deIdentifiedToolStripMenuItem_Click);
     //
     // identifiedToolStripMenuItem
     //
     this.identifiedToolStripMenuItem.Name = "identifiedToolStripMenuItem";
     this.identifiedToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.identifiedToolStripMenuItem.Text = "Identified";
     this.identifiedToolStripMenuItem.Click += new System.EventHandler(this.identifiedToolStripMenuItem_Click);
     //
     // loadFromHL7ToolStripMenuItem
     //
     this.loadFromHL7ToolStripMenuItem.Name = "loadFromHL7ToolStripMenuItem";
     this.loadFromHL7ToolStripMenuItem.Size = new System.Drawing.Size(156, 22);
     this.loadFromHL7ToolStripMenuItem.Text = "Load from HL7";
     this.loadFromHL7ToolStripMenuItem.Click += new System.EventHandler(this.loadFromHL7ToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(223, 6);
     //
     // markCompleteToolStripMenuItem
     //
     this.markCompleteToolStripMenuItem.Name = "markCompleteToolStripMenuItem";
     this.markCompleteToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
     this.markCompleteToolStripMenuItem.Text = "Mark Complete";
     this.markCompleteToolStripMenuItem.Click += new System.EventHandler(this.markCompleteToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(226, 22);
     this.toolStripMenuItem1.Text = "Mark Incomplete";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // markForAutomationToolStripMenuItem
     //
     this.markForAutomationToolStripMenuItem.Name = "markForAutomationToolStripMenuItem";
     this.markForAutomationToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
     this.markForAutomationToolStripMenuItem.Text = "Run Automation Documents";
     this.markForAutomationToolStripMenuItem.Click += new System.EventHandler(this.markForAutomationToolStripMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(223, 6);
     //
     // gedComImportOpenFileDialog
     //
     this.gedComImportOpenFileDialog.Filter = "GedCom Files|*.ged";
     //
     // importExportBackgroundWorker
     //
     this.importExportBackgroundWorker.WorkerReportsProgress = true;
     this.importExportBackgroundWorker.WorkerSupportsCancellation = true;
     this.importExportBackgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.importExportBackgroundWorker_DoWork);
     this.importExportBackgroundWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.importExportBackgroundWorker_ProgressChanged);
     this.importExportBackgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.importExportBackgroundWorker_RunWorkerCompleted);
     //
     // importOpenFileDialog
     //
     this.importOpenFileDialog.FileName = "openFileDialog1";
     //
     // buttonApplyTextSearch
     //
     this.buttonApplyTextSearch.AccessibleDescription = "RIGHT(SUSER_SNAME(), LEN(SUSER_SNAME()) - CHARINDEX(\'\\\',SUSER_SNAME()))";
     this.buttonApplyTextSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonApplyTextSearch.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonApplyTextSearch.Location = new System.Drawing.Point(329, 30);
     this.buttonApplyTextSearch.Name = "buttonApplyTextSearch";
     this.buttonApplyTextSearch.Size = new System.Drawing.Size(54, 23);
     this.buttonApplyTextSearch.TabIndex = 15;
     this.buttonApplyTextSearch.Text = "Search";
     this.buttonApplyTextSearch.UseVisualStyleBackColor = true;
     this.buttonApplyTextSearch.Click += new System.EventHandler(this.buttonApplyTextSearch_Click);
     //
     // splitContainer1
     //
     this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainer1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.splitContainer1.Location = new System.Drawing.Point(5, 12);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.panel1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.NoApptSelectedLabel);
     this.splitContainer1.Panel2.Controls.Add(this.patientRecordHeader1);
     this.splitContainer1.Panel2.Controls.Add(this.theDockPanel);
     this.splitContainer1.Panel2.Resize += new System.EventHandler(this.splitContainer1_Panel2_Resize);
     this.splitContainer1.Size = new System.Drawing.Size(1011, 602);
     this.splitContainer1.SplitterDistance = 400;
     this.splitContainer1.TabIndex = 19;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.Control;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel1.Controls.Add(this.progressBar1);
     this.panel1.Controls.Add(this.comboBox2);
     this.panel1.Controls.Add(this.flowLayoutPanel1);
     this.panel1.Controls.Add(this.checkBox2);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.tableLayoutPanel1);
     this.panel1.Controls.Add(this.textBoxFilterData);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.buttonClearTextSearch);
     this.panel1.Controls.Add(this.buttonApplyTextSearch);
     this.panel1.Controls.Add(this.todayButton);
     this.panel1.Controls.Add(this.comboBox1);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Controls.Add(this.dateTimePicker1);
     this.panel1.Controls.Add(this.fastDataListView1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(400, 602);
     this.panel1.TabIndex = 18;
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(326, 5);
     this.progressBar1.Name = "progressBar1";
     this.progressBar1.Size = new System.Drawing.Size(150, 23);
     this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
     this.progressBar1.TabIndex = 45;
     this.progressBar1.Visible = false;
     //
     // comboBox2
     //
     this.comboBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBox2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Location = new System.Drawing.Point(106, 55);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(277, 21);
     this.comboBox2.TabIndex = 44;
     this.comboBox2.SelectionChangeCommitted += new System.EventHandler(this.comboBox2_SelectionChangeCommitted);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.copyApptButton);
     this.flowLayoutPanel1.Controls.Add(this.editApptButton);
     this.flowLayoutPanel1.Controls.Add(this.addApptButton);
     this.flowLayoutPanel1.Controls.Add(this.button1);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(51, 494);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(339, 26);
     this.flowLayoutPanel1.TabIndex = 43;
     this.flowLayoutPanel1.WrapContents = false;
     //
     // copyApptButton
     //
     this.copyApptButton.AccessibleDescription = "";
     this.copyApptButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.copyApptButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.copyApptButton.Location = new System.Drawing.Point(258, 3);
     this.copyApptButton.Name = "copyApptButton";
     this.copyApptButton.Size = new System.Drawing.Size(78, 22);
     this.copyApptButton.TabIndex = 29;
     this.copyApptButton.Text = "Copy Appt";
     this.copyApptButton.UseVisualStyleBackColor = true;
     this.copyApptButton.Click += new System.EventHandler(this.copyApptButton_Click);
     //
     // editApptButton
     //
     this.editApptButton.AccessibleDescription = "";
     this.editApptButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.editApptButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.editApptButton.Location = new System.Drawing.Point(174, 3);
     this.editApptButton.Name = "editApptButton";
     this.editApptButton.Size = new System.Drawing.Size(78, 22);
     this.editApptButton.TabIndex = 28;
     this.editApptButton.Text = "Edit Appt";
     this.editApptButton.UseVisualStyleBackColor = true;
     this.editApptButton.Click += new System.EventHandler(this.editApptButton_Click);
     //
     // addApptButton
     //
     this.addApptButton.AccessibleDescription = "";
     this.addApptButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.addApptButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.addApptButton.Location = new System.Drawing.Point(90, 3);
     this.addApptButton.Name = "addApptButton";
     this.addApptButton.Size = new System.Drawing.Size(78, 22);
     this.addApptButton.TabIndex = 27;
     this.addApptButton.Text = "Add Appt";
     this.addApptButton.UseVisualStyleBackColor = true;
     this.addApptButton.Click += new System.EventHandler(this.addApptButton_Click);
     //
     // button1
     //
     this.button1.AccessibleDescription = "";
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.Location = new System.Drawing.Point(6, 3);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(78, 22);
     this.button1.TabIndex = 30;
     this.button1.Text = "Delete Appt";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click_2);
     //
     // checkBox2
     //
     this.checkBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkBox2.AutoSize = true;
     this.checkBox2.Checked = true;
     this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBox2.Location = new System.Drawing.Point(258, 9);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.checkBox2.Size = new System.Drawing.Size(132, 17);
     this.checkBox2.TabIndex = 42;
     this.checkBox2.Text = "Include All Appt Dates";
     this.checkBox2.UseVisualStyleBackColor = true;
     this.checkBox2.Visible = false;
     this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.SystemColors.Control;
     this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(8, 37);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(87, 13);
     this.label2.TabIndex = 41;
     this.label2.Text = "Name/MRN/Accn";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel1.ColumnCount = 5;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40.81633F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40.81633F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 6.122449F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 6.122449F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 6.122449F));
     this.tableLayoutPanel1.Controls.Add(this.riskClinic, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.orders, 4, 0);
     this.tableLayoutPanel1.Controls.Add(this.newTask, 3, 0);
     this.tableLayoutPanel1.Controls.Add(this.pedigree, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.notes, 2, 0);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(5, 523);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(385, 72);
     this.tableLayoutPanel1.TabIndex = 38;
     //
     // riskClinic
     //
     this.riskClinic.AccessibleDescription = "";
     this.riskClinic.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.riskClinic.Enabled = false;
     this.riskClinic.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.riskClinic.Location = new System.Drawing.Point(7, 7);
     this.riskClinic.Margin = new System.Windows.Forms.Padding(7);
     this.riskClinic.Name = "riskClinic";
     this.riskClinic.Size = new System.Drawing.Size(143, 58);
     this.riskClinic.TabIndex = 33;
     this.riskClinic.Text = "Risk Clinic";
     this.riskClinic.UseVisualStyleBackColor = true;
     this.riskClinic.Click += new System.EventHandler(this.button1_Click);
     //
     // orders
     //
     this.orders.AccessibleDescription = "";
     this.orders.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.orders.Enabled = false;
     this.orders.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.orders.Location = new System.Drawing.Point(367, 7);
     this.orders.Margin = new System.Windows.Forms.Padding(7);
     this.orders.Name = "orders";
     this.orders.Size = new System.Drawing.Size(11, 58);
     this.orders.TabIndex = 37;
     this.orders.Text = "Orders";
     this.orders.UseVisualStyleBackColor = true;
     this.orders.Visible = false;
     this.orders.Click += new System.EventHandler(this.button5_Click);
     //
     // newTask
     //
     this.newTask.AccessibleDescription = "";
     this.newTask.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.newTask.Enabled = false;
     this.newTask.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.newTask.Location = new System.Drawing.Point(344, 7);
     this.newTask.Margin = new System.Windows.Forms.Padding(7);
     this.newTask.Name = "newTask";
     this.newTask.Size = new System.Drawing.Size(9, 58);
     this.newTask.TabIndex = 36;
     this.newTask.Text = "New Task";
     this.newTask.UseVisualStyleBackColor = true;
     this.newTask.Visible = false;
     this.newTask.Click += new System.EventHandler(this.button4_Click);
     //
     // pedigree
     //
     this.pedigree.AccessibleDescription = "";
     this.pedigree.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.pedigree.Enabled = false;
     this.pedigree.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.pedigree.Location = new System.Drawing.Point(164, 7);
     this.pedigree.Margin = new System.Windows.Forms.Padding(7);
     this.pedigree.Name = "pedigree";
     this.pedigree.Size = new System.Drawing.Size(143, 58);
     this.pedigree.TabIndex = 35;
     this.pedigree.Text = "Pedigree";
     this.pedigree.UseVisualStyleBackColor = true;
     this.pedigree.Click += new System.EventHandler(this.button3_Click);
     //
     // notes
     //
     this.notes.AccessibleDescription = "";
     this.notes.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.notes.Enabled = false;
     this.notes.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.notes.Location = new System.Drawing.Point(321, 7);
     this.notes.Margin = new System.Windows.Forms.Padding(7);
     this.notes.Name = "notes";
     this.notes.Size = new System.Drawing.Size(9, 58);
     this.notes.TabIndex = 34;
     this.notes.Text = "Notes &&\r\nTasks";
     this.notes.UseVisualStyleBackColor = true;
     this.notes.Visible = false;
     this.notes.Click += new System.EventHandler(this.button2_Click);
     //
     // textBoxFilterData
     //
     this.textBoxFilterData.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxFilterData.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxFilterData.Location = new System.Drawing.Point(106, 32);
     this.textBoxFilterData.Name = "textBoxFilterData";
     this.textBoxFilterData.Size = new System.Drawing.Size(216, 21);
     this.textBoxFilterData.TabIndex = 9;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 495);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(35, 13);
     this.label1.TabIndex = 32;
     this.label1.Text = "label1";
     //
     // buttonClearTextSearch
     //
     this.buttonClearTextSearch.AccessibleDescription = "RIGHT(SUSER_SNAME(), LEN(SUSER_SNAME()) - CHARINDEX(\'\\\',SUSER_SNAME()))";
     this.buttonClearTextSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClearTextSearch.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonClearTextSearch.Location = new System.Drawing.Point(13, 9);
     this.buttonClearTextSearch.Name = "buttonClearTextSearch";
     this.buttonClearTextSearch.Size = new System.Drawing.Size(18, 23);
     this.buttonClearTextSearch.TabIndex = 16;
     this.buttonClearTextSearch.Text = "Clear";
     this.buttonClearTextSearch.UseVisualStyleBackColor = true;
     this.buttonClearTextSearch.Visible = false;
     this.buttonClearTextSearch.Click += new System.EventHandler(this.buttonClearTextSearch_Click);
     //
     // todayButton
     //
     this.todayButton.AccessibleDescription = "";
     this.todayButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.todayButton.Location = new System.Drawing.Point(197, 9);
     this.todayButton.Name = "todayButton";
     this.todayButton.Size = new System.Drawing.Size(24, 21);
     this.todayButton.TabIndex = 30;
     this.todayButton.Text = "T";
     this.todayButton.UseVisualStyleBackColor = true;
     this.todayButton.Click += new System.EventHandler(this.todayButton_Click);
     //
     // comboBox1
     //
     this.comboBox1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(12, 55);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(30, 21);
     this.comboBox1.TabIndex = 24;
     this.comboBox1.Visible = false;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.SystemColors.Control;
     this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(64, 58);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(31, 13);
     this.label4.TabIndex = 23;
     this.label4.Text = "Clinic";
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Checked = true;
     this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBox1.Location = new System.Drawing.Point(51, 12);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.checkBox1.Size = new System.Drawing.Size(49, 17);
     this.checkBox1.TabIndex = 18;
     this.checkBox1.Text = "Date";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dateTimePicker1.Location = new System.Drawing.Point(106, 9);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(86, 21);
     this.dateTimePicker1.TabIndex = 17;
     this.dateTimePicker1.ValueChanged += new System.EventHandler(this.dateTimePicker1_ValueChanged);
     //
     // fastDataListView1
     //
     this.fastDataListView1.AllColumns.Add(this.olvColumn2);
     this.fastDataListView1.AllColumns.Add(this.olvColumn3);
     this.fastDataListView1.AllColumns.Add(this.olvColumn4);
     this.fastDataListView1.AllColumns.Add(this.olvColumn7);
     this.fastDataListView1.AllColumns.Add(this.olvColumn5);
     this.fastDataListView1.AllColumns.Add(this.olvColumn8);
     this.fastDataListView1.AllColumns.Add(this.olvColumnCompleted);
     this.fastDataListView1.AllColumns.Add(this.olvColumn6);
     this.fastDataListView1.AllColumns.Add(this.olvColumn11);
     this.fastDataListView1.AllColumns.Add(this.olvColumn9);
     this.fastDataListView1.AllColumns.Add(this.olvColumn10);
     this.fastDataListView1.AllowColumnReorder = true;
     this.fastDataListView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.fastDataListView1.CheckBoxes = false;
     this.fastDataListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.olvColumn2,
     this.olvColumn3,
     this.olvColumn4,
     this.olvColumn7,
     this.olvColumn5,
     this.olvColumn8,
     this.olvColumnCompleted,
     this.olvColumn6,
     this.olvColumn11,
     this.olvColumn9,
     this.olvColumn10});
     this.fastDataListView1.Cursor = System.Windows.Forms.Cursors.Default;
     this.fastDataListView1.DataSource = null;
     this.fastDataListView1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fastDataListView1.FullRowSelect = true;
     this.fastDataListView1.GridLines = true;
     this.fastDataListView1.HeaderWordWrap = true;
     this.fastDataListView1.HideSelection = false;
     this.fastDataListView1.Location = new System.Drawing.Point(7, 83);
     this.fastDataListView1.MultiSelect = false;
     this.fastDataListView1.Name = "fastDataListView1";
     this.fastDataListView1.OwnerDraw = true;
     this.fastDataListView1.ShowCommandMenuOnRightClick = true;
     this.fastDataListView1.ShowGroups = false;
     this.fastDataListView1.ShowItemToolTips = true;
     this.fastDataListView1.Size = new System.Drawing.Size(383, 405);
     this.fastDataListView1.SmallImageList = this.imageList1;
     this.fastDataListView1.TabIndex = 4;
     this.fastDataListView1.UseCompatibleStateImageBehavior = false;
     this.fastDataListView1.UseFiltering = true;
     this.fastDataListView1.UseHotItem = true;
     this.fastDataListView1.UseOverlays = false;
     this.fastDataListView1.UseTranslucentHotItem = true;
     this.fastDataListView1.View = System.Windows.Forms.View.Details;
     this.fastDataListView1.VirtualMode = true;
     this.fastDataListView1.Visible = false;
     this.fastDataListView1.SelectionChanged += new System.EventHandler(this.fastDataListView1_SelectionChanged);
     this.fastDataListView1.Click += new System.EventHandler(this.fastDataListView1_Click);
     this.fastDataListView1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.fastDataListView1_MouseClick);
     //
     // olvColumn2
     //
     this.olvColumn2.AspectName = "apptdatetime";
     this.olvColumn2.Text = "Appt Date/Time";
     this.olvColumn2.Width = 115;
     //
     // olvColumn3
     //
     this.olvColumn3.AspectName = "patientname";
     this.olvColumn3.Text = "Name";
     this.olvColumn3.Width = 142;
     //
     // olvColumn4
     //
     this.olvColumn4.AspectName = "unitnum";
     this.olvColumn4.Text = "MRN";
     this.olvColumn4.Width = 80;
     //
     // olvColumn7
     //
     this.olvColumn7.AspectName = "dob";
     this.olvColumn7.Text = "DOB";
     this.olvColumn7.Width = 66;
     //
     // olvColumn5
     //
     this.olvColumn5.AspectName = "type";
     this.olvColumn5.Text = "Type";
     this.olvColumn5.Width = 55;
     //
     // olvColumn8
     //
     this.olvColumn8.AspectName = "apptphysname";
     this.olvColumn8.Text = "Provider";
     this.olvColumn8.Width = 120;
     //
     // olvColumnCompleted
     //
     this.olvColumnCompleted.AspectName = "riskdatacompleted";
     this.olvColumnCompleted.Text = "Date Completed";
     //
     // olvColumn6
     //
     this.olvColumn6.AspectName = "diseases";
     this.olvColumn6.Text = "Disease Hx";
     this.olvColumn6.Width = 140;
     //
     // olvColumn11
     //
     this.olvColumn11.AspectName = "surveyType";
     this.olvColumn11.Text = "Survey";
     //
     // olvColumn9
     //
     this.olvColumn9.AspectName = "formattedFamilyNumber";
     this.olvColumn9.Text = "Family Number";
     //
     // olvColumn10
     //
     this.olvColumn10.AspectName = "accession";
     this.olvColumn10.Text = "Accession";
     //
     // NoApptSelectedLabel
     //
     this.NoApptSelectedLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.NoApptSelectedLabel.AutoSize = true;
     this.NoApptSelectedLabel.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.NoApptSelectedLabel.Location = new System.Drawing.Point(152, 279);
     this.NoApptSelectedLabel.Name = "NoApptSelectedLabel";
     this.NoApptSelectedLabel.Size = new System.Drawing.Size(275, 13);
     this.NoApptSelectedLabel.TabIndex = 20;
     this.NoApptSelectedLabel.Text = "Choose an appointment from the list at the left.";
     //
     // patientRecordHeader1
     //
     this.patientRecordHeader1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.patientRecordHeader1.BackColor = System.Drawing.SystemColors.Control;
     this.patientRecordHeader1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.patientRecordHeader1.Collapsed = false;
     this.patientRecordHeader1.Location = new System.Drawing.Point(3, 0);
     this.patientRecordHeader1.Name = "patientRecordHeader1";
     this.patientRecordHeader1.Size = new System.Drawing.Size(601, 75);
     this.patientRecordHeader1.TabIndex = 19;
     //
     // theDockPanel
     //
     this.theDockPanel.ActiveAutoHideContent = null;
     this.theDockPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.theDockPanel.BackColor = System.Drawing.SystemColors.Control;
     this.theDockPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.theDockPanel.DockBackColor = System.Drawing.Color.WhiteSmoke;
     this.theDockPanel.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow;
     this.theDockPanel.Location = new System.Drawing.Point(3, 75);
     this.theDockPanel.Name = "theDockPanel";
     this.theDockPanel.Size = new System.Drawing.Size(601, 526);
     dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight;
     autoHideStripSkin1.DockStripGradient = dockPanelGradient1;
     tabGradient1.EndColor = System.Drawing.SystemColors.Control;
     tabGradient1.StartColor = System.Drawing.SystemColors.Control;
     tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin1.TabGradient = tabGradient1;
     autoHideStripSkin1.TextFont = new System.Drawing.Font("Tahoma", 8.25F);
     dockPanelSkin1.AutoHideStripSkin = autoHideStripSkin1;
     dockPanelSkin1.CaptionBackground = null;
     tabGradient2.EndColor = System.Drawing.Color.WhiteSmoke;
     tabGradient2.StartColor = System.Drawing.SystemColors.Control;
     tabGradient2.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.ActiveTabGradient = tabGradient2;
     dockPanelGradient2.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient2.StartColor = System.Drawing.SystemColors.ControlLight;
     dockPaneStripGradient1.DockStripGradient = dockPanelGradient2;
     tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.InactiveTabGradient = tabGradient3;
     dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1;
     dockPaneStripSkin1.TextFont = new System.Drawing.Font("Tahoma", 8.25F);
     tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption;
     tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption;
     tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
     dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4;
     tabGradient5.EndColor = System.Drawing.SystemColors.Control;
     tabGradient5.StartColor = System.Drawing.SystemColors.Control;
     tabGradient5.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5;
     dockPanelGradient3.EndColor = System.Drawing.Color.Gray;
     dockPanelGradient3.StartColor = System.Drawing.Color.Blue;
     dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3;
     tabGradient6.EndColor = System.Drawing.SystemColors.InactiveCaption;
     tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.TextColor = System.Drawing.SystemColors.InactiveCaptionText;
     dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6;
     tabGradient7.EndColor = System.Drawing.Color.WhiteSmoke;
     tabGradient7.StartColor = System.Drawing.Color.WhiteSmoke;
     tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7;
     dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1;
     dockPanelSkin1.DockPaneStripSkin = dockPaneStripSkin1;
     dockPanelSkin1.ShowDocumentCloseButton = false;
     this.theDockPanel.Skin = dockPanelSkin1;
     this.theDockPanel.TabIndex = 18;
     //
     // addToDoNotCallListToolStripMenuItem
     //
     this.addToDoNotCallListToolStripMenuItem.Name = "addToDoNotCallListToolStripMenuItem";
     this.addToDoNotCallListToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
     this.addToDoNotCallListToolStripMenuItem.Text = "Add to \"Do Not Call\" List";
     this.addToDoNotCallListToolStripMenuItem.Click += new System.EventHandler(this.addToDoNotCallListToolStripMenuItem_Click);
     //
     // MyScheduleView
     //
     this.AcceptButton = this.buttonApplyTextSearch;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(1028, 626);
     this.Controls.Add(this.splitContainer1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.Name = "MyScheduleView";
     this.Text = "My Appointments";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.HighRiskFollowupView_FormClosing);
     this.Load += new System.EventHandler(this.HighRiskFollowupView_Load);
     this.contextMenuStrip1.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     this.splitContainer1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.fastDataListView1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #12
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
			this.menuStrip = new System.Windows.Forms.MenuStrip();
			this.tsiFile = new System.Windows.Forms.ToolStripMenuItem();
			this.tsiFileNewProject = new System.Windows.Forms.ToolStripMenuItem();
			this.tsiFileOpenProject = new System.Windows.Forms.ToolStripMenuItem();
			this.tsiFileSaveProject = new System.Windows.Forms.ToolStripMenuItem();
			this.tsiFileCloseProject = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
			this.tsiFileOpenFile = new System.Windows.Forms.ToolStripMenuItem();
			this.tsiFileSave = new System.Windows.Forms.ToolStripMenuItem();
			this.tsiFileSaveAs = new System.Windows.Forms.ToolStripMenuItem();
			this.tsiFileSaveAll = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
			this.tsiFileRecentProjects = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.tsiFileExit = new System.Windows.Forms.ToolStripMenuItem();
			this.tsiEdit = new System.Windows.Forms.ToolStripMenuItem();
			this.goToNextLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.goToPreviousLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.pluginsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.sourceControlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.windowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.closeAllDocumentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.findFileInProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
			this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.projectWebSiteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.reportBugToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.requestFeatureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.statusStrip = new System.Windows.Forms.StatusStrip();
			this.statusMessage = new System.Windows.Forms.ToolStripStatusLabel();
			this.toolStripProgressBar = new System.Windows.Forms.ToolStripProgressBar();
			this.saveProjectDialog = new System.Windows.Forms.SaveFileDialog();
			this.openProjectDialog = new System.Windows.Forms.OpenFileDialog();
			this.statusMessageTimer = new System.Windows.Forms.Timer(this.components);
			this.saveDocumentDialog = new System.Windows.Forms.SaveFileDialog();
			this.openDocumentDialog = new System.Windows.Forms.OpenFileDialog();
			this.toolStripPanelTop = new System.Windows.Forms.ToolStripPanel();
			this.toolStripPanelBottom = new System.Windows.Forms.ToolStripPanel();
			this.toolStripPanelLeft = new System.Windows.Forms.ToolStripPanel();
			this.toolStripPanelRight = new System.Windows.Forms.ToolStripPanel();
			this.mDockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
			this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
			this.persistWindowComponent = new Tilde.Framework.View.PersistWindowComponent(this.components);
			this.menuStrip.SuspendLayout();
			this.statusStrip.SuspendLayout();
			this.toolStripPanelTop.SuspendLayout();
			this.toolStripPanelBottom.SuspendLayout();
			this.SuspendLayout();
			// 
			// menuStrip
			// 
			this.menuStrip.BackColor = System.Drawing.SystemColors.Control;
			this.menuStrip.Dock = System.Windows.Forms.DockStyle.None;
			this.menuStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible;
			this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsiFile,
            this.tsiEdit,
            this.viewToolStripMenuItem,
            this.toolsToolStripMenuItem,
            this.windowToolStripMenuItem,
            this.helpToolStripMenuItem});
			this.menuStrip.Location = new System.Drawing.Point(0, 0);
			this.menuStrip.MdiWindowListItem = this.windowToolStripMenuItem;
			this.menuStrip.Name = "menuStrip";
			this.menuStrip.Size = new System.Drawing.Size(843, 24);
			this.menuStrip.TabIndex = 0;
			this.menuStrip.Text = "menuStrip1";
			// 
			// tsiFile
			// 
			this.tsiFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsiFileNewProject,
            this.tsiFileOpenProject,
            this.tsiFileSaveProject,
            this.tsiFileCloseProject,
            this.toolStripSeparator2,
            this.tsiFileOpenFile,
            this.tsiFileSave,
            this.tsiFileSaveAs,
            this.tsiFileSaveAll,
            this.toolStripSeparator4,
            this.tsiFileRecentProjects,
            this.toolStripSeparator1,
            this.tsiFileExit});
			this.tsiFile.MergeIndex = 1;
			this.tsiFile.Name = "tsiFile";
			this.tsiFile.Size = new System.Drawing.Size(35, 20);
			this.tsiFile.Text = "&File";
			// 
			// tsiFileNewProject
			// 
			this.tsiFileNewProject.Name = "tsiFileNewProject";
			this.tsiFileNewProject.Size = new System.Drawing.Size(180, 22);
			this.tsiFileNewProject.Text = "New Project";
			// 
			// tsiFileOpenProject
			// 
			this.tsiFileOpenProject.Name = "tsiFileOpenProject";
			this.tsiFileOpenProject.Size = new System.Drawing.Size(180, 22);
			this.tsiFileOpenProject.Text = "Open Project...";
			this.tsiFileOpenProject.Click += new System.EventHandler(this.tsiFileOpenProject_Click);
			// 
			// tsiFileSaveProject
			// 
			this.tsiFileSaveProject.Name = "tsiFileSaveProject";
			this.tsiFileSaveProject.Size = new System.Drawing.Size(180, 22);
			this.tsiFileSaveProject.Text = "Save Project";
			this.tsiFileSaveProject.Click += new System.EventHandler(this.tsiFileSaveProject_Click);
			// 
			// tsiFileCloseProject
			// 
			this.tsiFileCloseProject.Name = "tsiFileCloseProject";
			this.tsiFileCloseProject.Size = new System.Drawing.Size(180, 22);
			this.tsiFileCloseProject.Text = "Close Project";
			this.tsiFileCloseProject.Click += new System.EventHandler(this.tsiFileCloseProject_Click);
			// 
			// toolStripSeparator2
			// 
			this.toolStripSeparator2.MergeIndex = 1;
			this.toolStripSeparator2.Name = "toolStripSeparator2";
			this.toolStripSeparator2.Size = new System.Drawing.Size(177, 6);
			// 
			// tsiFileOpenFile
			// 
			this.tsiFileOpenFile.Name = "tsiFileOpenFile";
			this.tsiFileOpenFile.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
			this.tsiFileOpenFile.Size = new System.Drawing.Size(180, 22);
			this.tsiFileOpenFile.Text = "&Open File...";
			this.tsiFileOpenFile.Click += new System.EventHandler(this.tsiFileOpenFile_Click);
			// 
			// tsiFileSave
			// 
			this.tsiFileSave.Name = "tsiFileSave";
			this.tsiFileSave.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
			this.tsiFileSave.Size = new System.Drawing.Size(180, 22);
			this.tsiFileSave.Text = "&Save";
			this.tsiFileSave.Click += new System.EventHandler(this.tsiFileSave_Click);
			// 
			// tsiFileSaveAs
			// 
			this.tsiFileSaveAs.Name = "tsiFileSaveAs";
			this.tsiFileSaveAs.Size = new System.Drawing.Size(180, 22);
			this.tsiFileSaveAs.Text = "Save As...";
			this.tsiFileSaveAs.Click += new System.EventHandler(this.tsiFileSaveAs_Click);
			// 
			// tsiFileSaveAll
			// 
			this.tsiFileSaveAll.Name = "tsiFileSaveAll";
			this.tsiFileSaveAll.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
						| System.Windows.Forms.Keys.S)));
			this.tsiFileSaveAll.Size = new System.Drawing.Size(180, 22);
			this.tsiFileSaveAll.Text = "Save &All";
			this.tsiFileSaveAll.Click += new System.EventHandler(this.tsiFileSaveAll_Click);
			// 
			// toolStripSeparator4
			// 
			this.toolStripSeparator4.MergeIndex = 2;
			this.toolStripSeparator4.Name = "toolStripSeparator4";
			this.toolStripSeparator4.Size = new System.Drawing.Size(177, 6);
			// 
			// tsiFileRecentProjects
			// 
			this.tsiFileRecentProjects.Name = "tsiFileRecentProjects";
			this.tsiFileRecentProjects.Size = new System.Drawing.Size(180, 22);
			this.tsiFileRecentProjects.Text = "Recent Projects";
			// 
			// toolStripSeparator1
			// 
			this.toolStripSeparator1.Name = "toolStripSeparator1";
			this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
			// 
			// tsiFileExit
			// 
			this.tsiFileExit.Name = "tsiFileExit";
			this.tsiFileExit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
			this.tsiFileExit.Size = new System.Drawing.Size(180, 22);
			this.tsiFileExit.Text = "E&xit";
			this.tsiFileExit.Click += new System.EventHandler(this.tsiFileExit_Click);
			// 
			// tsiEdit
			// 
			this.tsiEdit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.goToNextLocationToolStripMenuItem,
            this.goToPreviousLocationToolStripMenuItem});
			this.tsiEdit.MergeIndex = 2;
			this.tsiEdit.Name = "tsiEdit";
			this.tsiEdit.Size = new System.Drawing.Size(37, 20);
			this.tsiEdit.Text = "&Edit";
			// 
			// goToNextLocationToolStripMenuItem
			// 
			this.goToNextLocationToolStripMenuItem.Name = "goToNextLocationToolStripMenuItem";
			this.goToNextLocationToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F8;
			this.goToNextLocationToolStripMenuItem.Size = new System.Drawing.Size(233, 22);
			this.goToNextLocationToolStripMenuItem.Text = "Go to next location";
			this.goToNextLocationToolStripMenuItem.Click += new System.EventHandler(this.goToNextLocationToolStripMenuItem_Click);
			// 
			// goToPreviousLocationToolStripMenuItem
			// 
			this.goToPreviousLocationToolStripMenuItem.Name = "goToPreviousLocationToolStripMenuItem";
			this.goToPreviousLocationToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F8)));
			this.goToPreviousLocationToolStripMenuItem.Size = new System.Drawing.Size(233, 22);
			this.goToPreviousLocationToolStripMenuItem.Text = "Go to previous location";
			this.goToPreviousLocationToolStripMenuItem.Click += new System.EventHandler(this.goToPreviousLocationToolStripMenuItem_Click);
			// 
			// viewToolStripMenuItem
			// 
			this.viewToolStripMenuItem.MergeIndex = 3;
			this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
			this.viewToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
			this.viewToolStripMenuItem.Text = "&View";
			this.viewToolStripMenuItem.DropDownOpening += new System.EventHandler(this.viewToolStripMenuItem_DropDownOpening);
			// 
			// toolsToolStripMenuItem
			// 
			this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.pluginsToolStripMenuItem,
            this.optionsToolStripMenuItem,
            this.sourceControlToolStripMenuItem});
			this.toolsToolStripMenuItem.MergeIndex = 4;
			this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
			this.toolsToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
			this.toolsToolStripMenuItem.Text = "Tools";
			// 
			// pluginsToolStripMenuItem
			// 
			this.pluginsToolStripMenuItem.Name = "pluginsToolStripMenuItem";
			this.pluginsToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
			this.pluginsToolStripMenuItem.Text = "Plugins...";
			this.pluginsToolStripMenuItem.Click += new System.EventHandler(this.pluginsToolStripMenuItem_Click);
			// 
			// optionsToolStripMenuItem
			// 
			this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
			this.optionsToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
			this.optionsToolStripMenuItem.Text = "Options...";
			this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
			// 
			// sourceControlToolStripMenuItem
			// 
			this.sourceControlToolStripMenuItem.Name = "sourceControlToolStripMenuItem";
			this.sourceControlToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
			this.sourceControlToolStripMenuItem.Text = "Source Control...";
			this.sourceControlToolStripMenuItem.Click += new System.EventHandler(this.sourceControlToolStripMenuItem_Click);
			// 
			// windowToolStripMenuItem
			// 
			this.windowToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.closeAllDocumentsToolStripMenuItem,
            this.findFileInProjectToolStripMenuItem,
            this.toolStripSeparator3});
			this.windowToolStripMenuItem.MergeIndex = 5;
			this.windowToolStripMenuItem.Name = "windowToolStripMenuItem";
			this.windowToolStripMenuItem.Size = new System.Drawing.Size(57, 20);
			this.windowToolStripMenuItem.Text = "Window";
			// 
			// closeAllDocumentsToolStripMenuItem
			// 
			this.closeAllDocumentsToolStripMenuItem.Name = "closeAllDocumentsToolStripMenuItem";
			this.closeAllDocumentsToolStripMenuItem.Size = new System.Drawing.Size(239, 22);
			this.closeAllDocumentsToolStripMenuItem.Text = "Close All Documents";
			this.closeAllDocumentsToolStripMenuItem.Click += new System.EventHandler(this.closeAllDocumentsToolStripMenuItem_Click);
			// 
			// findFileInProjectToolStripMenuItem
			// 
			this.findFileInProjectToolStripMenuItem.Name = "findFileInProjectToolStripMenuItem";
			this.findFileInProjectToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.Shift)
						| System.Windows.Forms.Keys.O)));
			this.findFileInProjectToolStripMenuItem.Size = new System.Drawing.Size(239, 22);
			this.findFileInProjectToolStripMenuItem.Text = "Find File in Project...";
			this.findFileInProjectToolStripMenuItem.Click += new System.EventHandler(this.findFileInProjectToolStripMenuItem_Click);
			// 
			// toolStripSeparator3
			// 
			this.toolStripSeparator3.Name = "toolStripSeparator3";
			this.toolStripSeparator3.Size = new System.Drawing.Size(236, 6);
			// 
			// helpToolStripMenuItem
			// 
			this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.aboutToolStripMenuItem,
            this.projectWebSiteToolStripMenuItem,
            this.reportBugToolStripMenuItem,
            this.requestFeatureToolStripMenuItem});
			this.helpToolStripMenuItem.MergeAction = System.Windows.Forms.MergeAction.Insert;
			this.helpToolStripMenuItem.MergeIndex = 6;
			this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
			this.helpToolStripMenuItem.Size = new System.Drawing.Size(40, 20);
			this.helpToolStripMenuItem.Text = "Help";
			// 
			// aboutToolStripMenuItem
			// 
			this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
			this.aboutToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
			this.aboutToolStripMenuItem.Text = "About";
			this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
			// 
			// projectWebSiteToolStripMenuItem
			// 
			this.projectWebSiteToolStripMenuItem.Name = "projectWebSiteToolStripMenuItem";
			this.projectWebSiteToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
			this.projectWebSiteToolStripMenuItem.Text = "Project Web Site...";
			this.projectWebSiteToolStripMenuItem.Click += new System.EventHandler(this.projectWebSiteToolStripMenuItem_Click);
			// 
			// reportBugToolStripMenuItem
			// 
			this.reportBugToolStripMenuItem.Name = "reportBugToolStripMenuItem";
			this.reportBugToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
			this.reportBugToolStripMenuItem.Text = "Report Bug...";
			this.reportBugToolStripMenuItem.Click += new System.EventHandler(this.reportBugToolStripMenuItem_Click);
			// 
			// requestFeatureToolStripMenuItem
			// 
			this.requestFeatureToolStripMenuItem.Name = "requestFeatureToolStripMenuItem";
			this.requestFeatureToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
			this.requestFeatureToolStripMenuItem.Text = "Request Feature...";
			this.requestFeatureToolStripMenuItem.Click += new System.EventHandler(this.requestFeatureToolStripMenuItem_Click);
			// 
			// statusStrip
			// 
			this.statusStrip.Dock = System.Windows.Forms.DockStyle.None;
			this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.statusMessage,
            this.toolStripProgressBar});
			this.statusStrip.Location = new System.Drawing.Point(0, 0);
			this.statusStrip.Name = "statusStrip";
			this.statusStrip.Size = new System.Drawing.Size(843, 22);
			this.statusStrip.TabIndex = 1;
			this.statusStrip.Text = "statusStrip1";
			// 
			// statusMessage
			// 
			this.statusMessage.Name = "statusMessage";
			this.statusMessage.Size = new System.Drawing.Size(828, 17);
			this.statusMessage.Spring = true;
			this.statusMessage.Text = "Status message";
			this.statusMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// toolStripProgressBar
			// 
			this.toolStripProgressBar.Name = "toolStripProgressBar";
			this.toolStripProgressBar.Size = new System.Drawing.Size(100, 16);
			this.toolStripProgressBar.Visible = false;
			// 
			// saveProjectDialog
			// 
			this.saveProjectDialog.DefaultExt = "vcproj";
			this.saveProjectDialog.Filter = "Visual Studio Project Files (*.vcproj)|*.vcproj|XML Project Files (*.xml)|*.xml|A" +
				"ll Files (*.*)|*.*";
			this.saveProjectDialog.RestoreDirectory = true;
			this.saveProjectDialog.Title = "Save Project";
			// 
			// openProjectDialog
			// 
			this.openProjectDialog.DefaultExt = "vcproj";
			this.openProjectDialog.Filter = "Visual Studio Project Files (*.vcproj)|*.vcproj|XML Project Files (*.xml)|*.xml|A" +
				"ll Files (*.*)|*.*";
			this.openProjectDialog.RestoreDirectory = true;
			// 
			// statusMessageTimer
			// 
			this.statusMessageTimer.Tick += new System.EventHandler(this.statusMessageTimer_Tick);
			// 
			// saveDocumentDialog
			// 
			this.saveDocumentDialog.RestoreDirectory = true;
			this.saveDocumentDialog.SupportMultiDottedExtensions = true;
			// 
			// openDocumentDialog
			// 
			this.openDocumentDialog.Multiselect = true;
			this.openDocumentDialog.RestoreDirectory = true;
			this.openDocumentDialog.SupportMultiDottedExtensions = true;
			// 
			// toolStripPanelTop
			// 
			this.toolStripPanelTop.Controls.Add(this.menuStrip);
			this.toolStripPanelTop.Dock = System.Windows.Forms.DockStyle.Top;
			this.toolStripPanelTop.Location = new System.Drawing.Point(0, 0);
			this.toolStripPanelTop.Name = "toolStripPanelTop";
			this.toolStripPanelTop.Orientation = System.Windows.Forms.Orientation.Horizontal;
			this.toolStripPanelTop.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
			this.toolStripPanelTop.Size = new System.Drawing.Size(843, 24);
			// 
			// toolStripPanelBottom
			// 
			this.toolStripPanelBottom.Controls.Add(this.statusStrip);
			this.toolStripPanelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.toolStripPanelBottom.Location = new System.Drawing.Point(0, 372);
			this.toolStripPanelBottom.Name = "toolStripPanelBottom";
			this.toolStripPanelBottom.Orientation = System.Windows.Forms.Orientation.Horizontal;
			this.toolStripPanelBottom.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
			this.toolStripPanelBottom.Size = new System.Drawing.Size(843, 22);
			// 
			// toolStripPanelLeft
			// 
			this.toolStripPanelLeft.Dock = System.Windows.Forms.DockStyle.Left;
			this.toolStripPanelLeft.Location = new System.Drawing.Point(0, 24);
			this.toolStripPanelLeft.Name = "toolStripPanelLeft";
			this.toolStripPanelLeft.Orientation = System.Windows.Forms.Orientation.Vertical;
			this.toolStripPanelLeft.RowMargin = new System.Windows.Forms.Padding(0, 3, 0, 0);
			this.toolStripPanelLeft.Size = new System.Drawing.Size(0, 348);
			// 
			// toolStripPanelRight
			// 
			this.toolStripPanelRight.Dock = System.Windows.Forms.DockStyle.Right;
			this.toolStripPanelRight.Location = new System.Drawing.Point(843, 24);
			this.toolStripPanelRight.Name = "toolStripPanelRight";
			this.toolStripPanelRight.Orientation = System.Windows.Forms.Orientation.Vertical;
			this.toolStripPanelRight.RowMargin = new System.Windows.Forms.Padding(0, 3, 0, 0);
			this.toolStripPanelRight.Size = new System.Drawing.Size(0, 348);
			// 
			// mDockPanel
			// 
			this.mDockPanel.ActiveAutoHideContent = null;
			this.mDockPanel.Dock = System.Windows.Forms.DockStyle.Fill;
			this.mDockPanel.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
			this.mDockPanel.Location = new System.Drawing.Point(0, 0);
			this.mDockPanel.Name = "mDockPanel";
			this.mDockPanel.Size = new System.Drawing.Size(843, 394);
			this.mDockPanel.TabIndex = 3;
			this.mDockPanel.ActiveContentChanged += new System.EventHandler(this.mDockPanel_ActiveContentChanged);
			this.mDockPanel.ContentAdded += new System.EventHandler<WeifenLuo.WinFormsUI.Docking.DockContentEventArgs>(this.mDockPanel_ContentAdded);
			this.mDockPanel.ActiveDocumentChanged += new System.EventHandler(this.mDockPanel_ActiveDocumentChanged);
			this.mDockPanel.ContentRemoved += new System.EventHandler<WeifenLuo.WinFormsUI.Docking.DockContentEventArgs>(this.mDockPanel_ContentRemoved);
			// 
			// notifyIcon
			// 
			this.notifyIcon.Text = "Notify Icon";
			this.notifyIcon.Visible = true;
			this.notifyIcon.BalloonTipClicked += new System.EventHandler(this.notifyIcon_BalloonTipClicked);
			this.notifyIcon.DoubleClick += new System.EventHandler(this.notifyIcon_DoubleClick);
			// 
			// persistWindowComponent
			// 
			this.persistWindowComponent.Form = this;
			this.persistWindowComponent.RegistryKey = "MainWindow";
			// 
			// MainWindow
			// 
			this.AllowDrop = true;
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(843, 394);
			this.Controls.Add(this.toolStripPanelRight);
			this.Controls.Add(this.toolStripPanelLeft);
			this.Controls.Add(this.toolStripPanelBottom);
			this.Controls.Add(this.toolStripPanelTop);
			this.Controls.Add(this.mDockPanel);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.IsMdiContainer = true;
			this.MainMenuStrip = this.menuStrip;
			this.Name = "MainWindow";
			this.Text = "Tilde";
			this.Load += new System.EventHandler(this.MainWindow_Load);
			this.DragDrop += new System.Windows.Forms.DragEventHandler(this.MainWindow_DragDrop);
			this.DragEnter += new System.Windows.Forms.DragEventHandler(this.MainWindow_DragEnter);
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
			this.menuStrip.ResumeLayout(false);
			this.menuStrip.PerformLayout();
			this.statusStrip.ResumeLayout(false);
			this.statusStrip.PerformLayout();
			this.toolStripPanelTop.ResumeLayout(false);
			this.toolStripPanelTop.PerformLayout();
			this.toolStripPanelBottom.ResumeLayout(false);
			this.toolStripPanelBottom.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Пример #13
0
 /// <summary>
 ///		Required method for Designer support - do not modify
 ///		the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormDesigner));
     this.FPointerImageList                = new System.Windows.Forms.ImageList(this.components);
     this.FNodesImageList                  = new System.Windows.Forms.ImageList(this.components);
     this.ToolBarImageList                 = new System.Windows.Forms.ImageList(this.components);
     this.FDockPanel                       = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.FMenuStrip                       = new System.Windows.Forms.MenuStrip();
     this.FFileToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.FSaveAsFileToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.FSaveAsDocumentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.FCloseToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.FEditToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.FCutToolStripMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.FCopyToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.FPasteToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.FDeleteToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.FRenameToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.FViewToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.FPaletteToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.FPropertiesToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.FFormToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.FToolStrip                       = new System.Windows.Forms.ToolStrip();
     this.FSaveToolStripButton             = new System.Windows.Forms.ToolStripButton();
     this.FSaveAsFileToolStripButton       = new System.Windows.Forms.ToolStripButton();
     this.FSaveAsDocumentToolStripButton   = new System.Windows.Forms.ToolStripButton();
     this.FToolStripSeparator              = new System.Windows.Forms.ToolStripSeparator();
     this.FCutToolStripButton              = new System.Windows.Forms.ToolStripButton();
     this.FCopyToolStripButton             = new System.Windows.Forms.ToolStripButton();
     this.FPasteToolStripButton            = new System.Windows.Forms.ToolStripButton();
     this.FDeleteToolStripButton           = new System.Windows.Forms.ToolStripButton();
     this.FRenameToolStripButton           = new System.Windows.Forms.ToolStripButton();
     this.FSaveToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1               = new System.Windows.Forms.ToolStripSeparator();
     this.FMenuStrip.SuspendLayout();
     this.FToolStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // FPointerImageList
     //
     this.FPointerImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("FPointerImageList.ImageStream")));
     this.FPointerImageList.TransparentColor = System.Drawing.Color.Lime;
     this.FPointerImageList.Images.SetKeyName(0, "");
     //
     // FNodesImageList
     //
     this.FNodesImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("FNodesImageList.ImageStream")));
     this.FNodesImageList.TransparentColor = System.Drawing.Color.LimeGreen;
     this.FNodesImageList.Images.SetKeyName(0, "");
     //
     // ToolBarImageList
     //
     this.ToolBarImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ToolBarImageList.ImageStream")));
     this.ToolBarImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.ToolBarImageList.Images.SetKeyName(0, "");
     this.ToolBarImageList.Images.SetKeyName(1, "");
     this.ToolBarImageList.Images.SetKeyName(2, "");
     this.ToolBarImageList.Images.SetKeyName(3, "");
     this.ToolBarImageList.Images.SetKeyName(4, "");
     this.ToolBarImageList.Images.SetKeyName(5, "");
     this.ToolBarImageList.Images.SetKeyName(6, "");
     this.ToolBarImageList.Images.SetKeyName(7, "");
     this.ToolBarImageList.Images.SetKeyName(8, "");
     this.ToolBarImageList.Images.SetKeyName(9, "");
     this.ToolBarImageList.Images.SetKeyName(10, "");
     this.ToolBarImageList.Images.SetKeyName(11, "");
     //
     // FDockPanel
     //
     this.FDockPanel.ActiveAutoHideContent = null;
     this.FDockPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FDockPanel.DockBottomPortion = 0.4;
     this.FDockPanel.DockLeftPortion   = 210;
     this.FDockPanel.DockRightPortion  = 220;
     this.FDockPanel.DockTopPortion    = 220;
     this.FDockPanel.DocumentStyle     = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingSdi;
     this.FDockPanel.Location          = new System.Drawing.Point(0, 0);
     this.FDockPanel.Name     = "FDockPanel";
     this.FDockPanel.Size     = new System.Drawing.Size(687, 518);
     this.FDockPanel.TabIndex = 4;
     //
     // FMenuStrip
     //
     this.FMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.FFileToolStripMenuItem,
         this.FEditToolStripMenuItem,
         this.FViewToolStripMenuItem
     });
     this.FMenuStrip.Location = new System.Drawing.Point(0, 0);
     this.FMenuStrip.Name     = "FMenuStrip";
     this.FMenuStrip.Size     = new System.Drawing.Size(687, 24);
     this.FMenuStrip.TabIndex = 9;
     this.FMenuStrip.Text     = "menuStrip1";
     this.FMenuStrip.Visible  = false;
     //
     // FFileToolStripMenuItem
     //
     this.FFileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.FSaveToolStripMenuItem,
         this.FSaveAsFileToolStripMenuItem,
         this.FSaveAsDocumentToolStripMenuItem,
         this.FCloseToolStripMenuItem
     });
     this.FFileToolStripMenuItem.MergeAction = System.Windows.Forms.MergeAction.MatchOnly;
     this.FFileToolStripMenuItem.Name        = "FFileToolStripMenuItem";
     this.FFileToolStripMenuItem.Size        = new System.Drawing.Size(37, 20);
     this.FFileToolStripMenuItem.Text        = "File";
     //
     // FSaveAsFileToolStripMenuItem
     //
     this.FSaveAsFileToolStripMenuItem.Image        = global::Alphora.Dataphor.Dataphoria.MenuImages.SaveFile;
     this.FSaveAsFileToolStripMenuItem.MergeAction  = System.Windows.Forms.MergeAction.Insert;
     this.FSaveAsFileToolStripMenuItem.MergeIndex   = 8;
     this.FSaveAsFileToolStripMenuItem.Name         = "FSaveAsFileToolStripMenuItem";
     this.FSaveAsFileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                                                                                    | System.Windows.Forms.Keys.F)));
     this.FSaveAsFileToolStripMenuItem.Size   = new System.Drawing.Size(247, 22);
     this.FSaveAsFileToolStripMenuItem.Text   = "Save As File";
     this.FSaveAsFileToolStripMenuItem.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FSaveAsDocumentToolStripMenuItem
     //
     this.FSaveAsDocumentToolStripMenuItem.Image        = global::Alphora.Dataphor.Dataphoria.MenuImages.SaveDocument;
     this.FSaveAsDocumentToolStripMenuItem.MergeAction  = System.Windows.Forms.MergeAction.Insert;
     this.FSaveAsDocumentToolStripMenuItem.MergeIndex   = 9;
     this.FSaveAsDocumentToolStripMenuItem.Name         = "FSaveAsDocumentToolStripMenuItem";
     this.FSaveAsDocumentToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                                                                                        | System.Windows.Forms.Keys.D)));
     this.FSaveAsDocumentToolStripMenuItem.Size   = new System.Drawing.Size(247, 22);
     this.FSaveAsDocumentToolStripMenuItem.Text   = "Save As Document";
     this.FSaveAsDocumentToolStripMenuItem.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FCloseToolStripMenuItem
     //
     this.FCloseToolStripMenuItem.Image        = global::Alphora.Dataphor.Dataphoria.MenuImages.Close;
     this.FCloseToolStripMenuItem.MergeAction  = System.Windows.Forms.MergeAction.Insert;
     this.FCloseToolStripMenuItem.MergeIndex   = 12;
     this.FCloseToolStripMenuItem.Name         = "FCloseToolStripMenuItem";
     this.FCloseToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F4)));
     this.FCloseToolStripMenuItem.Size         = new System.Drawing.Size(247, 22);
     this.FCloseToolStripMenuItem.Text         = "Close";
     this.FCloseToolStripMenuItem.Click       += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FEditToolStripMenuItem
     //
     this.FEditToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.FCutToolStripMenuItem,
         this.FCopyToolStripMenuItem,
         this.FPasteToolStripMenuItem,
         this.FDeleteToolStripMenuItem,
         this.FRenameToolStripMenuItem
     });
     this.FEditToolStripMenuItem.MergeAction = System.Windows.Forms.MergeAction.Insert;
     this.FEditToolStripMenuItem.MergeIndex  = 1;
     this.FEditToolStripMenuItem.Name        = "FEditToolStripMenuItem";
     this.FEditToolStripMenuItem.Size        = new System.Drawing.Size(39, 20);
     this.FEditToolStripMenuItem.Text        = "Edit";
     //
     // FCutToolStripMenuItem
     //
     this.FCutToolStripMenuItem.Image  = global::Alphora.Dataphor.Dataphoria.MenuImages.Cut;
     this.FCutToolStripMenuItem.Name   = "FCutToolStripMenuItem";
     this.FCutToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.FCutToolStripMenuItem.Text   = "Cut";
     this.FCutToolStripMenuItem.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FCopyToolStripMenuItem
     //
     this.FCopyToolStripMenuItem.Image  = global::Alphora.Dataphor.Dataphoria.MenuImages.Copy;
     this.FCopyToolStripMenuItem.Name   = "FCopyToolStripMenuItem";
     this.FCopyToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.FCopyToolStripMenuItem.Text   = "Copy";
     this.FCopyToolStripMenuItem.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FPasteToolStripMenuItem
     //
     this.FPasteToolStripMenuItem.Image  = global::Alphora.Dataphor.Dataphoria.MenuImages.Paste;
     this.FPasteToolStripMenuItem.Name   = "FPasteToolStripMenuItem";
     this.FPasteToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.FPasteToolStripMenuItem.Text   = "Paste";
     this.FPasteToolStripMenuItem.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FDeleteToolStripMenuItem
     //
     this.FDeleteToolStripMenuItem.Image  = global::Alphora.Dataphor.Dataphoria.MenuImages.Delete;
     this.FDeleteToolStripMenuItem.Name   = "FDeleteToolStripMenuItem";
     this.FDeleteToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.FDeleteToolStripMenuItem.Text   = "Delete";
     this.FDeleteToolStripMenuItem.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FRenameToolStripMenuItem
     //
     this.FRenameToolStripMenuItem.Image  = global::Alphora.Dataphor.Dataphoria.MenuImages.Rename;
     this.FRenameToolStripMenuItem.Name   = "FRenameToolStripMenuItem";
     this.FRenameToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.FRenameToolStripMenuItem.Text   = "Rename";
     this.FRenameToolStripMenuItem.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FViewToolStripMenuItem
     //
     this.FViewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItem1,
         this.FPaletteToolStripMenuItem,
         this.FPropertiesToolStripMenuItem,
         this.FFormToolStripMenuItem
     });
     this.FViewToolStripMenuItem.MergeAction = System.Windows.Forms.MergeAction.MatchOnly;
     this.FViewToolStripMenuItem.Name        = "FViewToolStripMenuItem";
     this.FViewToolStripMenuItem.Size        = new System.Drawing.Size(44, 20);
     this.FViewToolStripMenuItem.Text        = "View";
     //
     // FPaletteToolStripMenuItem
     //
     this.FPaletteToolStripMenuItem.Name   = "FPaletteToolStripMenuItem";
     this.FPaletteToolStripMenuItem.Size   = new System.Drawing.Size(127, 22);
     this.FPaletteToolStripMenuItem.Text   = "Palette";
     this.FPaletteToolStripMenuItem.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FPropertiesToolStripMenuItem
     //
     this.FPropertiesToolStripMenuItem.Name   = "FPropertiesToolStripMenuItem";
     this.FPropertiesToolStripMenuItem.Size   = new System.Drawing.Size(127, 22);
     this.FPropertiesToolStripMenuItem.Text   = "Properties";
     this.FPropertiesToolStripMenuItem.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FFormToolStripMenuItem
     //
     this.FFormToolStripMenuItem.Name   = "FFormToolStripMenuItem";
     this.FFormToolStripMenuItem.Size   = new System.Drawing.Size(127, 22);
     this.FFormToolStripMenuItem.Text   = "Form";
     this.FFormToolStripMenuItem.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FToolStrip
     //
     this.FToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.FSaveToolStripButton,
         this.FSaveAsFileToolStripButton,
         this.FSaveAsDocumentToolStripButton,
         this.FToolStripSeparator,
         this.FCutToolStripButton,
         this.FCopyToolStripButton,
         this.FPasteToolStripButton,
         this.FDeleteToolStripButton,
         this.FRenameToolStripButton
     });
     this.FToolStrip.Location = new System.Drawing.Point(0, 24);
     this.FToolStrip.Name     = "FToolStrip";
     this.FToolStrip.Size     = new System.Drawing.Size(687, 25);
     this.FToolStrip.TabIndex = 10;
     this.FToolStrip.Text     = "toolStrip1";
     this.FToolStrip.Visible  = false;
     //
     // FSaveToolStripButton
     //
     this.FSaveToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.FSaveToolStripButton.Image                 = global::Alphora.Dataphor.Dataphoria.MenuImages.Save;
     this.FSaveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.FSaveToolStripButton.Name   = "FSaveToolStripButton";
     this.FSaveToolStripButton.Size   = new System.Drawing.Size(23, 22);
     this.FSaveToolStripButton.Text   = "toolStripButton1";
     this.FSaveToolStripButton.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FSaveAsFileToolStripButton
     //
     this.FSaveAsFileToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.FSaveAsFileToolStripButton.Image                 = global::Alphora.Dataphor.Dataphoria.MenuImages.SaveFile;
     this.FSaveAsFileToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.FSaveAsFileToolStripButton.Name   = "FSaveAsFileToolStripButton";
     this.FSaveAsFileToolStripButton.Size   = new System.Drawing.Size(23, 22);
     this.FSaveAsFileToolStripButton.Text   = "toolStripButton2";
     this.FSaveAsFileToolStripButton.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FSaveAsDocumentToolStripButton
     //
     this.FSaveAsDocumentToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.FSaveAsDocumentToolStripButton.Image                 = global::Alphora.Dataphor.Dataphoria.MenuImages.SaveDocument;
     this.FSaveAsDocumentToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.FSaveAsDocumentToolStripButton.Name   = "FSaveAsDocumentToolStripButton";
     this.FSaveAsDocumentToolStripButton.Size   = new System.Drawing.Size(23, 22);
     this.FSaveAsDocumentToolStripButton.Text   = "toolStripButton3";
     this.FSaveAsDocumentToolStripButton.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FToolStripSeparator
     //
     this.FToolStripSeparator.Name = "FToolStripSeparator";
     this.FToolStripSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // FCutToolStripButton
     //
     this.FCutToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.FCutToolStripButton.Image                 = global::Alphora.Dataphor.Dataphoria.MenuImages.Cut;
     this.FCutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.FCutToolStripButton.Name   = "FCutToolStripButton";
     this.FCutToolStripButton.Size   = new System.Drawing.Size(23, 22);
     this.FCutToolStripButton.Text   = "toolStripButton1";
     this.FCutToolStripButton.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FCopyToolStripButton
     //
     this.FCopyToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.FCopyToolStripButton.Image                 = global::Alphora.Dataphor.Dataphoria.MenuImages.Copy;
     this.FCopyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.FCopyToolStripButton.Name   = "FCopyToolStripButton";
     this.FCopyToolStripButton.Size   = new System.Drawing.Size(23, 22);
     this.FCopyToolStripButton.Text   = "toolStripButton2";
     this.FCopyToolStripButton.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FPasteToolStripButton
     //
     this.FPasteToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.FPasteToolStripButton.Image                 = global::Alphora.Dataphor.Dataphoria.MenuImages.Paste;
     this.FPasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.FPasteToolStripButton.Name   = "FPasteToolStripButton";
     this.FPasteToolStripButton.Size   = new System.Drawing.Size(23, 22);
     this.FPasteToolStripButton.Text   = "toolStripButton3";
     this.FPasteToolStripButton.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FDeleteToolStripButton
     //
     this.FDeleteToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.FDeleteToolStripButton.Image                 = global::Alphora.Dataphor.Dataphoria.MenuImages.Delete;
     this.FDeleteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.FDeleteToolStripButton.Name   = "FDeleteToolStripButton";
     this.FDeleteToolStripButton.Size   = new System.Drawing.Size(23, 22);
     this.FDeleteToolStripButton.Text   = "toolStripButton4";
     this.FDeleteToolStripButton.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FRenameToolStripButton
     //
     this.FRenameToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.FRenameToolStripButton.Image                 = global::Alphora.Dataphor.Dataphoria.MenuImages.Rename;
     this.FRenameToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.FRenameToolStripButton.Name   = "FRenameToolStripButton";
     this.FRenameToolStripButton.Size   = new System.Drawing.Size(23, 22);
     this.FRenameToolStripButton.Text   = "toolStripButton1";
     this.FRenameToolStripButton.Click += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // FSaveToolStripMenuItem
     //
     this.FSaveToolStripMenuItem.Image        = global::Alphora.Dataphor.Dataphoria.MenuImages.Save;
     this.FSaveToolStripMenuItem.MergeAction  = System.Windows.Forms.MergeAction.Insert;
     this.FSaveToolStripMenuItem.MergeIndex   = 8;
     this.FSaveToolStripMenuItem.Name         = "FSaveToolStripMenuItem";
     this.FSaveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.FSaveToolStripMenuItem.Size         = new System.Drawing.Size(247, 22);
     this.FSaveToolStripMenuItem.Text         = "Save";
     this.FSaveToolStripMenuItem.Click       += new System.EventHandler(this.FMainMenuStrip_ItemClicked);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(149, 6);
     //
     // FormDesigner
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.CausesValidation    = false;
     this.ClientSize          = new System.Drawing.Size(687, 518);
     this.Controls.Add(this.FMenuStrip);
     this.Controls.Add(this.FToolStrip);
     this.Controls.Add(this.FDockPanel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "FormDesigner";
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.FMenuStrip.ResumeLayout(false);
     this.FMenuStrip.PerformLayout();
     this.FToolStrip.ResumeLayout(false);
     this.FToolStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
   WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
   WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
   WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
   WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
   WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
   WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
   WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
   WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
   WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
   WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
   WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
   WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
   WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
   WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
   WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
   System.ComponentModel.ComponentResourceManager componentResourceManager = new System.ComponentModel.ComponentResourceManager(typeof(IntelliTrack.Client.Application.Form1));
   dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
   menuStrip1 = new System.Windows.Forms.MenuStrip();
   fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
   saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
   printToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   printPreviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
   exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   undoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   redoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
   cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
   selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   customizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   contentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   indexToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   searchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
   aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
   menuStrip1.SuspendLayout();
   SuspendLayout();
   dockPanel.ActiveAutoHideContent = null;
   dockPanel.Dock = System.Windows.Forms.DockStyle.Fill;
   dockPanel.DockBackColor = System.Drawing.SystemColors.Control;
   dockPanel.DockBottomPortion = 150.0;
   dockPanel.DockLeftPortion = 200.0;
   dockPanel.DockRightPortion = 200.0;
   dockPanel.DockTopPortion = 150.0;
   dockPanel.Font = new System.Drawing.Font("Tahoma", 11.0F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World, 0);
   dockPanel.Location = new System.Drawing.Point(0, 24);
   dockPanel.Name = "dockPanel";
   dockPanel.RightToLeftLayout = true;
   dockPanel.Size = new System.Drawing.Size(943, 652);
   dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight;
   dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight;
   autoHideStripSkin.DockStripGradient = dockPanelGradient1;
   tabGradient1.EndColor = System.Drawing.SystemColors.Control;
   tabGradient1.StartColor = System.Drawing.SystemColors.Control;
   tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark;
   autoHideStripSkin.TabGradient = tabGradient1;
   dockPanelSkin.AutoHideStripSkin = autoHideStripSkin;
   tabGradient2.EndColor = System.Drawing.SystemColors.ControlLightLight;
   tabGradient2.StartColor = System.Drawing.SystemColors.ControlLightLight;
   tabGradient2.TextColor = System.Drawing.SystemColors.ControlText;
   dockPaneStripGradient.ActiveTabGradient = tabGradient2;
   dockPanelGradient2.EndColor = System.Drawing.SystemColors.Control;
   dockPanelGradient2.StartColor = System.Drawing.SystemColors.Control;
   dockPaneStripGradient.DockStripGradient = dockPanelGradient2;
   tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
   tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
   tabGradient3.TextColor = System.Drawing.SystemColors.ControlText;
   dockPaneStripGradient.InactiveTabGradient = tabGradient3;
   dockPaneStripSkin.DocumentGradient = dockPaneStripGradient;
   tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption;
   tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
   tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption;
   tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
   dockPaneStripToolWindowGradient.ActiveCaptionGradient = tabGradient4;
   tabGradient5.EndColor = System.Drawing.SystemColors.Control;
   tabGradient5.StartColor = System.Drawing.SystemColors.Control;
   tabGradient5.TextColor = System.Drawing.SystemColors.ControlText;
   dockPaneStripToolWindowGradient.ActiveTabGradient = tabGradient5;
   dockPanelGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
   dockPanelGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
   dockPaneStripToolWindowGradient.DockStripGradient = dockPanelGradient3;
   tabGradient6.EndColor = System.Drawing.SystemColors.GradientInactiveCaption;
   tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
   tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption;
   tabGradient6.TextColor = System.Drawing.SystemColors.ControlText;
   dockPaneStripToolWindowGradient.InactiveCaptionGradient = tabGradient6;
   tabGradient7.EndColor = System.Drawing.Color.Transparent;
   tabGradient7.StartColor = System.Drawing.Color.Transparent;
   tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark;
   dockPaneStripToolWindowGradient.InactiveTabGradient = tabGradient7;
   dockPaneStripSkin.ToolWindowGradient = dockPaneStripToolWindowGradient;
   dockPanelSkin.DockPaneStripSkin = dockPaneStripSkin;
   dockPanel.Skin = dockPanelSkin;
   dockPanel.TabIndex = 0;
   System.Windows.Forms.ToolStripItem[] toolStripItemArr1 = new System.Windows.Forms.ToolStripItem[] {
                                                                                                             fileToolStripMenuItem, 
                                                                                                             editToolStripMenuItem, 
                                                                                                             toolsToolStripMenuItem, 
                                                                                                             helpToolStripMenuItem };
   menuStrip1.Items.AddRange(toolStripItemArr1);
   menuStrip1.Location = new System.Drawing.Point(0, 0);
   menuStrip1.Name = "menuStrip1";
   menuStrip1.Size = new System.Drawing.Size(943, 24);
   menuStrip1.TabIndex = 3;
   menuStrip1.Text = "menuStrip1";
   System.Windows.Forms.ToolStripItem[] toolStripItemArr2 = new System.Windows.Forms.ToolStripItem[] {
                                                                                                             newToolStripMenuItem, 
                                                                                                             openToolStripMenuItem, 
                                                                                                             toolStripSeparator, 
                                                                                                             saveToolStripMenuItem, 
                                                                                                             saveAsToolStripMenuItem, 
                                                                                                             toolStripSeparator1, 
                                                                                                             printToolStripMenuItem, 
                                                                                                             printPreviewToolStripMenuItem, 
                                                                                                             toolStripSeparator2, 
                                                                                                             exitToolStripMenuItem };
   fileToolStripMenuItem.DropDownItems.AddRange(toolStripItemArr2);
   fileToolStripMenuItem.Name = "fileToolStripMenuItem";
   fileToolStripMenuItem.Size = new System.Drawing.Size(55, 20);
   fileToolStripMenuItem.Text = "&Archivo";
   newToolStripMenuItem.Image = (System.Drawing.Image)componentResourceManager.GetObject("newToolStripMenuItem.Image");
   newToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
   newToolStripMenuItem.Name = "newToolStripMenuItem";
   newToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.Control;
   newToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
   newToolStripMenuItem.Text = "&New";
   newToolStripMenuItem.Visible = false;
   openToolStripMenuItem.Image = (System.Drawing.Image)componentResourceManager.GetObject("openToolStripMenuItem.Image");
   openToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
   openToolStripMenuItem.Name = "openToolStripMenuItem";
   openToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.Control;
   openToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
   openToolStripMenuItem.Text = "&Open";
   openToolStripMenuItem.Visible = false;
   toolStripSeparator.Name = "toolStripSeparator";
   toolStripSeparator.Size = new System.Drawing.Size(148, 6);
   toolStripSeparator.Visible = false;
   saveToolStripMenuItem.Image = (System.Drawing.Image)componentResourceManager.GetObject("saveToolStripMenuItem.Image");
   saveToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
   saveToolStripMenuItem.Name = "saveToolStripMenuItem";
   saveToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.Control;
   saveToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
   saveToolStripMenuItem.Text = "&Save";
   saveToolStripMenuItem.Visible = false;
   saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
   saveAsToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
   saveAsToolStripMenuItem.Text = "Save &As";
   saveAsToolStripMenuItem.Visible = false;
   toolStripSeparator1.Name = "toolStripSeparator1";
   toolStripSeparator1.Size = new System.Drawing.Size(148, 6);
   toolStripSeparator1.Visible = false;
   printToolStripMenuItem.Image = (System.Drawing.Image)componentResourceManager.GetObject("printToolStripMenuItem.Image");
   printToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
   printToolStripMenuItem.Name = "printToolStripMenuItem";
   //printToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.Control;
   printToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
   printToolStripMenuItem.Text = "&Print";
   printToolStripMenuItem.Visible = false;
   printPreviewToolStripMenuItem.Image = (System.Drawing.Image)componentResourceManager.GetObject("printPreviewToolStripMenuItem.Image");
   printPreviewToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
   printPreviewToolStripMenuItem.Name = "printPreviewToolStripMenuItem";
   printPreviewToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
   printPreviewToolStripMenuItem.Text = "Print Pre&view";
   printPreviewToolStripMenuItem.Visible = false;
   toolStripSeparator2.Name = "toolStripSeparator2";
   toolStripSeparator2.Size = new System.Drawing.Size(148, 6);
   toolStripSeparator2.Visible = false;
   exitToolStripMenuItem.Name = "exitToolStripMenuItem";
   exitToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
   exitToolStripMenuItem.Text = "&Salir";
   exitToolStripMenuItem.Click += new System.EventHandler(exitToolStripMenuItem_Click);
   System.Windows.Forms.ToolStripItem[] toolStripItemArr3 = new System.Windows.Forms.ToolStripItem[] {
                                                                                                             undoToolStripMenuItem, 
                                                                                                             redoToolStripMenuItem, 
                                                                                                             toolStripSeparator3, 
                                                                                                             cutToolStripMenuItem, 
                                                                                                             copyToolStripMenuItem, 
                                                                                                             pasteToolStripMenuItem, 
                                                                                                             toolStripSeparator4, 
                                                                                                             selectAllToolStripMenuItem };
   editToolStripMenuItem.DropDownItems.AddRange(toolStripItemArr3);
   editToolStripMenuItem.Name = "editToolStripMenuItem";
   editToolStripMenuItem.Size = new System.Drawing.Size(47, 20);
   editToolStripMenuItem.Text = "&Editar";
   editToolStripMenuItem.Visible = false;
   undoToolStripMenuItem.Name = "undoToolStripMenuItem";
   undoToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.Control;
   undoToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
   undoToolStripMenuItem.Text = "&Undo";
   redoToolStripMenuItem.Name = "redoToolStripMenuItem";
   redoToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.Control;
   redoToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
   redoToolStripMenuItem.Text = "&Redo";
   toolStripSeparator3.Name = "toolStripSeparator3";
   toolStripSeparator3.Size = new System.Drawing.Size(147, 6);
   cutToolStripMenuItem.Image = (System.Drawing.Image)componentResourceManager.GetObject("cutToolStripMenuItem.Image");
   cutToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
   cutToolStripMenuItem.Name = "cutToolStripMenuItem";
   cutToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.Control;
   cutToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
   cutToolStripMenuItem.Text = "Cu&t";
   copyToolStripMenuItem.Image = (System.Drawing.Image)componentResourceManager.GetObject("copyToolStripMenuItem.Image");
   copyToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
   copyToolStripMenuItem.Name = "copyToolStripMenuItem";
   copyToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Control;
   copyToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
   copyToolStripMenuItem.Text = "&Copy";
   pasteToolStripMenuItem.Image = (System.Drawing.Image)componentResourceManager.GetObject("pasteToolStripMenuItem.Image");
   pasteToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
   pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
   pasteToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.Control;
   pasteToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
   pasteToolStripMenuItem.Text = "&Paste";
   toolStripSeparator4.Name = "toolStripSeparator4";
   toolStripSeparator4.Size = new System.Drawing.Size(147, 6);
   selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
   selectAllToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
   selectAllToolStripMenuItem.Text = "Select &All";
   System.Windows.Forms.ToolStripItem[] toolStripItemArr4 = new System.Windows.Forms.ToolStripItem[] {
                                                                                                             customizeToolStripMenuItem, 
                                                                                                             optionsToolStripMenuItem };
   toolsToolStripMenuItem.DropDownItems.AddRange(toolStripItemArr4);
   toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
   toolsToolStripMenuItem.Size = new System.Drawing.Size(83, 20);
   toolsToolStripMenuItem.Text = "&Herramientas";
   toolsToolStripMenuItem.Visible = false;
   customizeToolStripMenuItem.Name = "customizeToolStripMenuItem";
   customizeToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
   customizeToolStripMenuItem.Text = "Personali&zar...";
   optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
   optionsToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
   optionsToolStripMenuItem.Text = "Opcion&es...";
   System.Windows.Forms.ToolStripItem[] toolStripItemArr5 = new System.Windows.Forms.ToolStripItem[] {
                                                                                                             contentsToolStripMenuItem, 
                                                                                                             indexToolStripMenuItem, 
                                                                                                             searchToolStripMenuItem, 
                                                                                                             toolStripSeparator5, 
                                                                                                             aboutToolStripMenuItem };
   helpToolStripMenuItem.DropDownItems.AddRange(toolStripItemArr5);
   helpToolStripMenuItem.Name = "helpToolStripMenuItem";
   helpToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
   helpToolStripMenuItem.Text = "Ay&uda";
   helpToolStripMenuItem.Visible = false;
   contentsToolStripMenuItem.Name = "contentsToolStripMenuItem";
   contentsToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
   contentsToolStripMenuItem.Text = "&Contents";
   indexToolStripMenuItem.Name = "indexToolStripMenuItem";
   indexToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
   indexToolStripMenuItem.Text = "&Index";
   searchToolStripMenuItem.Name = "searchToolStripMenuItem";
   searchToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
   searchToolStripMenuItem.Text = "&Search";
   toolStripSeparator5.Name = "toolStripSeparator5";
   toolStripSeparator5.Size = new System.Drawing.Size(126, 6);
   aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
   aboutToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
   aboutToolStripMenuItem.Text = "&About...";
   AutoScaleDimensions = new System.Drawing.SizeF(6.0F, 13.0F);
   AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
   ClientSize = new System.Drawing.Size(943, 676);
   Controls.Add(dockPanel);
   Controls.Add(menuStrip1);
   DoubleBuffered = true;
   Icon = (System.Drawing.Icon)componentResourceManager.GetObject("$this.Icon");
   IsMdiContainer = true;
   Name = "Form1";
   StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
   Text = "Intellitrack";
   WindowState = System.Windows.Forms.FormWindowState.Maximized;
   Shown += new System.EventHandler(Form1_Shown);
   Layout += new System.Windows.Forms.LayoutEventHandler(Form1_Layout);
   menuStrip1.ResumeLayout(false);
   menuStrip1.PerformLayout();
   ResumeLayout(false);
   PerformLayout();
 }
Пример #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
     this.menuStrip                             = new System.Windows.Forms.MenuStrip();
     this.tsiFile                               = new System.Windows.Forms.ToolStripMenuItem();
     this.tsiFileNewProject                     = new System.Windows.Forms.ToolStripMenuItem();
     this.tsiFileOpenProject                    = new System.Windows.Forms.ToolStripMenuItem();
     this.tsiFileSaveProject                    = new System.Windows.Forms.ToolStripMenuItem();
     this.tsiFileCloseProject                   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2                   = new System.Windows.Forms.ToolStripSeparator();
     this.tsiFileOpenFile                       = new System.Windows.Forms.ToolStripMenuItem();
     this.tsiFileSave                           = new System.Windows.Forms.ToolStripMenuItem();
     this.tsiFileSaveAs                         = new System.Windows.Forms.ToolStripMenuItem();
     this.tsiFileSaveAll                        = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4                   = new System.Windows.Forms.ToolStripSeparator();
     this.tsiFileRecentProjects                 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1                   = new System.Windows.Forms.ToolStripSeparator();
     this.tsiFileExit                           = new System.Windows.Forms.ToolStripMenuItem();
     this.tsiEdit                               = new System.Windows.Forms.ToolStripMenuItem();
     this.goToNextLocationToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.goToPreviousLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.viewToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem                = new System.Windows.Forms.ToolStripMenuItem();
     this.pluginsToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.sourceControlToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.windowToolStripMenuItem               = new System.Windows.Forms.ToolStripMenuItem();
     this.closeAllDocumentsToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.findFileInProjectToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3                   = new System.Windows.Forms.ToolStripSeparator();
     this.helpToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem                = new System.Windows.Forms.ToolStripMenuItem();
     this.projectWebSiteToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.reportBugToolStripMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.requestFeatureToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip                           = new System.Windows.Forms.StatusStrip();
     this.statusMessage                         = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar                  = new System.Windows.Forms.ToolStripProgressBar();
     this.saveProjectDialog                     = new System.Windows.Forms.SaveFileDialog();
     this.openProjectDialog                     = new System.Windows.Forms.OpenFileDialog();
     this.statusMessageTimer                    = new System.Windows.Forms.Timer(this.components);
     this.saveDocumentDialog                    = new System.Windows.Forms.SaveFileDialog();
     this.openDocumentDialog                    = new System.Windows.Forms.OpenFileDialog();
     this.toolStripPanelTop                     = new System.Windows.Forms.ToolStripPanel();
     this.toolStripPanelBottom                  = new System.Windows.Forms.ToolStripPanel();
     this.toolStripPanelLeft                    = new System.Windows.Forms.ToolStripPanel();
     this.toolStripPanelRight                   = new System.Windows.Forms.ToolStripPanel();
     this.mDockPanel                            = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.notifyIcon                            = new System.Windows.Forms.NotifyIcon(this.components);
     this.persistWindowComponent                = new Tilde.Framework.View.PersistWindowComponent(this.components);
     this.menuStrip.SuspendLayout();
     this.statusStrip.SuspendLayout();
     this.toolStripPanelTop.SuspendLayout();
     this.toolStripPanelBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip
     //
     this.menuStrip.BackColor = System.Drawing.SystemColors.Control;
     this.menuStrip.Dock      = System.Windows.Forms.DockStyle.None;
     this.menuStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible;
     this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsiFile,
         this.tsiEdit,
         this.viewToolStripMenuItem,
         this.toolsToolStripMenuItem,
         this.windowToolStripMenuItem,
         this.helpToolStripMenuItem
     });
     this.menuStrip.Location          = new System.Drawing.Point(0, 0);
     this.menuStrip.MdiWindowListItem = this.windowToolStripMenuItem;
     this.menuStrip.Name     = "menuStrip";
     this.menuStrip.Size     = new System.Drawing.Size(843, 24);
     this.menuStrip.TabIndex = 0;
     this.menuStrip.Text     = "menuStrip1";
     //
     // tsiFile
     //
     this.tsiFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsiFileNewProject,
         this.tsiFileOpenProject,
         this.tsiFileSaveProject,
         this.tsiFileCloseProject,
         this.toolStripSeparator2,
         this.tsiFileOpenFile,
         this.tsiFileSave,
         this.tsiFileSaveAs,
         this.tsiFileSaveAll,
         this.toolStripSeparator4,
         this.tsiFileRecentProjects,
         this.toolStripSeparator1,
         this.tsiFileExit
     });
     this.tsiFile.MergeIndex = 1;
     this.tsiFile.Name       = "tsiFile";
     this.tsiFile.Size       = new System.Drawing.Size(35, 20);
     this.tsiFile.Text       = "&File";
     //
     // tsiFileNewProject
     //
     this.tsiFileNewProject.Name = "tsiFileNewProject";
     this.tsiFileNewProject.Size = new System.Drawing.Size(180, 22);
     this.tsiFileNewProject.Text = "New Project";
     //
     // tsiFileOpenProject
     //
     this.tsiFileOpenProject.Name   = "tsiFileOpenProject";
     this.tsiFileOpenProject.Size   = new System.Drawing.Size(180, 22);
     this.tsiFileOpenProject.Text   = "Open Project...";
     this.tsiFileOpenProject.Click += new System.EventHandler(this.tsiFileOpenProject_Click);
     //
     // tsiFileSaveProject
     //
     this.tsiFileSaveProject.Name   = "tsiFileSaveProject";
     this.tsiFileSaveProject.Size   = new System.Drawing.Size(180, 22);
     this.tsiFileSaveProject.Text   = "Save Project";
     this.tsiFileSaveProject.Click += new System.EventHandler(this.tsiFileSaveProject_Click);
     //
     // tsiFileCloseProject
     //
     this.tsiFileCloseProject.Name   = "tsiFileCloseProject";
     this.tsiFileCloseProject.Size   = new System.Drawing.Size(180, 22);
     this.tsiFileCloseProject.Text   = "Close Project";
     this.tsiFileCloseProject.Click += new System.EventHandler(this.tsiFileCloseProject_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.MergeIndex = 1;
     this.toolStripSeparator2.Name       = "toolStripSeparator2";
     this.toolStripSeparator2.Size       = new System.Drawing.Size(177, 6);
     //
     // tsiFileOpenFile
     //
     this.tsiFileOpenFile.Name         = "tsiFileOpenFile";
     this.tsiFileOpenFile.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.tsiFileOpenFile.Size         = new System.Drawing.Size(180, 22);
     this.tsiFileOpenFile.Text         = "&Open File...";
     this.tsiFileOpenFile.Click       += new System.EventHandler(this.tsiFileOpenFile_Click);
     //
     // tsiFileSave
     //
     this.tsiFileSave.Name         = "tsiFileSave";
     this.tsiFileSave.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.tsiFileSave.Size         = new System.Drawing.Size(180, 22);
     this.tsiFileSave.Text         = "&Save";
     this.tsiFileSave.Click       += new System.EventHandler(this.tsiFileSave_Click);
     //
     // tsiFileSaveAs
     //
     this.tsiFileSaveAs.Name   = "tsiFileSaveAs";
     this.tsiFileSaveAs.Size   = new System.Drawing.Size(180, 22);
     this.tsiFileSaveAs.Text   = "Save As...";
     this.tsiFileSaveAs.Click += new System.EventHandler(this.tsiFileSaveAs_Click);
     //
     // tsiFileSaveAll
     //
     this.tsiFileSaveAll.Name         = "tsiFileSaveAll";
     this.tsiFileSaveAll.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                                                                      | System.Windows.Forms.Keys.S)));
     this.tsiFileSaveAll.Size   = new System.Drawing.Size(180, 22);
     this.tsiFileSaveAll.Text   = "Save &All";
     this.tsiFileSaveAll.Click += new System.EventHandler(this.tsiFileSaveAll_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.MergeIndex = 2;
     this.toolStripSeparator4.Name       = "toolStripSeparator4";
     this.toolStripSeparator4.Size       = new System.Drawing.Size(177, 6);
     //
     // tsiFileRecentProjects
     //
     this.tsiFileRecentProjects.Name = "tsiFileRecentProjects";
     this.tsiFileRecentProjects.Size = new System.Drawing.Size(180, 22);
     this.tsiFileRecentProjects.Text = "Recent Projects";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
     //
     // tsiFileExit
     //
     this.tsiFileExit.Name         = "tsiFileExit";
     this.tsiFileExit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
     this.tsiFileExit.Size         = new System.Drawing.Size(180, 22);
     this.tsiFileExit.Text         = "E&xit";
     this.tsiFileExit.Click       += new System.EventHandler(this.tsiFileExit_Click);
     //
     // tsiEdit
     //
     this.tsiEdit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.goToNextLocationToolStripMenuItem,
         this.goToPreviousLocationToolStripMenuItem
     });
     this.tsiEdit.MergeIndex = 2;
     this.tsiEdit.Name       = "tsiEdit";
     this.tsiEdit.Size       = new System.Drawing.Size(37, 20);
     this.tsiEdit.Text       = "&Edit";
     //
     // goToNextLocationToolStripMenuItem
     //
     this.goToNextLocationToolStripMenuItem.Name         = "goToNextLocationToolStripMenuItem";
     this.goToNextLocationToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F8;
     this.goToNextLocationToolStripMenuItem.Size         = new System.Drawing.Size(233, 22);
     this.goToNextLocationToolStripMenuItem.Text         = "Go to next location";
     this.goToNextLocationToolStripMenuItem.Click       += new System.EventHandler(this.goToNextLocationToolStripMenuItem_Click);
     //
     // goToPreviousLocationToolStripMenuItem
     //
     this.goToPreviousLocationToolStripMenuItem.Name         = "goToPreviousLocationToolStripMenuItem";
     this.goToPreviousLocationToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F8)));
     this.goToPreviousLocationToolStripMenuItem.Size         = new System.Drawing.Size(233, 22);
     this.goToPreviousLocationToolStripMenuItem.Text         = "Go to previous location";
     this.goToPreviousLocationToolStripMenuItem.Click       += new System.EventHandler(this.goToPreviousLocationToolStripMenuItem_Click);
     //
     // viewToolStripMenuItem
     //
     this.viewToolStripMenuItem.MergeIndex       = 3;
     this.viewToolStripMenuItem.Name             = "viewToolStripMenuItem";
     this.viewToolStripMenuItem.Size             = new System.Drawing.Size(41, 20);
     this.viewToolStripMenuItem.Text             = "&View";
     this.viewToolStripMenuItem.DropDownOpening += new System.EventHandler(this.viewToolStripMenuItem_DropDownOpening);
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.pluginsToolStripMenuItem,
         this.optionsToolStripMenuItem,
         this.sourceControlToolStripMenuItem
     });
     this.toolsToolStripMenuItem.MergeIndex = 4;
     this.toolsToolStripMenuItem.Name       = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size       = new System.Drawing.Size(44, 20);
     this.toolsToolStripMenuItem.Text       = "Tools";
     //
     // pluginsToolStripMenuItem
     //
     this.pluginsToolStripMenuItem.Name   = "pluginsToolStripMenuItem";
     this.pluginsToolStripMenuItem.Size   = new System.Drawing.Size(157, 22);
     this.pluginsToolStripMenuItem.Text   = "Plugins...";
     this.pluginsToolStripMenuItem.Click += new System.EventHandler(this.pluginsToolStripMenuItem_Click);
     //
     // optionsToolStripMenuItem
     //
     this.optionsToolStripMenuItem.Name   = "optionsToolStripMenuItem";
     this.optionsToolStripMenuItem.Size   = new System.Drawing.Size(157, 22);
     this.optionsToolStripMenuItem.Text   = "Options...";
     this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
     //
     // sourceControlToolStripMenuItem
     //
     this.sourceControlToolStripMenuItem.Name   = "sourceControlToolStripMenuItem";
     this.sourceControlToolStripMenuItem.Size   = new System.Drawing.Size(157, 22);
     this.sourceControlToolStripMenuItem.Text   = "Source Control...";
     this.sourceControlToolStripMenuItem.Click += new System.EventHandler(this.sourceControlToolStripMenuItem_Click);
     //
     // windowToolStripMenuItem
     //
     this.windowToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.closeAllDocumentsToolStripMenuItem,
         this.findFileInProjectToolStripMenuItem,
         this.toolStripSeparator3
     });
     this.windowToolStripMenuItem.MergeIndex = 5;
     this.windowToolStripMenuItem.Name       = "windowToolStripMenuItem";
     this.windowToolStripMenuItem.Size       = new System.Drawing.Size(57, 20);
     this.windowToolStripMenuItem.Text       = "Window";
     //
     // closeAllDocumentsToolStripMenuItem
     //
     this.closeAllDocumentsToolStripMenuItem.Name   = "closeAllDocumentsToolStripMenuItem";
     this.closeAllDocumentsToolStripMenuItem.Size   = new System.Drawing.Size(239, 22);
     this.closeAllDocumentsToolStripMenuItem.Text   = "Close All Documents";
     this.closeAllDocumentsToolStripMenuItem.Click += new System.EventHandler(this.closeAllDocumentsToolStripMenuItem_Click);
     //
     // findFileInProjectToolStripMenuItem
     //
     this.findFileInProjectToolStripMenuItem.Name         = "findFileInProjectToolStripMenuItem";
     this.findFileInProjectToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.Shift)
                                                                                          | System.Windows.Forms.Keys.O)));
     this.findFileInProjectToolStripMenuItem.Size   = new System.Drawing.Size(239, 22);
     this.findFileInProjectToolStripMenuItem.Text   = "Find File in Project...";
     this.findFileInProjectToolStripMenuItem.Click += new System.EventHandler(this.findFileInProjectToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(236, 6);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.aboutToolStripMenuItem,
         this.projectWebSiteToolStripMenuItem,
         this.reportBugToolStripMenuItem,
         this.requestFeatureToolStripMenuItem
     });
     this.helpToolStripMenuItem.MergeAction = System.Windows.Forms.MergeAction.Insert;
     this.helpToolStripMenuItem.MergeIndex  = 6;
     this.helpToolStripMenuItem.Name        = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size        = new System.Drawing.Size(40, 20);
     this.helpToolStripMenuItem.Text        = "Help";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name   = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size   = new System.Drawing.Size(167, 22);
     this.aboutToolStripMenuItem.Text   = "About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // projectWebSiteToolStripMenuItem
     //
     this.projectWebSiteToolStripMenuItem.Name   = "projectWebSiteToolStripMenuItem";
     this.projectWebSiteToolStripMenuItem.Size   = new System.Drawing.Size(167, 22);
     this.projectWebSiteToolStripMenuItem.Text   = "Project Web Site...";
     this.projectWebSiteToolStripMenuItem.Click += new System.EventHandler(this.projectWebSiteToolStripMenuItem_Click);
     //
     // reportBugToolStripMenuItem
     //
     this.reportBugToolStripMenuItem.Name   = "reportBugToolStripMenuItem";
     this.reportBugToolStripMenuItem.Size   = new System.Drawing.Size(167, 22);
     this.reportBugToolStripMenuItem.Text   = "Report Bug...";
     this.reportBugToolStripMenuItem.Click += new System.EventHandler(this.reportBugToolStripMenuItem_Click);
     //
     // requestFeatureToolStripMenuItem
     //
     this.requestFeatureToolStripMenuItem.Name   = "requestFeatureToolStripMenuItem";
     this.requestFeatureToolStripMenuItem.Size   = new System.Drawing.Size(167, 22);
     this.requestFeatureToolStripMenuItem.Text   = "Request Feature...";
     this.requestFeatureToolStripMenuItem.Click += new System.EventHandler(this.requestFeatureToolStripMenuItem_Click);
     //
     // statusStrip
     //
     this.statusStrip.Dock = System.Windows.Forms.DockStyle.None;
     this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.statusMessage,
         this.toolStripProgressBar
     });
     this.statusStrip.Location = new System.Drawing.Point(0, 0);
     this.statusStrip.Name     = "statusStrip";
     this.statusStrip.Size     = new System.Drawing.Size(843, 22);
     this.statusStrip.TabIndex = 1;
     this.statusStrip.Text     = "statusStrip1";
     //
     // statusMessage
     //
     this.statusMessage.Name      = "statusMessage";
     this.statusMessage.Size      = new System.Drawing.Size(828, 17);
     this.statusMessage.Spring    = true;
     this.statusMessage.Text      = "Status message";
     this.statusMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // toolStripProgressBar
     //
     this.toolStripProgressBar.Name    = "toolStripProgressBar";
     this.toolStripProgressBar.Size    = new System.Drawing.Size(100, 16);
     this.toolStripProgressBar.Visible = false;
     //
     // saveProjectDialog
     //
     this.saveProjectDialog.DefaultExt = "vcproj";
     this.saveProjectDialog.Filter     = "Visual Studio Project Files (*.vcproj)|*.vcproj|XML Project Files (*.xml)|*.xml|A" +
                                         "ll Files (*.*)|*.*";
     this.saveProjectDialog.RestoreDirectory = true;
     this.saveProjectDialog.Title            = "Save Project";
     //
     // openProjectDialog
     //
     this.openProjectDialog.DefaultExt = "vcproj";
     this.openProjectDialog.Filter     = "Visual Studio Project Files (*.vcproj)|*.vcproj|XML Project Files (*.xml)|*.xml|A" +
                                         "ll Files (*.*)|*.*";
     this.openProjectDialog.RestoreDirectory = true;
     //
     // statusMessageTimer
     //
     this.statusMessageTimer.Tick += new System.EventHandler(this.statusMessageTimer_Tick);
     //
     // saveDocumentDialog
     //
     this.saveDocumentDialog.RestoreDirectory             = true;
     this.saveDocumentDialog.SupportMultiDottedExtensions = true;
     //
     // openDocumentDialog
     //
     this.openDocumentDialog.Multiselect                  = true;
     this.openDocumentDialog.RestoreDirectory             = true;
     this.openDocumentDialog.SupportMultiDottedExtensions = true;
     //
     // toolStripPanelTop
     //
     this.toolStripPanelTop.Controls.Add(this.menuStrip);
     this.toolStripPanelTop.Dock        = System.Windows.Forms.DockStyle.Top;
     this.toolStripPanelTop.Location    = new System.Drawing.Point(0, 0);
     this.toolStripPanelTop.Name        = "toolStripPanelTop";
     this.toolStripPanelTop.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.toolStripPanelTop.RowMargin   = new System.Windows.Forms.Padding(3, 0, 0, 0);
     this.toolStripPanelTop.Size        = new System.Drawing.Size(843, 24);
     //
     // toolStripPanelBottom
     //
     this.toolStripPanelBottom.Controls.Add(this.statusStrip);
     this.toolStripPanelBottom.Dock        = System.Windows.Forms.DockStyle.Bottom;
     this.toolStripPanelBottom.Location    = new System.Drawing.Point(0, 372);
     this.toolStripPanelBottom.Name        = "toolStripPanelBottom";
     this.toolStripPanelBottom.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.toolStripPanelBottom.RowMargin   = new System.Windows.Forms.Padding(3, 0, 0, 0);
     this.toolStripPanelBottom.Size        = new System.Drawing.Size(843, 22);
     //
     // toolStripPanelLeft
     //
     this.toolStripPanelLeft.Dock        = System.Windows.Forms.DockStyle.Left;
     this.toolStripPanelLeft.Location    = new System.Drawing.Point(0, 24);
     this.toolStripPanelLeft.Name        = "toolStripPanelLeft";
     this.toolStripPanelLeft.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.toolStripPanelLeft.RowMargin   = new System.Windows.Forms.Padding(0, 3, 0, 0);
     this.toolStripPanelLeft.Size        = new System.Drawing.Size(0, 348);
     //
     // toolStripPanelRight
     //
     this.toolStripPanelRight.Dock        = System.Windows.Forms.DockStyle.Right;
     this.toolStripPanelRight.Location    = new System.Drawing.Point(843, 24);
     this.toolStripPanelRight.Name        = "toolStripPanelRight";
     this.toolStripPanelRight.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.toolStripPanelRight.RowMargin   = new System.Windows.Forms.Padding(0, 3, 0, 0);
     this.toolStripPanelRight.Size        = new System.Drawing.Size(0, 348);
     //
     // mDockPanel
     //
     this.mDockPanel.ActiveAutoHideContent = null;
     this.mDockPanel.Dock                   = System.Windows.Forms.DockStyle.Fill;
     this.mDockPanel.Font                   = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.mDockPanel.Location               = new System.Drawing.Point(0, 0);
     this.mDockPanel.Name                   = "mDockPanel";
     this.mDockPanel.Size                   = new System.Drawing.Size(843, 394);
     this.mDockPanel.TabIndex               = 3;
     this.mDockPanel.ActiveContentChanged  += new System.EventHandler(this.mDockPanel_ActiveContentChanged);
     this.mDockPanel.ContentAdded          += new System.EventHandler <WeifenLuo.WinFormsUI.Docking.DockContentEventArgs>(this.mDockPanel_ContentAdded);
     this.mDockPanel.ActiveDocumentChanged += new System.EventHandler(this.mDockPanel_ActiveDocumentChanged);
     this.mDockPanel.ContentRemoved        += new System.EventHandler <WeifenLuo.WinFormsUI.Docking.DockContentEventArgs>(this.mDockPanel_ContentRemoved);
     //
     // notifyIcon
     //
     this.notifyIcon.Text               = "Notify Icon";
     this.notifyIcon.Visible            = true;
     this.notifyIcon.BalloonTipClicked += new System.EventHandler(this.notifyIcon_BalloonTipClicked);
     this.notifyIcon.DoubleClick       += new System.EventHandler(this.notifyIcon_DoubleClick);
     //
     // persistWindowComponent
     //
     this.persistWindowComponent.Form        = this;
     this.persistWindowComponent.RegistryKey = "MainWindow";
     //
     // MainWindow
     //
     this.AllowDrop           = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(843, 394);
     this.Controls.Add(this.toolStripPanelRight);
     this.Controls.Add(this.toolStripPanelLeft);
     this.Controls.Add(this.toolStripPanelBottom);
     this.Controls.Add(this.toolStripPanelTop);
     this.Controls.Add(this.mDockPanel);
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.MainMenuStrip  = this.menuStrip;
     this.Name           = "MainWindow";
     this.Text           = "Tilde";
     this.Load          += new System.EventHandler(this.MainWindow_Load);
     this.DragDrop      += new System.Windows.Forms.DragEventHandler(this.MainWindow_DragDrop);
     this.DragEnter     += new System.Windows.Forms.DragEventHandler(this.MainWindow_DragEnter);
     this.FormClosing   += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
     this.menuStrip.ResumeLayout(false);
     this.menuStrip.PerformLayout();
     this.statusStrip.ResumeLayout(false);
     this.statusStrip.PerformLayout();
     this.toolStripPanelTop.ResumeLayout(false);
     this.toolStripPanelTop.PerformLayout();
     this.toolStripPanelBottom.ResumeLayout(false);
     this.toolStripPanelBottom.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #16
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.toolStrip = new System.Windows.Forms.ToolStrip();
     this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator17 = new System.Windows.Forms.ToolStripSeparator();
     this.undoToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.redoToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolIncremental = new ScintillaNet.ToolStripIncrementalSearcher();
     this.menuStrip = new System.Windows.Forms.MenuStrip();
     this.editToolStripMenu = new System.Windows.Forms.ToolStripMenuItem();
     this.undoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.redoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.findAndReplaceStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.replaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findInFilesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.replaceInFilesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.goToToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.bookmarksToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toggleBookmarkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.previosBookmarkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.nextBookmarkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.clearBookmarsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.advancedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.makeUpperCaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.makeLowerCaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.commentStreamToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.commentLineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.uncommentLineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.toolStrip.SuspendLayout();
     this.menuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // openFileDialog
     //
     this.openFileDialog.FileName = "openFileDialog";
     //
     // toolStrip
     //
     this.toolStrip.BackColor = System.Drawing.Color.White;
     this.toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cutToolStripButton,
     this.copyToolStripButton,
     this.pasteToolStripButton,
     this.toolStripSeparator17,
     this.undoToolStripButton,
     this.redoToolStripButton,
     this.toolStripSeparator5,
     this.toolIncremental});
     this.toolStrip.Location = new System.Drawing.Point(0, 24);
     this.toolStrip.Name = "toolStrip";
     this.toolStrip.Padding = new System.Windows.Forms.Padding(10, 0, 1, 0);
     this.toolStrip.Size = new System.Drawing.Size(593, 31);
     this.toolStrip.TabIndex = 22;
     //
     // cutToolStripButton
     //
     this.cutToolStripButton.AutoSize = false;
     this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.cutToolStripButton.Image = global::Krea.Properties.Resources.cutIcon;
     this.cutToolStripButton.Name = "cutToolStripButton";
     this.cutToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.cutToolStripButton.Text = "Cut (Ctrl+X)";
     this.cutToolStripButton.Click += new System.EventHandler(this.cutToolStripMenuItem_Click);
     //
     // copyToolStripButton
     //
     this.copyToolStripButton.AutoSize = false;
     this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.copyToolStripButton.Image = global::Krea.Properties.Resources.copyIcon;
     this.copyToolStripButton.Name = "copyToolStripButton";
     this.copyToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.copyToolStripButton.Text = "Copy (Ctrl+C)";
     this.copyToolStripButton.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
     //
     // pasteToolStripButton
     //
     this.pasteToolStripButton.AutoSize = false;
     this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.pasteToolStripButton.Image = global::Krea.Properties.Resources.pasteIcon;
     this.pasteToolStripButton.Name = "pasteToolStripButton";
     this.pasteToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.pasteToolStripButton.Text = "Paste (Ctrl+V)";
     this.pasteToolStripButton.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
     //
     // toolStripSeparator17
     //
     this.toolStripSeparator17.Name = "toolStripSeparator17";
     this.toolStripSeparator17.Size = new System.Drawing.Size(6, 31);
     //
     // undoToolStripButton
     //
     this.undoToolStripButton.AutoSize = false;
     this.undoToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.undoToolStripButton.Image = global::Krea.Properties.Resources.flecheGaucheIcon;
     this.undoToolStripButton.Name = "undoToolStripButton";
     this.undoToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.undoToolStripButton.Text = "Undo (Ctrl+Z)";
     this.undoToolStripButton.Click += new System.EventHandler(this.undoToolStripMenuItem_Click);
     //
     // redoToolStripButton
     //
     this.redoToolStripButton.AutoSize = false;
     this.redoToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.redoToolStripButton.Image = global::Krea.Properties.Resources.flecheDroiteIcon;
     this.redoToolStripButton.Name = "redoToolStripButton";
     this.redoToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.redoToolStripButton.Text = "Redo (Ctrl+Y)";
     this.redoToolStripButton.Click += new System.EventHandler(this.redoToolStripMenuItem_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 31);
     //
     // toolIncremental
     //
     this.toolIncremental.BackColor = System.Drawing.Color.Transparent;
     this.toolIncremental.Name = "toolIncremental";
     this.toolIncremental.Scintilla = null;
     this.toolIncremental.Size = new System.Drawing.Size(216, 28);
     //
     // menuStrip
     //
     this.menuStrip.BackColor = System.Drawing.Color.White;
     this.menuStrip.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.editToolStripMenu});
     this.menuStrip.Location = new System.Drawing.Point(0, 0);
     this.menuStrip.Name = "menuStrip";
     this.menuStrip.Padding = new System.Windows.Forms.Padding(4, 2, 0, 2);
     this.menuStrip.Size = new System.Drawing.Size(593, 24);
     this.menuStrip.TabIndex = 21;
     this.menuStrip.Text = "menuStrip1";
     //
     // editToolStripMenu
     //
     this.editToolStripMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.undoToolStripMenuItem,
     this.redoToolStripMenuItem,
     this.toolStripSeparator3,
     this.cutToolStripMenuItem,
     this.copyToolStripMenuItem,
     this.pasteToolStripMenuItem,
     this.toolStripSeparator4,
     this.selectAllToolStripMenuItem,
     this.toolStripSeparator6,
     this.findAndReplaceStripMenuItem,
     this.goToToolStripMenuItem,
     this.toolStripSeparator7,
     this.bookmarksToolStripMenuItem,
     this.toolStripSeparator2,
     this.advancedToolStripMenuItem});
     this.editToolStripMenu.Name = "editToolStripMenu";
     this.editToolStripMenu.Size = new System.Drawing.Size(39, 20);
     this.editToolStripMenu.Text = "&Edit";
     //
     // undoToolStripMenuItem
     //
     this.undoToolStripMenuItem.Image = global::Krea.Properties.Resources.flecheGaucheIcon;
     this.undoToolStripMenuItem.Name = "undoToolStripMenuItem";
     this.undoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
     this.undoToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.undoToolStripMenuItem.Text = "&Undo";
     this.undoToolStripMenuItem.Click += new System.EventHandler(this.undoToolStripMenuItem_Click);
     //
     // redoToolStripMenuItem
     //
     this.redoToolStripMenuItem.Image = global::Krea.Properties.Resources.flecheDroiteIcon;
     this.redoToolStripMenuItem.Name = "redoToolStripMenuItem";
     this.redoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
     this.redoToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.redoToolStripMenuItem.Text = "&Redo";
     this.redoToolStripMenuItem.Click += new System.EventHandler(this.redoToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(161, 6);
     //
     // cutToolStripMenuItem
     //
     this.cutToolStripMenuItem.Image = global::Krea.Properties.Resources.cutIcon;
     this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
     this.cutToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
     this.cutToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.cutToolStripMenuItem.Text = "Cu&t";
     this.cutToolStripMenuItem.Click += new System.EventHandler(this.cutToolStripMenuItem_Click);
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Image = global::Krea.Properties.Resources.copyIcon;
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
     this.copyToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.copyToolStripMenuItem.Text = "&Copy";
     this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
     //
     // pasteToolStripMenuItem
     //
     this.pasteToolStripMenuItem.Image = global::Krea.Properties.Resources.pasteIcon;
     this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
     this.pasteToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
     this.pasteToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.pasteToolStripMenuItem.Text = "&Paste";
     this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(161, 6);
     //
     // selectAllToolStripMenuItem
     //
     this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
     this.selectAllToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
     this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.selectAllToolStripMenuItem.Text = "Select &All";
     this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(161, 6);
     //
     // findAndReplaceStripMenuItem
     //
     this.findAndReplaceStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.findToolStripMenuItem,
     this.replaceToolStripMenuItem,
     this.findInFilesToolStripMenuItem,
     this.replaceInFilesToolStripMenuItem});
     this.findAndReplaceStripMenuItem.Image = global::Krea.Properties.Resources.findIcon;
     this.findAndReplaceStripMenuItem.Name = "findAndReplaceStripMenuItem";
     this.findAndReplaceStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.findAndReplaceStripMenuItem.Text = "&Find and Replace";
     //
     // findToolStripMenuItem
     //
     this.findToolStripMenuItem.Name = "findToolStripMenuItem";
     this.findToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F)));
     this.findToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
     this.findToolStripMenuItem.Text = "&Find";
     this.findToolStripMenuItem.Click += new System.EventHandler(this.findToolStripMenuItem_Click);
     //
     // replaceToolStripMenuItem
     //
     this.replaceToolStripMenuItem.Name = "replaceToolStripMenuItem";
     this.replaceToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H)));
     this.replaceToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
     this.replaceToolStripMenuItem.Text = "&Replace";
     this.replaceToolStripMenuItem.Click += new System.EventHandler(this.replaceToolStripMenuItem_Click);
     //
     // findInFilesToolStripMenuItem
     //
     this.findInFilesToolStripMenuItem.Name = "findInFilesToolStripMenuItem";
     this.findInFilesToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
     this.findInFilesToolStripMenuItem.Text = "F&ind in Files";
     this.findInFilesToolStripMenuItem.Visible = false;
     this.findInFilesToolStripMenuItem.Click += new System.EventHandler(this.findInFilesToolStripMenuItem_Click);
     //
     // replaceInFilesToolStripMenuItem
     //
     this.replaceInFilesToolStripMenuItem.Name = "replaceInFilesToolStripMenuItem";
     this.replaceInFilesToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
     this.replaceInFilesToolStripMenuItem.Text = "Replace in File&s";
     this.replaceInFilesToolStripMenuItem.Visible = false;
     this.replaceInFilesToolStripMenuItem.Click += new System.EventHandler(this.replaceInFilesToolStripMenuItem_Click);
     //
     // goToToolStripMenuItem
     //
     this.goToToolStripMenuItem.Name = "goToToolStripMenuItem";
     this.goToToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.goToToolStripMenuItem.Text = "&Go To";
     this.goToToolStripMenuItem.Click += new System.EventHandler(this.goToToolStripMenuItem_Click);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(161, 6);
     //
     // bookmarksToolStripMenuItem
     //
     this.bookmarksToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toggleBookmarkToolStripMenuItem,
     this.previosBookmarkToolStripMenuItem,
     this.nextBookmarkToolStripMenuItem,
     this.clearBookmarsToolStripMenuItem});
     this.bookmarksToolStripMenuItem.Name = "bookmarksToolStripMenuItem";
     this.bookmarksToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.bookmarksToolStripMenuItem.Text = "Breakpoint";
     //
     // toggleBookmarkToolStripMenuItem
     //
     this.toggleBookmarkToolStripMenuItem.Name = "toggleBookmarkToolStripMenuItem";
     this.toggleBookmarkToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
     this.toggleBookmarkToolStripMenuItem.Text = "&Toggle Breakpoint";
     this.toggleBookmarkToolStripMenuItem.Click += new System.EventHandler(this.toggleBookmarkToolStripMenuItem_Click);
     //
     // previosBookmarkToolStripMenuItem
     //
     this.previosBookmarkToolStripMenuItem.Name = "previosBookmarkToolStripMenuItem";
     this.previosBookmarkToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
     this.previosBookmarkToolStripMenuItem.Text = "&Previous Breakpoint";
     this.previosBookmarkToolStripMenuItem.Click += new System.EventHandler(this.previosBookmarkToolStripMenuItem_Click);
     //
     // nextBookmarkToolStripMenuItem
     //
     this.nextBookmarkToolStripMenuItem.Name = "nextBookmarkToolStripMenuItem";
     this.nextBookmarkToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
     this.nextBookmarkToolStripMenuItem.Text = "Next &Breakpoint";
     this.nextBookmarkToolStripMenuItem.Click += new System.EventHandler(this.nextBookmarkToolStripMenuItem_Click);
     //
     // clearBookmarsToolStripMenuItem
     //
     this.clearBookmarsToolStripMenuItem.Name = "clearBookmarsToolStripMenuItem";
     this.clearBookmarsToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
     this.clearBookmarsToolStripMenuItem.Text = "&Clear Breakpoint";
     this.clearBookmarsToolStripMenuItem.Click += new System.EventHandler(this.clearBookmarsToolStripMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(161, 6);
     //
     // advancedToolStripMenuItem
     //
     this.advancedToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.makeUpperCaseToolStripMenuItem,
     this.makeLowerCaseToolStripMenuItem,
     this.commentStreamToolStripMenuItem,
     this.commentLineToolStripMenuItem,
     this.uncommentLineToolStripMenuItem});
     this.advancedToolStripMenuItem.Name = "advancedToolStripMenuItem";
     this.advancedToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.advancedToolStripMenuItem.Text = "Ad&vanced";
     //
     // makeUpperCaseToolStripMenuItem
     //
     this.makeUpperCaseToolStripMenuItem.Name = "makeUpperCaseToolStripMenuItem";
     this.makeUpperCaseToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.makeUpperCaseToolStripMenuItem.Text = "Make &Upper Case";
     this.makeUpperCaseToolStripMenuItem.Click += new System.EventHandler(this.makeUpperCaseToolStripMenuItem_Click);
     //
     // makeLowerCaseToolStripMenuItem
     //
     this.makeLowerCaseToolStripMenuItem.Name = "makeLowerCaseToolStripMenuItem";
     this.makeLowerCaseToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.makeLowerCaseToolStripMenuItem.Text = "Make &Lower Case";
     this.makeLowerCaseToolStripMenuItem.Click += new System.EventHandler(this.makeLowerCaseToolStripMenuItem_Click);
     //
     // commentStreamToolStripMenuItem
     //
     this.commentStreamToolStripMenuItem.Name = "commentStreamToolStripMenuItem";
     this.commentStreamToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.commentStreamToolStripMenuItem.Text = "Comment (&Stream)";
     this.commentStreamToolStripMenuItem.Click += new System.EventHandler(this.commentStreamToolStripMenuItem_Click);
     //
     // commentLineToolStripMenuItem
     //
     this.commentLineToolStripMenuItem.Name = "commentLineToolStripMenuItem";
     this.commentLineToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.commentLineToolStripMenuItem.Text = "&Comment (Line)";
     this.commentLineToolStripMenuItem.Click += new System.EventHandler(this.commentLineToolStripMenuItem_Click);
     //
     // uncommentLineToolStripMenuItem
     //
     this.uncommentLineToolStripMenuItem.Name = "uncommentLineToolStripMenuItem";
     this.uncommentLineToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.uncommentLineToolStripMenuItem.Text = "&Uncomment (Line)";
     this.uncommentLineToolStripMenuItem.Click += new System.EventHandler(this.uncommentLineToolStripMenuItem_Click);
     //
     // dockPanel
     //
     this.dockPanel.ActiveAutoHideContent = null;
     this.dockPanel.AllowEndUserNestedDocking = false;
     this.dockPanel.AutoSize = true;
     this.dockPanel.BackColor = System.Drawing.Color.Transparent;
     this.dockPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dockPanel.DockBackColor = System.Drawing.Color.Transparent;
     this.dockPanel.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow;
     this.dockPanel.Font = new System.Drawing.Font("Tahoma", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.dockPanel.Location = new System.Drawing.Point(0, 55);
     this.dockPanel.Margin = new System.Windows.Forms.Padding(2);
     this.dockPanel.Name = "dockPanel";
     this.dockPanel.Size = new System.Drawing.Size(593, 281);
     dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight;
     autoHideStripSkin1.DockStripGradient = dockPanelGradient1;
     tabGradient1.EndColor = System.Drawing.SystemColors.Control;
     tabGradient1.StartColor = System.Drawing.SystemColors.Control;
     tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin1.TabGradient = tabGradient1;
     dockPanelSkin1.AutoHideStripSkin = autoHideStripSkin1;
     tabGradient2.EndColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.StartColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.ActiveTabGradient = tabGradient2;
     dockPanelGradient2.EndColor = System.Drawing.SystemColors.Control;
     dockPanelGradient2.StartColor = System.Drawing.SystemColors.Control;
     dockPaneStripGradient1.DockStripGradient = dockPanelGradient2;
     tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.InactiveTabGradient = tabGradient3;
     dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1;
     tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption;
     tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption;
     tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
     dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4;
     tabGradient5.EndColor = System.Drawing.SystemColors.Control;
     tabGradient5.StartColor = System.Drawing.SystemColors.Control;
     tabGradient5.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5;
     dockPanelGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3;
     tabGradient6.EndColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6;
     tabGradient7.EndColor = System.Drawing.Color.Transparent;
     tabGradient7.StartColor = System.Drawing.Color.Transparent;
     tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7;
     dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1;
     dockPanelSkin1.DockPaneStripSkin = dockPaneStripSkin1;
     this.dockPanel.Skin = dockPanelSkin1;
     this.dockPanel.TabIndex = 23;
     this.dockPanel.ActiveContentChanged += new System.EventHandler(this.dockPanel_ActiveContentChanged);
     //
     // SnippetEditor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.dockPanel);
     this.Controls.Add(this.toolStrip);
     this.Controls.Add(this.menuStrip);
     this.Name = "SnippetEditor";
     this.Size = new System.Drawing.Size(593, 336);
     this.Load += new System.EventHandler(this.CGEeditor_Load);
     this.MouseEnter += new System.EventHandler(this.CGEeditor_MouseEnter);
     this.MouseLeave += new System.EventHandler(this.CGEeditor_MouseLeave);
     this.toolStrip.ResumeLayout(false);
     this.toolStrip.PerformLayout();
     this.menuStrip.ResumeLayout(false);
     this.menuStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin                   dockPanelSkin1                   = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin               autoHideStripSkin1               = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient               dockPanelGradient1               = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient1                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin               dockPaneStripSkin1               = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient           dockPaneStripGradient1           = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient2                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient               dockPanelGradient2               = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient3                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient4                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient5                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient               dockPanelGradient3               = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient6                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient7                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     System.ComponentModel.ComponentResourceManager               resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.menuStrip = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem1        = new System.Windows.Forms.ToolStripMenuItem();
     this.newToolStripMenuItem1         = new System.Windows.Forms.ToolStripMenuItem();
     this.projectToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.solutionToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem1        = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2           = new System.Windows.Forms.ToolStripSeparator();
     this.saveToolStripMenuItem1        = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsToolStripMenuItem1      = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3           = new System.Windows.Forms.ToolStripSeparator();
     this.printToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.printPreviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4           = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem1        = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.undoToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.redoToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5           = new System.Windows.Forms.ToolStripSeparator();
     this.cutToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator6           = new System.Windows.Forms.ToolStripSeparator();
     this.selectAllToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.customizeToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.contentsToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.indexToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.searchToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator7           = new System.Windows.Forms.ToolStripSeparator();
     this.aboutToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip          = new System.Windows.Forms.StatusStrip();
     this.toolStrip            = new System.Windows.Forms.ToolStrip();
     this.newToolStripButton   = new System.Windows.Forms.ToolStripButton();
     this.openToolStripButton  = new System.Windows.Forms.ToolStripButton();
     this.saveToolStripButton  = new System.Windows.Forms.ToolStripButton();
     this.printToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator   = new System.Windows.Forms.ToolStripSeparator();
     this.cutToolStripButton   = new System.Windows.Forms.ToolStripButton();
     this.copyToolStripButton  = new System.Windows.Forms.ToolStripButton();
     this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1  = new System.Windows.Forms.ToolStripSeparator();
     this.helpToolStripButton  = new System.Windows.Forms.ToolStripButton();
     this.menuStrip.SuspendLayout();
     this.toolStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // dockPanel
     //
     this.dockPanel.ActiveAutoHideContent = null;
     this.dockPanel.Dock                                      = System.Windows.Forms.DockStyle.Fill;
     this.dockPanel.DockBackColor                             = System.Drawing.SystemColors.AppWorkspace;
     this.dockPanel.Location                                  = new System.Drawing.Point(0, 24);
     this.dockPanel.Name                                      = "dockPanel";
     this.dockPanel.Size                                      = new System.Drawing.Size(705, 514);
     dockPanelGradient1.EndColor                              = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient1.StartColor                            = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(122)))), ((int)(((byte)(204)))));
     autoHideStripSkin1.DockStripGradient                     = dockPanelGradient1;
     tabGradient1.EndColor                                    = System.Drawing.SystemColors.Control;
     tabGradient1.StartColor                                  = System.Drawing.SystemColors.Control;
     tabGradient1.TextColor                                   = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin1.TabGradient                           = tabGradient1;
     autoHideStripSkin1.TextFont                              = new System.Drawing.Font("Segoe UI", 9F);
     dockPanelSkin1.AutoHideStripSkin                         = autoHideStripSkin1;
     tabGradient2.EndColor                                    = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(122)))), ((int)(((byte)(204)))));
     tabGradient2.StartColor                                  = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(122)))), ((int)(((byte)(204)))));
     tabGradient2.TextColor                                   = System.Drawing.Color.White;
     dockPaneStripGradient1.ActiveTabGradient                 = tabGradient2;
     dockPanelGradient2.EndColor                              = System.Drawing.SystemColors.Control;
     dockPanelGradient2.StartColor                            = System.Drawing.SystemColors.Control;
     dockPaneStripGradient1.DockStripGradient                 = dockPanelGradient2;
     tabGradient3.EndColor                                    = System.Drawing.SystemColors.InactiveCaption;
     tabGradient3.StartColor                                  = System.Drawing.SystemColors.Control;
     tabGradient3.TextColor                                   = System.Drawing.SystemColors.GrayText;
     dockPaneStripGradient1.InactiveTabGradient               = tabGradient3;
     dockPaneStripSkin1.DocumentGradient                      = dockPaneStripGradient1;
     dockPaneStripSkin1.TextFont                              = new System.Drawing.Font("Segoe UI", 9F);
     tabGradient4.EndColor                                    = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(170)))), ((int)(((byte)(220)))));
     tabGradient4.LinearGradientMode                          = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient4.StartColor                                  = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(122)))), ((int)(((byte)(204)))));
     tabGradient4.TextColor                                   = System.Drawing.Color.White;
     dockPaneStripToolWindowGradient1.ActiveCaptionGradient   = tabGradient4;
     tabGradient5.EndColor                                    = System.Drawing.SystemColors.ControlLightLight;
     tabGradient5.StartColor                                  = System.Drawing.SystemColors.ControlLightLight;
     tabGradient5.TextColor                                   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(122)))), ((int)(((byte)(204)))));
     dockPaneStripToolWindowGradient1.ActiveTabGradient       = tabGradient5;
     dockPanelGradient3.EndColor                              = System.Drawing.SystemColors.Control;
     dockPanelGradient3.StartColor                            = System.Drawing.SystemColors.Control;
     dockPaneStripToolWindowGradient1.DockStripGradient       = dockPanelGradient3;
     tabGradient6.EndColor                                    = System.Drawing.SystemColors.ControlDark;
     tabGradient6.LinearGradientMode                          = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient6.StartColor                                  = System.Drawing.SystemColors.Control;
     tabGradient6.TextColor                                   = System.Drawing.SystemColors.GrayText;
     dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6;
     tabGradient7.EndColor                                    = System.Drawing.SystemColors.Control;
     tabGradient7.StartColor                                  = System.Drawing.SystemColors.Control;
     tabGradient7.TextColor                                   = System.Drawing.SystemColors.GrayText;
     dockPaneStripToolWindowGradient1.InactiveTabGradient     = tabGradient7;
     dockPaneStripSkin1.ToolWindowGradient                    = dockPaneStripToolWindowGradient1;
     dockPanelSkin1.DockPaneStripSkin                         = dockPaneStripSkin1;
     this.dockPanel.Skin                                      = dockPanelSkin1;
     this.dockPanel.TabIndex                                  = 1;
     //
     // menuStrip
     //
     this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem1,
         this.editToolStripMenuItem,
         this.toolsToolStripMenuItem,
         this.helpToolStripMenuItem
     });
     this.menuStrip.Location = new System.Drawing.Point(0, 0);
     this.menuStrip.Name     = "menuStrip";
     this.menuStrip.Size     = new System.Drawing.Size(705, 24);
     this.menuStrip.TabIndex = 3;
     this.menuStrip.Text     = "menuStrip1";
     //
     // fileToolStripMenuItem1
     //
     this.fileToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.newToolStripMenuItem1,
         this.openToolStripMenuItem1,
         this.toolStripSeparator2,
         this.saveToolStripMenuItem1,
         this.saveAsToolStripMenuItem1,
         this.toolStripSeparator3,
         this.printToolStripMenuItem,
         this.printPreviewToolStripMenuItem,
         this.toolStripSeparator4,
         this.exitToolStripMenuItem1
     });
     this.fileToolStripMenuItem1.Name = "fileToolStripMenuItem1";
     this.fileToolStripMenuItem1.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem1.Text = "&File";
     //
     // newToolStripMenuItem1
     //
     this.newToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.projectToolStripMenuItem,
         this.solutionToolStripMenuItem
     });
     this.newToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripMenuItem1.Image")));
     this.newToolStripMenuItem1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.newToolStripMenuItem1.Name = "newToolStripMenuItem1";
     this.newToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
     this.newToolStripMenuItem1.Text = "&New";
     //
     // projectToolStripMenuItem
     //
     this.projectToolStripMenuItem.Image        = ((System.Drawing.Image)(resources.GetObject("projectToolStripMenuItem.Image")));
     this.projectToolStripMenuItem.Name         = "projectToolStripMenuItem";
     this.projectToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
     this.projectToolStripMenuItem.Size         = new System.Drawing.Size(158, 22);
     this.projectToolStripMenuItem.Text         = "&Project";
     //
     // solutionToolStripMenuItem
     //
     this.solutionToolStripMenuItem.Image        = ((System.Drawing.Image)(resources.GetObject("solutionToolStripMenuItem.Image")));
     this.solutionToolStripMenuItem.Name         = "solutionToolStripMenuItem";
     this.solutionToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.solutionToolStripMenuItem.Size         = new System.Drawing.Size(158, 22);
     this.solutionToolStripMenuItem.Text         = "&Solution";
     this.solutionToolStripMenuItem.Click       += new System.EventHandler(this.solutionToolStripMenuItem_Click);
     //
     // openToolStripMenuItem1
     //
     this.openToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripMenuItem1.Image")));
     this.openToolStripMenuItem1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.openToolStripMenuItem1.Name         = "openToolStripMenuItem1";
     this.openToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.openToolStripMenuItem1.Size         = new System.Drawing.Size(152, 22);
     this.openToolStripMenuItem1.Text         = "&Open";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(149, 6);
     //
     // saveToolStripMenuItem1
     //
     this.saveToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripMenuItem1.Image")));
     this.saveToolStripMenuItem1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.saveToolStripMenuItem1.Name         = "saveToolStripMenuItem1";
     this.saveToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.saveToolStripMenuItem1.Size         = new System.Drawing.Size(152, 22);
     this.saveToolStripMenuItem1.Text         = "&Save";
     //
     // saveAsToolStripMenuItem1
     //
     this.saveAsToolStripMenuItem1.Name = "saveAsToolStripMenuItem1";
     this.saveAsToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
     this.saveAsToolStripMenuItem1.Text = "Save &As";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(149, 6);
     //
     // printToolStripMenuItem
     //
     this.printToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripMenuItem.Image")));
     this.printToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printToolStripMenuItem.Name         = "printToolStripMenuItem";
     this.printToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
     this.printToolStripMenuItem.Size         = new System.Drawing.Size(152, 22);
     this.printToolStripMenuItem.Text         = "&Print";
     //
     // printPreviewToolStripMenuItem
     //
     this.printPreviewToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("printPreviewToolStripMenuItem.Image")));
     this.printPreviewToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printPreviewToolStripMenuItem.Name = "printPreviewToolStripMenuItem";
     this.printPreviewToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.printPreviewToolStripMenuItem.Text = "Print Pre&view";
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(149, 6);
     //
     // exitToolStripMenuItem1
     //
     this.exitToolStripMenuItem1.Name = "exitToolStripMenuItem1";
     this.exitToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
     this.exitToolStripMenuItem1.Text = "E&xit";
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.undoToolStripMenuItem,
         this.redoToolStripMenuItem,
         this.toolStripSeparator5,
         this.cutToolStripMenuItem,
         this.copyToolStripMenuItem,
         this.pasteToolStripMenuItem,
         this.toolStripSeparator6,
         this.selectAllToolStripMenuItem
     });
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
     this.editToolStripMenuItem.Text = "&Edit";
     //
     // undoToolStripMenuItem
     //
     this.undoToolStripMenuItem.Name         = "undoToolStripMenuItem";
     this.undoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
     this.undoToolStripMenuItem.Size         = new System.Drawing.Size(144, 22);
     this.undoToolStripMenuItem.Text         = "&Undo";
     //
     // redoToolStripMenuItem
     //
     this.redoToolStripMenuItem.Name         = "redoToolStripMenuItem";
     this.redoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
     this.redoToolStripMenuItem.Size         = new System.Drawing.Size(144, 22);
     this.redoToolStripMenuItem.Text         = "&Redo";
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(141, 6);
     //
     // cutToolStripMenuItem
     //
     this.cutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripMenuItem.Image")));
     this.cutToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cutToolStripMenuItem.Name         = "cutToolStripMenuItem";
     this.cutToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
     this.cutToolStripMenuItem.Size         = new System.Drawing.Size(144, 22);
     this.cutToolStripMenuItem.Text         = "Cu&t";
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripMenuItem.Image")));
     this.copyToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.copyToolStripMenuItem.Name         = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
     this.copyToolStripMenuItem.Size         = new System.Drawing.Size(144, 22);
     this.copyToolStripMenuItem.Text         = "&Copy";
     //
     // pasteToolStripMenuItem
     //
     this.pasteToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripMenuItem.Image")));
     this.pasteToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.pasteToolStripMenuItem.Name         = "pasteToolStripMenuItem";
     this.pasteToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
     this.pasteToolStripMenuItem.Size         = new System.Drawing.Size(144, 22);
     this.pasteToolStripMenuItem.Text         = "&Paste";
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(141, 6);
     //
     // selectAllToolStripMenuItem
     //
     this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
     this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.selectAllToolStripMenuItem.Text = "Select &All";
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.customizeToolStripMenuItem,
         this.optionsToolStripMenuItem
     });
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.toolsToolStripMenuItem.Text = "&Tools";
     //
     // customizeToolStripMenuItem
     //
     this.customizeToolStripMenuItem.Name = "customizeToolStripMenuItem";
     this.customizeToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
     this.customizeToolStripMenuItem.Text = "&Customize";
     //
     // optionsToolStripMenuItem
     //
     this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
     this.optionsToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
     this.optionsToolStripMenuItem.Text = "&Options";
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.contentsToolStripMenuItem,
         this.indexToolStripMenuItem,
         this.searchToolStripMenuItem,
         this.toolStripSeparator7,
         this.aboutToolStripMenuItem
     });
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // contentsToolStripMenuItem
     //
     this.contentsToolStripMenuItem.Name = "contentsToolStripMenuItem";
     this.contentsToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.contentsToolStripMenuItem.Text = "&Contents";
     //
     // indexToolStripMenuItem
     //
     this.indexToolStripMenuItem.Name = "indexToolStripMenuItem";
     this.indexToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.indexToolStripMenuItem.Text = "&Index";
     //
     // searchToolStripMenuItem
     //
     this.searchToolStripMenuItem.Name = "searchToolStripMenuItem";
     this.searchToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.searchToolStripMenuItem.Text = "&Search";
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(119, 6);
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.aboutToolStripMenuItem.Text = "&About...";
     //
     // statusStrip
     //
     this.statusStrip.Location = new System.Drawing.Point(0, 516);
     this.statusStrip.Name     = "statusStrip";
     this.statusStrip.Size     = new System.Drawing.Size(705, 22);
     this.statusStrip.TabIndex = 4;
     this.statusStrip.Text     = "statusStrip1";
     //
     // toolStrip
     //
     this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.newToolStripButton,
         this.openToolStripButton,
         this.saveToolStripButton,
         this.printToolStripButton,
         this.toolStripSeparator,
         this.cutToolStripButton,
         this.copyToolStripButton,
         this.pasteToolStripButton,
         this.toolStripSeparator1,
         this.helpToolStripButton
     });
     this.toolStrip.Location = new System.Drawing.Point(0, 24);
     this.toolStrip.Name     = "toolStrip";
     this.toolStrip.Size     = new System.Drawing.Size(705, 25);
     this.toolStrip.TabIndex = 5;
     this.toolStrip.Text     = "toolStrip1";
     //
     // newToolStripButton
     //
     this.newToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.newToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
     this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.newToolStripButton.Name = "newToolStripButton";
     this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.newToolStripButton.Text = "&New";
     //
     // openToolStripButton
     //
     this.openToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.openToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
     this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.openToolStripButton.Name = "openToolStripButton";
     this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.openToolStripButton.Text = "&Open";
     //
     // saveToolStripButton
     //
     this.saveToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.saveToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
     this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.saveToolStripButton.Name = "saveToolStripButton";
     this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.saveToolStripButton.Text = "&Save";
     //
     // printToolStripButton
     //
     this.printToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.printToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
     this.printToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printToolStripButton.Name = "printToolStripButton";
     this.printToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.printToolStripButton.Text = "&Print";
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // cutToolStripButton
     //
     this.cutToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.cutToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
     this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cutToolStripButton.Name = "cutToolStripButton";
     this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.cutToolStripButton.Text = "C&ut";
     //
     // copyToolStripButton
     //
     this.copyToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.copyToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
     this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.copyToolStripButton.Name = "copyToolStripButton";
     this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.copyToolStripButton.Text = "&Copy";
     //
     // pasteToolStripButton
     //
     this.pasteToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.pasteToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
     this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.pasteToolStripButton.Name = "pasteToolStripButton";
     this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.pasteToolStripButton.Text = "&Paste";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // helpToolStripButton
     //
     this.helpToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.helpToolStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("helpToolStripButton.Image")));
     this.helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.helpToolStripButton.Name = "helpToolStripButton";
     this.helpToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.helpToolStripButton.Text = "He&lp";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(705, 538);
     this.Controls.Add(this.toolStrip);
     this.Controls.Add(this.statusStrip);
     this.Controls.Add(this.dockPanel);
     this.Controls.Add(this.menuStrip);
     this.IsMdiContainer = true;
     this.MainMenuStrip  = this.menuStrip;
     this.Name           = "MainForm";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "Embedded Designer Studio";
     this.WindowState    = System.Windows.Forms.FormWindowState.Maximized;
     this.Load          += new System.EventHandler(this.MainForm_Load);
     this.menuStrip.ResumeLayout(false);
     this.menuStrip.PerformLayout();
     this.toolStrip.ResumeLayout(false);
     this.toolStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #18
0
 public static void ShowEditor(Ares.Data.IElement element, Ares.Data.IModeElement modeElement, Ares.Data.IProject project, WeifenLuo.WinFormsUI.Docking.DockPanel parent)
 {
     ShowEditor(element, null, modeElement, project, parent);
 }
Пример #19
0
        private static void ShowEditor(Ares.Data.IElement element, Ares.Data.IGeneralElementContainer container, Ares.Data.IModeElement modeElement, Ares.Data.IProject project, WeifenLuo.WinFormsUI.Docking.DockPanel parent)
        {
            if (element == null)
            {
                return;
            }
            EditorBase existing = EditorRegistry.Instance.GetEditor(element.Id);

            if (existing != null)
            {
                existing.Activate();
            }
            else
            {
                if (element is Ares.Data.IRandomBackgroundMusicList)
                {
                    RandomPlaylistOrBGSoundChoiceEditor editor = new RandomPlaylistOrBGSoundChoiceEditor();
                    editor.SetPlaylist(element as Ares.Data.IRandomBackgroundMusicList, project);
                    ShowEditor(editor, parent);
                }
                else if (element is Ares.Data.IBackgroundSoundChoice)
                {
                    RandomPlaylistOrBGSoundChoiceEditor editor = new RandomPlaylistOrBGSoundChoiceEditor();
                    editor.SetBGSoundChoice(element as Ares.Data.IBackgroundSoundChoice, project);
                    ShowEditor(editor, parent);
                }
                else if (element is Ares.Data.ISequentialBackgroundMusicList)
                {
                    SequentialPlaylistEditor editor = new SequentialPlaylistEditor();
                    editor.SetPlaylist(element as Ares.Data.ISequentialBackgroundMusicList, project);
                    ShowEditor(editor, parent);
                }
                else if (element is Ares.Data.IMacro)
                {
                    MacroEditor editor = new MacroEditor();
                    editor.SetContainer(element as Ares.Data.IMacro, project);
                    ShowEditor(editor, parent);
                }
                else if (element is Ares.Data.IElementContainer <Ares.Data.IChoiceElement> )
                {
                    ChoiceContainerEditor editor = new ChoiceContainerEditor();
                    editor.SetContainer(element as Ares.Data.IElementContainer <Ares.Data.IChoiceElement>, project, false);
                    ShowEditor(editor, parent);
                }
                else if (element is Ares.Data.ISequentialContainer)
                {
                    SequentialContainerEditor editor = new SequentialContainerEditor();
                    editor.SetContainer(element as Ares.Data.ISequentialContainer, project);
                    ShowEditor(editor, parent);
                }
                else if (element is Ares.Data.IElementContainer <Ares.Data.IParallelElement> )
                {
                    ParallelContainerEditor editor = new ParallelContainerEditor();
                    editor.SetContainer(element as Ares.Data.IElementContainer <Ares.Data.IParallelElement>, project);
                    ShowEditor(editor, parent);
                }
                else if (element is Ares.Data.IMusicByTags)
                {
                    MusicByTagsEditor editor = new MusicByTagsEditor();
                    editor.SetElement(element as Ares.Data.IMusicByTags, project);
                    ShowEditor(editor, parent);
                }
                else if (element is Ares.Data.IReferenceElement)
                {
                    Ares.Data.IElement referencedElement = Ares.Data.DataModule.ElementRepository.GetElement((element as Ares.Data.IReferenceElement).ReferencedId);
                    if (referencedElement != null)
                    {
                        ShowEditor(referencedElement, container, project, parent);
                    }
                }
                else if (element is Ares.Data.IWebRadioElement)
                {
                    WebRadioEditor editor = new WebRadioEditor();
                    editor.SetElement(element as Ares.Data.IWebRadioElement, project, modeElement);
                    ShowEditor(editor, parent);
                }
                else if (element is Ares.Data.IFileElement)
                {
                    Ares.Data.IFileElement fileElement = (Ares.Data.IFileElement)element;
                    if (fileElement.FilePath.EndsWith(".m3u", StringComparison.InvariantCultureIgnoreCase) ||
                        fileElement.FilePath.EndsWith(".m3u8", StringComparison.InvariantCultureIgnoreCase) ||
                        fileElement.FilePath.EndsWith(".pls", StringComparison.InvariantCultureIgnoreCase))
                    {
                        String basePath = fileElement.SoundFileType == Data.SoundFileType.Music ? Ares.Settings.Settings.Instance.MusicDirectory : Ares.Settings.Settings.Instance.SoundDirectory;
                        String filePath = System.IO.Path.Combine(basePath, fileElement.FilePath);
                        System.Diagnostics.Process.Start(filePath);
                    }
                    else
                    {
                        FileElementEditor editor = new FileElementEditor();
                        editor.SetElement(element as Ares.Data.IFileElement, container, project);
                        ShowEditor(editor, parent);
                    }
                }
            }
        }
Пример #20
0
 public static void ShowEditor(Ares.Data.IElement element, Ares.Data.IGeneralElementContainer container, Ares.Data.IProject project, WeifenLuo.WinFormsUI.Docking.DockPanel parent)
 {
     ShowEditor(element, container, null, project, parent);
 }
Пример #21
0
 private static void ShowEditor(EditorBase editor, WeifenLuo.WinFormsUI.Docking.DockPanel parent)
 {
     editor.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.Document;
     editor.Show(parent);
 }
Пример #22
0
        public static void ShowTriggerEditor(Ares.Data.IModeElement element, Ares.Data.IProject project, WeifenLuo.WinFormsUI.Docking.DockPanel parent)
        {
            EditorBase existing = EditorRegistry.Instance.GetEditor(element.Id);

            if (existing != null)
            {
                existing.Activate();
            }
            else
            {
                TriggerEditor editor = new TriggerEditor(project);
                editor.SetElement(element);
                ShowEditor(editor, parent);
            }
        }
Пример #23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainView));
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openNewPluginToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.openListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.reloadXmlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
     this.recentFilelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteNewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.insertGroupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.insertRecordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.insertSubrecordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editSelectedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editHeaderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.addMasterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.expandCollapseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.expandAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.collapseAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.expandBranchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.collapseBranchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findInRecordsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.searchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.searchAdvancedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.hexModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.useNewSubrecordEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.lookupFormidsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.uTF8ModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.useWindowsClipboardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.noWindowsSoundsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.resetDockingWindowsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.eSMFilterSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.compressionSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.resetSettingsToDefaultsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.languageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.englishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.czechToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.frenchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.germanToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.italianToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.spanishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.russianToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.polishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveStringsFilesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reloadStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
     this.internalizeStringReferencesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.extractInternalStringsToTableToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyReferencedStringsFromMastersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cleanUnusedStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createStubsForMissingStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportStringsToFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.importStringsToFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.spellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.sanitizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.stripEDIDsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findDuplicatedFormIDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.dumpEDIDListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cleanEspToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findNonconformingRecordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.generateLLXmlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.makeEsmToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.martigensToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createRecordStructureXmlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mergeRecordsXMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reorderSubrecordsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newFormIDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newFormIDNoReferenceUpdateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reduceFormVersionsTo40ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.scriptsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.globalScriptsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.selectionScriptsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editScriptsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.endScriptsToolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.consoleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.outputWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reloadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.OpenModDialog = new System.Windows.Forms.OpenFileDialog();
     this.SaveModDialog = new System.Windows.Forms.SaveFileDialog();
     this.SaveEdidListDialog = new System.Windows.Forms.SaveFileDialog();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusProgressBar = new System.Windows.Forms.ToolStripProgressBar();
     this.toolStripStopProgress = new System.Windows.Forms.ToolStripStatusLabel();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.toolStripIncrFind = new System.Windows.Forms.ToolStrip();
     this.toolStripIncrFindCancel = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindText = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripIncrFindTypeFilter = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripIncrFindNext = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindPrev = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindRestart = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindType = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripIncrFindMatch = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindExact = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindWrapAround = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripIncrFindStatus = new System.Windows.Forms.ToolStripLabel();
     this.toolStripIncrInvalidRec = new System.Windows.Forms.ToolStrip();
     this.toolStripIncrInvalidRecCancel = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrInvalidRecText = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripIncrInvalidRecNext = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrInvalidRecPrev = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrInvalidRecRestart = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripIncrInvalidRecWrapAround = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripIncrInvalidRecStatus = new System.Windows.Forms.ToolStripLabel();
     this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.defaultGameSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.toolStripIncrFind.SuspendLayout();
     this.toolStripIncrInvalidRec.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.editToolStripMenuItem,
     this.optionsToolStripMenuItem,
     this.toolsToolStripMenuItem,
     this.spellsToolStripMenuItem,
     this.scriptsToolStripMenuItem});
     resources.ApplyResources(this.menuStrip1, "menuStrip1");
     this.menuStrip1.Name = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newToolStripMenuItem,
     this.openNewPluginToolStripMenuItem,
     this.saveToolStripMenuItem,
     this.saveAsToolStripMenuItem,
     this.closeToolStripMenuItem,
     this.closeAllToolStripMenuItem,
     this.toolStripSeparator2,
     this.openListToolStripMenuItem,
     this.saveListToolStripMenuItem,
     this.toolStripSeparator3,
     this.reloadXmlToolStripMenuItem,
     this.toolStripMenuItem1,
     this.recentFilelToolStripMenuItem,
     this.toolStripSeparator1,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     resources.ApplyResources(this.fileToolStripMenuItem, "fileToolStripMenuItem");
     //
     // newToolStripMenuItem
     //
     this.newToolStripMenuItem.Name = "newToolStripMenuItem";
     resources.ApplyResources(this.newToolStripMenuItem, "newToolStripMenuItem");
     this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
     //
     // openNewPluginToolStripMenuItem
     //
     this.openNewPluginToolStripMenuItem.Name = "openNewPluginToolStripMenuItem";
     resources.ApplyResources(this.openNewPluginToolStripMenuItem, "openNewPluginToolStripMenuItem");
     this.openNewPluginToolStripMenuItem.Click += new System.EventHandler(this.openNewPluginToolStripMenuItem_Click);
     //
     // saveToolStripMenuItem
     //
     this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
     resources.ApplyResources(this.saveToolStripMenuItem, "saveToolStripMenuItem");
     this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // saveAsToolStripMenuItem
     //
     this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
     resources.ApplyResources(this.saveAsToolStripMenuItem, "saveAsToolStripMenuItem");
     this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
     //
     // closeToolStripMenuItem
     //
     this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
     resources.ApplyResources(this.closeToolStripMenuItem, "closeToolStripMenuItem");
     this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
     //
     // closeAllToolStripMenuItem
     //
     this.closeAllToolStripMenuItem.Name = "closeAllToolStripMenuItem";
     resources.ApplyResources(this.closeAllToolStripMenuItem, "closeAllToolStripMenuItem");
     this.closeAllToolStripMenuItem.Click += new System.EventHandler(this.closeAllToolStripMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
     //
     // openListToolStripMenuItem
     //
     this.openListToolStripMenuItem.Name = "openListToolStripMenuItem";
     resources.ApplyResources(this.openListToolStripMenuItem, "openListToolStripMenuItem");
     this.openListToolStripMenuItem.Click += new System.EventHandler(this.openListToolStripMenuItem_Click);
     //
     // saveListToolStripMenuItem
     //
     this.saveListToolStripMenuItem.Name = "saveListToolStripMenuItem";
     resources.ApplyResources(this.saveListToolStripMenuItem, "saveListToolStripMenuItem");
     this.saveListToolStripMenuItem.Click += new System.EventHandler(this.saveListToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
     //
     // reloadXmlToolStripMenuItem
     //
     this.reloadXmlToolStripMenuItem.Name = "reloadXmlToolStripMenuItem";
     resources.ApplyResources(this.reloadXmlToolStripMenuItem, "reloadXmlToolStripMenuItem");
     this.reloadXmlToolStripMenuItem.Click += new System.EventHandler(this.reloadXmlToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     resources.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1");
     //
     // recentFilelToolStripMenuItem
     //
     this.recentFilelToolStripMenuItem.Name = "recentFilelToolStripMenuItem";
     resources.ApplyResources(this.recentFilelToolStripMenuItem, "recentFilelToolStripMenuItem");
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cutToolStripMenuItem,
     this.copyToolStripMenuItem,
     this.pasteToolStripMenuItem,
     this.pasteNewToolStripMenuItem,
     this.deleteToolStripMenuItem,
     this.insertGroupToolStripMenuItem,
     this.insertRecordToolStripMenuItem,
     this.insertSubrecordToolStripMenuItem,
     this.editSelectedToolStripMenuItem,
     this.editHeaderToolStripMenuItem,
     this.addMasterToolStripMenuItem,
     this.expandCollapseToolStripMenuItem,
     this.findInRecordsToolStripMenuItem,
     this.findToolStripMenuItem,
     this.searchToolStripMenuItem,
     this.searchAdvancedToolStripMenuItem});
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     resources.ApplyResources(this.editToolStripMenuItem, "editToolStripMenuItem");
     this.editToolStripMenuItem.DropDownOpening += new System.EventHandler(this.editToolStripMenuItem_DropDownOpening);
     //
     // cutToolStripMenuItem
     //
     resources.ApplyResources(this.cutToolStripMenuItem, "cutToolStripMenuItem");
     this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
     this.cutToolStripMenuItem.Click += new System.EventHandler(this.cutToolStripMenuItem_Click);
     //
     // copyToolStripMenuItem
     //
     resources.ApplyResources(this.copyToolStripMenuItem, "copyToolStripMenuItem");
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
     //
     // pasteToolStripMenuItem
     //
     resources.ApplyResources(this.pasteToolStripMenuItem, "pasteToolStripMenuItem");
     this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
     this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
     //
     // pasteNewToolStripMenuItem
     //
     resources.ApplyResources(this.pasteNewToolStripMenuItem, "pasteNewToolStripMenuItem");
     this.pasteNewToolStripMenuItem.Name = "pasteNewToolStripMenuItem";
     this.pasteNewToolStripMenuItem.Click += new System.EventHandler(this.pasteNewToolStripMenuItem_Click);
     //
     // deleteToolStripMenuItem
     //
     resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // insertGroupToolStripMenuItem
     //
     resources.ApplyResources(this.insertGroupToolStripMenuItem, "insertGroupToolStripMenuItem");
     this.insertGroupToolStripMenuItem.Name = "insertGroupToolStripMenuItem";
     this.insertGroupToolStripMenuItem.Click += new System.EventHandler(this.insertGroupToolStripMenuItem3_Click);
     //
     // insertRecordToolStripMenuItem
     //
     resources.ApplyResources(this.insertRecordToolStripMenuItem, "insertRecordToolStripMenuItem");
     this.insertRecordToolStripMenuItem.Name = "insertRecordToolStripMenuItem";
     this.insertRecordToolStripMenuItem.Click += new System.EventHandler(this.insertRecordToolStripMenuItem_Click);
     //
     // insertSubrecordToolStripMenuItem
     //
     resources.ApplyResources(this.insertSubrecordToolStripMenuItem, "insertSubrecordToolStripMenuItem");
     this.insertSubrecordToolStripMenuItem.Name = "insertSubrecordToolStripMenuItem";
     this.insertSubrecordToolStripMenuItem.Click += new System.EventHandler(this.insertSubrecordToolStripMenuItem_Click);
     //
     // editSelectedToolStripMenuItem
     //
     this.editSelectedToolStripMenuItem.Name = "editSelectedToolStripMenuItem";
     resources.ApplyResources(this.editSelectedToolStripMenuItem, "editSelectedToolStripMenuItem");
     this.editSelectedToolStripMenuItem.Click += new System.EventHandler(this.editSelectedToolStripMenuItem_Click);
     //
     // editHeaderToolStripMenuItem
     //
     this.editHeaderToolStripMenuItem.Name = "editHeaderToolStripMenuItem";
     resources.ApplyResources(this.editHeaderToolStripMenuItem, "editHeaderToolStripMenuItem");
     this.editHeaderToolStripMenuItem.Click += new System.EventHandler(this.editHeaderToolStripMenuItem_Click);
     //
     // addMasterToolStripMenuItem
     //
     this.addMasterToolStripMenuItem.Name = "addMasterToolStripMenuItem";
     resources.ApplyResources(this.addMasterToolStripMenuItem, "addMasterToolStripMenuItem");
     this.addMasterToolStripMenuItem.Click += new System.EventHandler(this.addMasterToolStripMenuItem_Click);
     //
     // expandCollapseToolStripMenuItem
     //
     this.expandCollapseToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.expandAllToolStripMenuItem,
     this.collapseAllToolStripMenuItem,
     this.expandBranchToolStripMenuItem,
     this.collapseBranchToolStripMenuItem});
     this.expandCollapseToolStripMenuItem.Name = "expandCollapseToolStripMenuItem";
     resources.ApplyResources(this.expandCollapseToolStripMenuItem, "expandCollapseToolStripMenuItem");
     //
     // expandAllToolStripMenuItem
     //
     this.expandAllToolStripMenuItem.Name = "expandAllToolStripMenuItem";
     resources.ApplyResources(this.expandAllToolStripMenuItem, "expandAllToolStripMenuItem");
     this.expandAllToolStripMenuItem.Click += new System.EventHandler(this.expandAllToolStripMenuItem_Click);
     //
     // collapseAllToolStripMenuItem
     //
     this.collapseAllToolStripMenuItem.Name = "collapseAllToolStripMenuItem";
     resources.ApplyResources(this.collapseAllToolStripMenuItem, "collapseAllToolStripMenuItem");
     this.collapseAllToolStripMenuItem.Click += new System.EventHandler(this.collapseAllToolStripMenuItem_Click);
     //
     // expandBranchToolStripMenuItem
     //
     this.expandBranchToolStripMenuItem.Name = "expandBranchToolStripMenuItem";
     resources.ApplyResources(this.expandBranchToolStripMenuItem, "expandBranchToolStripMenuItem");
     this.expandBranchToolStripMenuItem.Click += new System.EventHandler(this.expandBranchToolStripMenuItem_Click);
     //
     // collapseBranchToolStripMenuItem
     //
     this.collapseBranchToolStripMenuItem.Name = "collapseBranchToolStripMenuItem";
     resources.ApplyResources(this.collapseBranchToolStripMenuItem, "collapseBranchToolStripMenuItem");
     this.collapseBranchToolStripMenuItem.Click += new System.EventHandler(this.collapseBranchToolStripMenuItem_Click);
     //
     // findInRecordsToolStripMenuItem
     //
     this.findInRecordsToolStripMenuItem.Name = "findInRecordsToolStripMenuItem";
     resources.ApplyResources(this.findInRecordsToolStripMenuItem, "findInRecordsToolStripMenuItem");
     this.findInRecordsToolStripMenuItem.Click += new System.EventHandler(this.findInRecordsToolStripMenuItem_Click);
     //
     // findToolStripMenuItem
     //
     this.findToolStripMenuItem.Name = "findToolStripMenuItem";
     resources.ApplyResources(this.findToolStripMenuItem, "findToolStripMenuItem");
     this.findToolStripMenuItem.Click += new System.EventHandler(this.findToolStripMenuItem_Click);
     //
     // searchToolStripMenuItem
     //
     this.searchToolStripMenuItem.Name = "searchToolStripMenuItem";
     resources.ApplyResources(this.searchToolStripMenuItem, "searchToolStripMenuItem");
     this.searchToolStripMenuItem.Click += new System.EventHandler(this.searchToolStripMenuItem_Click);
     //
     // searchAdvancedToolStripMenuItem
     //
     this.searchAdvancedToolStripMenuItem.Name = "searchAdvancedToolStripMenuItem";
     resources.ApplyResources(this.searchAdvancedToolStripMenuItem, "searchAdvancedToolStripMenuItem");
     this.searchAdvancedToolStripMenuItem.Click += new System.EventHandler(this.searchAdvancedToolStripMenuItem_Click);
     //
     // optionsToolStripMenuItem
     //
     this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.hexModeToolStripMenuItem,
     this.useNewSubrecordEditorToolStripMenuItem,
     this.lookupFormidsToolStripMenuItem,
     this.uTF8ModeToolStripMenuItem,
     this.useWindowsClipboardToolStripMenuItem,
     this.noWindowsSoundsToolStripMenuItem,
     this.resetDockingWindowsToolStripMenuItem,
     this.eSMFilterSettingsToolStripMenuItem,
     this.compressionSettingsToolStripMenuItem,
     this.resetSettingsToDefaultsToolStripMenuItem,
     this.defaultGameSettingsToolStripMenuItem});
     this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
     resources.ApplyResources(this.optionsToolStripMenuItem, "optionsToolStripMenuItem");
     //
     // hexModeToolStripMenuItem
     //
     this.hexModeToolStripMenuItem.Checked = true;
     this.hexModeToolStripMenuItem.CheckOnClick = true;
     this.hexModeToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.hexModeToolStripMenuItem.Name = "hexModeToolStripMenuItem";
     resources.ApplyResources(this.hexModeToolStripMenuItem, "hexModeToolStripMenuItem");
     this.hexModeToolStripMenuItem.Click += new System.EventHandler(this.hexModeToolStripMenuItem_Click);
     //
     // useNewSubrecordEditorToolStripMenuItem
     //
     this.useNewSubrecordEditorToolStripMenuItem.Checked = true;
     this.useNewSubrecordEditorToolStripMenuItem.CheckOnClick = true;
     this.useNewSubrecordEditorToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.useNewSubrecordEditorToolStripMenuItem.Name = "useNewSubrecordEditorToolStripMenuItem";
     resources.ApplyResources(this.useNewSubrecordEditorToolStripMenuItem, "useNewSubrecordEditorToolStripMenuItem");
     this.useNewSubrecordEditorToolStripMenuItem.Click += new System.EventHandler(this.useNewSubrecordEditorToolStripMenuItem_Click);
     //
     // lookupFormidsToolStripMenuItem
     //
     this.lookupFormidsToolStripMenuItem.Checked = true;
     this.lookupFormidsToolStripMenuItem.CheckOnClick = true;
     this.lookupFormidsToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.lookupFormidsToolStripMenuItem.Name = "lookupFormidsToolStripMenuItem";
     resources.ApplyResources(this.lookupFormidsToolStripMenuItem, "lookupFormidsToolStripMenuItem");
     this.lookupFormidsToolStripMenuItem.Click += new System.EventHandler(this.lookupFormidsToolStripMenuItem_Click);
     //
     // uTF8ModeToolStripMenuItem
     //
     this.uTF8ModeToolStripMenuItem.Checked = true;
     this.uTF8ModeToolStripMenuItem.CheckOnClick = true;
     this.uTF8ModeToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.uTF8ModeToolStripMenuItem.Name = "uTF8ModeToolStripMenuItem";
     resources.ApplyResources(this.uTF8ModeToolStripMenuItem, "uTF8ModeToolStripMenuItem");
     this.uTF8ModeToolStripMenuItem.Click += new System.EventHandler(this.uTF8ModeToolStripMenuItem_Click);
     //
     // useWindowsClipboardToolStripMenuItem
     //
     this.useWindowsClipboardToolStripMenuItem.Name = "useWindowsClipboardToolStripMenuItem";
     resources.ApplyResources(this.useWindowsClipboardToolStripMenuItem, "useWindowsClipboardToolStripMenuItem");
     this.useWindowsClipboardToolStripMenuItem.Click += new System.EventHandler(this.useWindowsClipboardToolStripMenuItem_Click);
     //
     // noWindowsSoundsToolStripMenuItem
     //
     this.noWindowsSoundsToolStripMenuItem.Name = "noWindowsSoundsToolStripMenuItem";
     resources.ApplyResources(this.noWindowsSoundsToolStripMenuItem, "noWindowsSoundsToolStripMenuItem");
     this.noWindowsSoundsToolStripMenuItem.Click += new System.EventHandler(this.noWindowsSoundsToolStripMenuItem_Click);
     //
     // resetDockingWindowsToolStripMenuItem
     //
     this.resetDockingWindowsToolStripMenuItem.Name = "resetDockingWindowsToolStripMenuItem";
     resources.ApplyResources(this.resetDockingWindowsToolStripMenuItem, "resetDockingWindowsToolStripMenuItem");
     this.resetDockingWindowsToolStripMenuItem.Click += new System.EventHandler(this.resetDockingWindowsToolStripMenuItem_Click);
     //
     // eSMFilterSettingsToolStripMenuItem
     //
     this.eSMFilterSettingsToolStripMenuItem.Name = "eSMFilterSettingsToolStripMenuItem";
     resources.ApplyResources(this.eSMFilterSettingsToolStripMenuItem, "eSMFilterSettingsToolStripMenuItem");
     this.eSMFilterSettingsToolStripMenuItem.Click += new System.EventHandler(this.eSMFilterSettingsToolStripMenuItem_Click);
     //
     // compressionSettingsToolStripMenuItem
     //
     this.compressionSettingsToolStripMenuItem.Name = "compressionSettingsToolStripMenuItem";
     resources.ApplyResources(this.compressionSettingsToolStripMenuItem, "compressionSettingsToolStripMenuItem");
     this.compressionSettingsToolStripMenuItem.Click += new System.EventHandler(this.compressionSettingsToolStripMenuItem_Click);
     //
     // resetSettingsToDefaultsToolStripMenuItem
     //
     this.resetSettingsToDefaultsToolStripMenuItem.Name = "resetSettingsToDefaultsToolStripMenuItem";
     resources.ApplyResources(this.resetSettingsToDefaultsToolStripMenuItem, "resetSettingsToDefaultsToolStripMenuItem");
     this.resetSettingsToDefaultsToolStripMenuItem.Click += new System.EventHandler(this.resetSettingsToDefaultsToolStripMenuItem_Click);
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.languageToolStripMenuItem,
     this.editStringsToolStripMenuItem,
     this.saveStringsFilesToolStripMenuItem,
     this.saveStringsToolStripMenuItem,
     this.reloadStringsToolStripMenuItem,
     this.toolStripMenuItem2,
     this.internalizeStringReferencesToolStripMenuItem,
     this.extractInternalStringsToTableToolStripMenuItem,
     this.copyReferencedStringsFromMastersToolStripMenuItem,
     this.cleanUnusedStringsToolStripMenuItem,
     this.createStubsForMissingStringsToolStripMenuItem,
     this.exportStringsToFileToolStripMenuItem,
     this.importStringsToFileToolStripMenuItem});
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     resources.ApplyResources(this.toolsToolStripMenuItem, "toolsToolStripMenuItem");
     this.toolsToolStripMenuItem.DropDownOpening += new System.EventHandler(this.toolsToolStripMenuItem_DropDownOpening);
     //
     // languageToolStripMenuItem
     //
     this.languageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.englishToolStripMenuItem,
     this.czechToolStripMenuItem,
     this.frenchToolStripMenuItem,
     this.germanToolStripMenuItem,
     this.italianToolStripMenuItem,
     this.spanishToolStripMenuItem,
     this.russianToolStripMenuItem,
     this.polishToolStripMenuItem});
     this.languageToolStripMenuItem.Name = "languageToolStripMenuItem";
     resources.ApplyResources(this.languageToolStripMenuItem, "languageToolStripMenuItem");
     this.languageToolStripMenuItem.DropDownOpening += new System.EventHandler(this.languageToolStripMenuItem_DropDownOpening);
     this.languageToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.languageToolStripMenuItem_DropDownItemClicked);
     //
     // englishToolStripMenuItem
     //
     this.englishToolStripMenuItem.Name = "englishToolStripMenuItem";
     resources.ApplyResources(this.englishToolStripMenuItem, "englishToolStripMenuItem");
     //
     // czechToolStripMenuItem
     //
     this.czechToolStripMenuItem.Name = "czechToolStripMenuItem";
     resources.ApplyResources(this.czechToolStripMenuItem, "czechToolStripMenuItem");
     //
     // frenchToolStripMenuItem
     //
     this.frenchToolStripMenuItem.Name = "frenchToolStripMenuItem";
     resources.ApplyResources(this.frenchToolStripMenuItem, "frenchToolStripMenuItem");
     //
     // germanToolStripMenuItem
     //
     this.germanToolStripMenuItem.Name = "germanToolStripMenuItem";
     resources.ApplyResources(this.germanToolStripMenuItem, "germanToolStripMenuItem");
     //
     // italianToolStripMenuItem
     //
     this.italianToolStripMenuItem.Name = "italianToolStripMenuItem";
     resources.ApplyResources(this.italianToolStripMenuItem, "italianToolStripMenuItem");
     //
     // spanishToolStripMenuItem
     //
     this.spanishToolStripMenuItem.Name = "spanishToolStripMenuItem";
     resources.ApplyResources(this.spanishToolStripMenuItem, "spanishToolStripMenuItem");
     //
     // russianToolStripMenuItem
     //
     this.russianToolStripMenuItem.Name = "russianToolStripMenuItem";
     resources.ApplyResources(this.russianToolStripMenuItem, "russianToolStripMenuItem");
     //
     // polishToolStripMenuItem
     //
     this.polishToolStripMenuItem.Name = "polishToolStripMenuItem";
     resources.ApplyResources(this.polishToolStripMenuItem, "polishToolStripMenuItem");
     //
     // editStringsToolStripMenuItem
     //
     this.editStringsToolStripMenuItem.Name = "editStringsToolStripMenuItem";
     resources.ApplyResources(this.editStringsToolStripMenuItem, "editStringsToolStripMenuItem");
     this.editStringsToolStripMenuItem.Click += new System.EventHandler(this.editStringsToolStripMenuItem_Click);
     //
     // saveStringsFilesToolStripMenuItem
     //
     this.saveStringsFilesToolStripMenuItem.Name = "saveStringsFilesToolStripMenuItem";
     resources.ApplyResources(this.saveStringsFilesToolStripMenuItem, "saveStringsFilesToolStripMenuItem");
     this.saveStringsFilesToolStripMenuItem.Click += new System.EventHandler(this.saveStringsFilesToolStripMenuItem_Click);
     //
     // saveStringsToolStripMenuItem
     //
     this.saveStringsToolStripMenuItem.Name = "saveStringsToolStripMenuItem";
     resources.ApplyResources(this.saveStringsToolStripMenuItem, "saveStringsToolStripMenuItem");
     this.saveStringsToolStripMenuItem.Click += new System.EventHandler(this.saveStringsToolStripMenuItem_Click);
     //
     // reloadStringsToolStripMenuItem
     //
     this.reloadStringsToolStripMenuItem.Name = "reloadStringsToolStripMenuItem";
     resources.ApplyResources(this.reloadStringsToolStripMenuItem, "reloadStringsToolStripMenuItem");
     this.reloadStringsToolStripMenuItem.Click += new System.EventHandler(this.reloadStringsToolStripMenuItem_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     resources.ApplyResources(this.toolStripMenuItem2, "toolStripMenuItem2");
     //
     // internalizeStringReferencesToolStripMenuItem
     //
     this.internalizeStringReferencesToolStripMenuItem.Name = "internalizeStringReferencesToolStripMenuItem";
     resources.ApplyResources(this.internalizeStringReferencesToolStripMenuItem, "internalizeStringReferencesToolStripMenuItem");
     this.internalizeStringReferencesToolStripMenuItem.Click += new System.EventHandler(this.internalizeStringReferencesToolStripMenuItem_Click);
     //
     // extractInternalStringsToTableToolStripMenuItem
     //
     this.extractInternalStringsToTableToolStripMenuItem.Name = "extractInternalStringsToTableToolStripMenuItem";
     resources.ApplyResources(this.extractInternalStringsToTableToolStripMenuItem, "extractInternalStringsToTableToolStripMenuItem");
     this.extractInternalStringsToTableToolStripMenuItem.Click += new System.EventHandler(this.extractInternalStringsToTableToolStripMenuItem_Click);
     //
     // copyReferencedStringsFromMastersToolStripMenuItem
     //
     this.copyReferencedStringsFromMastersToolStripMenuItem.Name = "copyReferencedStringsFromMastersToolStripMenuItem";
     resources.ApplyResources(this.copyReferencedStringsFromMastersToolStripMenuItem, "copyReferencedStringsFromMastersToolStripMenuItem");
     this.copyReferencedStringsFromMastersToolStripMenuItem.Click += new System.EventHandler(this.copyReferencedStringsFromMastersToolStripMenuItem_Click);
     //
     // cleanUnusedStringsToolStripMenuItem
     //
     this.cleanUnusedStringsToolStripMenuItem.Name = "cleanUnusedStringsToolStripMenuItem";
     resources.ApplyResources(this.cleanUnusedStringsToolStripMenuItem, "cleanUnusedStringsToolStripMenuItem");
     this.cleanUnusedStringsToolStripMenuItem.Click += new System.EventHandler(this.cleanUnusedStringsToolStripMenuItem_Click);
     //
     // createStubsForMissingStringsToolStripMenuItem
     //
     this.createStubsForMissingStringsToolStripMenuItem.Name = "createStubsForMissingStringsToolStripMenuItem";
     resources.ApplyResources(this.createStubsForMissingStringsToolStripMenuItem, "createStubsForMissingStringsToolStripMenuItem");
     this.createStubsForMissingStringsToolStripMenuItem.Click += new System.EventHandler(this.createStubsForMissingStringsToolStripMenuItem_Click);
     //
     // exportStringsToFileToolStripMenuItem
     //
     this.exportStringsToFileToolStripMenuItem.Name = "exportStringsToFileToolStripMenuItem";
     resources.ApplyResources(this.exportStringsToFileToolStripMenuItem, "exportStringsToFileToolStripMenuItem");
     this.exportStringsToFileToolStripMenuItem.Click += new System.EventHandler(this.exportStringsToFileToolStripMenuItem_Click);
     //
     // importStringsToFileToolStripMenuItem
     //
     this.importStringsToFileToolStripMenuItem.Name = "importStringsToFileToolStripMenuItem";
     resources.ApplyResources(this.importStringsToFileToolStripMenuItem, "importStringsToFileToolStripMenuItem");
     this.importStringsToFileToolStripMenuItem.Click += new System.EventHandler(this.importStringsToFileToolStripMenuItem_Click);
     //
     // spellsToolStripMenuItem
     //
     this.spellsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.sanitizeToolStripMenuItem,
     this.stripEDIDsToolStripMenuItem,
     this.findDuplicatedFormIDToolStripMenuItem,
     this.dumpEDIDListToolStripMenuItem,
     this.cleanEspToolStripMenuItem,
     this.findNonconformingRecordToolStripMenuItem,
     this.generateLLXmlToolStripMenuItem,
     this.makeEsmToolStripMenuItem,
     this.martigensToolStripMenuItem,
     this.createRecordStructureXmlToolStripMenuItem,
     this.mergeRecordsXMLToolStripMenuItem,
     this.reorderSubrecordsToolStripMenuItem,
     this.newFormIDToolStripMenuItem,
     this.newFormIDNoReferenceUpdateToolStripMenuItem,
     this.reduceFormVersionsTo40ToolStripMenuItem});
     this.spellsToolStripMenuItem.Name = "spellsToolStripMenuItem";
     resources.ApplyResources(this.spellsToolStripMenuItem, "spellsToolStripMenuItem");
     //
     // sanitizeToolStripMenuItem
     //
     this.sanitizeToolStripMenuItem.AutoToolTip = true;
     this.sanitizeToolStripMenuItem.Name = "sanitizeToolStripMenuItem";
     resources.ApplyResources(this.sanitizeToolStripMenuItem, "sanitizeToolStripMenuItem");
     this.sanitizeToolStripMenuItem.Click += new System.EventHandler(this.sanitizeToolStripMenuItem_Click);
     //
     // stripEDIDsToolStripMenuItem
     //
     this.stripEDIDsToolStripMenuItem.Name = "stripEDIDsToolStripMenuItem";
     resources.ApplyResources(this.stripEDIDsToolStripMenuItem, "stripEDIDsToolStripMenuItem");
     this.stripEDIDsToolStripMenuItem.Click += new System.EventHandler(this.stripEDIDsToolStripMenuItem_Click);
     //
     // findDuplicatedFormIDToolStripMenuItem
     //
     this.findDuplicatedFormIDToolStripMenuItem.AutoToolTip = true;
     this.findDuplicatedFormIDToolStripMenuItem.Name = "findDuplicatedFormIDToolStripMenuItem";
     resources.ApplyResources(this.findDuplicatedFormIDToolStripMenuItem, "findDuplicatedFormIDToolStripMenuItem");
     this.findDuplicatedFormIDToolStripMenuItem.Click += new System.EventHandler(this.findDuplicatedFormIDToolStripMenuItem_Click);
     //
     // dumpEDIDListToolStripMenuItem
     //
     this.dumpEDIDListToolStripMenuItem.Name = "dumpEDIDListToolStripMenuItem";
     resources.ApplyResources(this.dumpEDIDListToolStripMenuItem, "dumpEDIDListToolStripMenuItem");
     this.dumpEDIDListToolStripMenuItem.Click += new System.EventHandler(this.dumpEDIDListToolStripMenuItem_Click);
     //
     // cleanEspToolStripMenuItem
     //
     this.cleanEspToolStripMenuItem.Name = "cleanEspToolStripMenuItem";
     resources.ApplyResources(this.cleanEspToolStripMenuItem, "cleanEspToolStripMenuItem");
     this.cleanEspToolStripMenuItem.Click += new System.EventHandler(this.cleanEspToolStripMenuItem_Click);
     //
     // findNonconformingRecordToolStripMenuItem
     //
     this.findNonconformingRecordToolStripMenuItem.Name = "findNonconformingRecordToolStripMenuItem";
     resources.ApplyResources(this.findNonconformingRecordToolStripMenuItem, "findNonconformingRecordToolStripMenuItem");
     this.findNonconformingRecordToolStripMenuItem.Click += new System.EventHandler(this.findNonconformingRecordToolStripMenuItem_Click);
     //
     // generateLLXmlToolStripMenuItem
     //
     this.generateLLXmlToolStripMenuItem.Name = "generateLLXmlToolStripMenuItem";
     resources.ApplyResources(this.generateLLXmlToolStripMenuItem, "generateLLXmlToolStripMenuItem");
     this.generateLLXmlToolStripMenuItem.Click += new System.EventHandler(this.generateLLXmlToolStripMenuItem_Click);
     //
     // makeEsmToolStripMenuItem
     //
     this.makeEsmToolStripMenuItem.AutoToolTip = true;
     this.makeEsmToolStripMenuItem.Name = "makeEsmToolStripMenuItem";
     resources.ApplyResources(this.makeEsmToolStripMenuItem, "makeEsmToolStripMenuItem");
     this.makeEsmToolStripMenuItem.Click += new System.EventHandler(this.makeEsmToolStripMenuItem_Click);
     //
     // martigensToolStripMenuItem
     //
     this.martigensToolStripMenuItem.Name = "martigensToolStripMenuItem";
     resources.ApplyResources(this.martigensToolStripMenuItem, "martigensToolStripMenuItem");
     this.martigensToolStripMenuItem.Click += new System.EventHandler(this.martigensToolStripMenuItem_Click);
     //
     // createRecordStructureXmlToolStripMenuItem
     //
     this.createRecordStructureXmlToolStripMenuItem.Name = "createRecordStructureXmlToolStripMenuItem";
     resources.ApplyResources(this.createRecordStructureXmlToolStripMenuItem, "createRecordStructureXmlToolStripMenuItem");
     this.createRecordStructureXmlToolStripMenuItem.Click += new System.EventHandler(this.createRecordStructureXmlToolStripMenuItem_Click);
     //
     // mergeRecordsXMLToolStripMenuItem
     //
     this.mergeRecordsXMLToolStripMenuItem.Name = "mergeRecordsXMLToolStripMenuItem";
     resources.ApplyResources(this.mergeRecordsXMLToolStripMenuItem, "mergeRecordsXMLToolStripMenuItem");
     this.mergeRecordsXMLToolStripMenuItem.Click += new System.EventHandler(this.mergeRecordsXMLToolStripMenuItem_Click);
     //
     // reorderSubrecordsToolStripMenuItem
     //
     this.reorderSubrecordsToolStripMenuItem.Name = "reorderSubrecordsToolStripMenuItem";
     resources.ApplyResources(this.reorderSubrecordsToolStripMenuItem, "reorderSubrecordsToolStripMenuItem");
     this.reorderSubrecordsToolStripMenuItem.Click += new System.EventHandler(this.reorderSubrecordsToolStripMenuItem_Click);
     //
     // newFormIDToolStripMenuItem
     //
     this.newFormIDToolStripMenuItem.AutoToolTip = true;
     this.newFormIDToolStripMenuItem.Name = "newFormIDToolStripMenuItem";
     resources.ApplyResources(this.newFormIDToolStripMenuItem, "newFormIDToolStripMenuItem");
     this.newFormIDToolStripMenuItem.Click += new System.EventHandler(this.newFormIDToolStripMenuItem_Click);
     //
     // newFormIDNoReferenceUpdateToolStripMenuItem
     //
     this.newFormIDNoReferenceUpdateToolStripMenuItem.Name = "newFormIDNoReferenceUpdateToolStripMenuItem";
     resources.ApplyResources(this.newFormIDNoReferenceUpdateToolStripMenuItem, "newFormIDNoReferenceUpdateToolStripMenuItem");
     this.newFormIDNoReferenceUpdateToolStripMenuItem.Click += new System.EventHandler(this.newFormIDNoReferenceUpdateToolStripMenuItem_Click);
     //
     // reduceFormVersionsTo40ToolStripMenuItem
     //
     resources.ApplyResources(this.reduceFormVersionsTo40ToolStripMenuItem, "reduceFormVersionsTo40ToolStripMenuItem");
     this.reduceFormVersionsTo40ToolStripMenuItem.Name = "reduceFormVersionsTo40ToolStripMenuItem";
     this.reduceFormVersionsTo40ToolStripMenuItem.Click += new System.EventHandler(this.reduceFormVersionTo40ToolStripMenuItem_Click);
     //
     // scriptsToolStripMenuItem
     //
     this.scriptsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.globalScriptsToolStripMenuItem,
     this.selectionScriptsToolStripMenuItem,
     this.editScriptsToolStripMenuItem,
     this.endScriptsToolStripSeparator,
     this.consoleToolStripMenuItem,
     this.outputWindowToolStripMenuItem,
     this.reloadToolStripMenuItem});
     this.scriptsToolStripMenuItem.Name = "scriptsToolStripMenuItem";
     resources.ApplyResources(this.scriptsToolStripMenuItem, "scriptsToolStripMenuItem");
     this.scriptsToolStripMenuItem.DropDownOpening += new System.EventHandler(this.scriptsToolStripMenuItem_DropDownOpening);
     //
     // globalScriptsToolStripMenuItem
     //
     this.globalScriptsToolStripMenuItem.Name = "globalScriptsToolStripMenuItem";
     resources.ApplyResources(this.globalScriptsToolStripMenuItem, "globalScriptsToolStripMenuItem");
     this.globalScriptsToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.globalScriptsToolStripMenuItem_DropDownItemClicked);
     //
     // selectionScriptsToolStripMenuItem
     //
     this.selectionScriptsToolStripMenuItem.Name = "selectionScriptsToolStripMenuItem";
     resources.ApplyResources(this.selectionScriptsToolStripMenuItem, "selectionScriptsToolStripMenuItem");
     this.selectionScriptsToolStripMenuItem.DropDownOpening += new System.EventHandler(this.selectionScriptsToolStripMenuItem_DropDownOpening);
     this.selectionScriptsToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.selectionScriptsToolStripMenuItem_DropDownItemClicked);
     //
     // editScriptsToolStripMenuItem
     //
     this.editScriptsToolStripMenuItem.Name = "editScriptsToolStripMenuItem";
     resources.ApplyResources(this.editScriptsToolStripMenuItem, "editScriptsToolStripMenuItem");
     this.editScriptsToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.editScriptsToolStripMenuItem_DropDownItemClicked);
     //
     // endScriptsToolStripSeparator
     //
     this.endScriptsToolStripSeparator.Name = "endScriptsToolStripSeparator";
     resources.ApplyResources(this.endScriptsToolStripSeparator, "endScriptsToolStripSeparator");
     //
     // consoleToolStripMenuItem
     //
     this.consoleToolStripMenuItem.Name = "consoleToolStripMenuItem";
     resources.ApplyResources(this.consoleToolStripMenuItem, "consoleToolStripMenuItem");
     this.consoleToolStripMenuItem.Click += new System.EventHandler(this.consoleToolStripMenuItem_Click);
     //
     // outputWindowToolStripMenuItem
     //
     this.outputWindowToolStripMenuItem.Name = "outputWindowToolStripMenuItem";
     resources.ApplyResources(this.outputWindowToolStripMenuItem, "outputWindowToolStripMenuItem");
     this.outputWindowToolStripMenuItem.Click += new System.EventHandler(this.outputWindowToolStripMenuItem_Click);
     //
     // reloadToolStripMenuItem
     //
     this.reloadToolStripMenuItem.Name = "reloadToolStripMenuItem";
     resources.ApplyResources(this.reloadToolStripMenuItem, "reloadToolStripMenuItem");
     this.reloadToolStripMenuItem.Click += new System.EventHandler(this.reloadToolStripMenuItem_Click);
     //
     // OpenModDialog
     //
     resources.ApplyResources(this.OpenModDialog, "OpenModDialog");
     this.OpenModDialog.Multiselect = true;
     this.OpenModDialog.RestoreDirectory = true;
     //
     // SaveModDialog
     //
     this.SaveModDialog.DefaultExt = "esp";
     resources.ApplyResources(this.SaveModDialog, "SaveModDialog");
     this.SaveModDialog.RestoreDirectory = true;
     //
     // SaveEdidListDialog
     //
     this.SaveEdidListDialog.DefaultExt = "txt";
     resources.ApplyResources(this.SaveEdidListDialog, "SaveEdidListDialog");
     this.SaveEdidListDialog.RestoreDirectory = true;
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel,
     this.toolStripStatusProgressBar,
     this.toolStripStopProgress});
     resources.ApplyResources(this.statusStrip1, "statusStrip1");
     this.statusStrip1.Name = "statusStrip1";
     //
     // toolStripStatusLabel
     //
     this.toolStripStatusLabel.Name = "toolStripStatusLabel";
     resources.ApplyResources(this.toolStripStatusLabel, "toolStripStatusLabel");
     this.toolStripStatusLabel.Spring = true;
     //
     // toolStripStatusProgressBar
     //
     this.toolStripStatusProgressBar.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripStatusProgressBar.Name = "toolStripStatusProgressBar";
     resources.ApplyResources(this.toolStripStatusProgressBar, "toolStripStatusProgressBar");
     //
     // toolStripStopProgress
     //
     this.toolStripStopProgress.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripStopProgress.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripStopProgress.Image = global::TESVSnip.Properties.Resources.agt_stop;
     resources.ApplyResources(this.toolStripStopProgress, "toolStripStopProgress");
     this.toolStripStopProgress.Name = "toolStripStopProgress";
     this.toolStripStopProgress.Click += new System.EventHandler(this.toolStripStopProgress_Click);
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.WorkerReportsProgress = true;
     this.backgroundWorker1.WorkerSupportsCancellation = true;
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
     this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
     //
     // columnHeader1
     //
     resources.ApplyResources(this.columnHeader1, "columnHeader1");
     //
     // columnHeader2
     //
     resources.ApplyResources(this.columnHeader2, "columnHeader2");
     //
     // toolStripIncrFind
     //
     resources.ApplyResources(this.toolStripIncrFind, "toolStripIncrFind");
     this.toolStripIncrFind.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripIncrFind.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripIncrFindCancel,
     this.toolStripIncrFindText,
     this.toolStripIncrFindTypeFilter,
     this.toolStripIncrFindNext,
     this.toolStripIncrFindPrev,
     this.toolStripIncrFindRestart,
     this.toolStripIncrFindType,
     this.toolStripIncrFindMatch,
     this.toolStripIncrFindExact,
     this.toolStripIncrFindWrapAround,
     this.toolStripSeparator7,
     this.toolStripIncrFindStatus});
     this.toolStripIncrFind.Name = "toolStripIncrFind";
     this.toolStripIncrFind.TabStop = true;
     this.toolStripIncrFind.VisibleChanged += new System.EventHandler(this.toolStripIncrFind_VisibleChanged);
     //
     // toolStripIncrFindCancel
     //
     this.toolStripIncrFindCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripIncrFindCancel.Image = global::TESVSnip.Properties.Resources.delete;
     resources.ApplyResources(this.toolStripIncrFindCancel, "toolStripIncrFindCancel");
     this.toolStripIncrFindCancel.Name = "toolStripIncrFindCancel";
     this.toolStripIncrFindCancel.Click += new System.EventHandler(this.toolStripIncrFindCancel_Click);
     //
     // toolStripIncrFindText
     //
     this.toolStripIncrFindText.AcceptsReturn = true;
     this.toolStripIncrFindText.Name = "toolStripIncrFindText";
     this.toolStripIncrFindText.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     resources.ApplyResources(this.toolStripIncrFindText, "toolStripIncrFindText");
     this.toolStripIncrFindText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripIncrFindText_KeyDown);
     this.toolStripIncrFindText.TextChanged += new System.EventHandler(this.toolStripIncrFindText_TextChanged);
     //
     // toolStripIncrFindTypeFilter
     //
     this.toolStripIncrFindTypeFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripIncrFindTypeFilter.Items.AddRange(new object[] {
     resources.GetString("toolStripIncrFindTypeFilter.Items"),
     resources.GetString("toolStripIncrFindTypeFilter.Items1")});
     this.toolStripIncrFindTypeFilter.Name = "toolStripIncrFindTypeFilter";
     this.toolStripIncrFindTypeFilter.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     resources.ApplyResources(this.toolStripIncrFindTypeFilter, "toolStripIncrFindTypeFilter");
     this.toolStripIncrFindTypeFilter.SelectedIndexChanged += new System.EventHandler(this.toolStripIncrFindTypeFilter_SelectedIndexChanged);
     this.toolStripIncrFindTypeFilter.VisibleChanged += new System.EventHandler(this.toolStripIncrFindTypeFilter_VisibleChanged);
     //
     // toolStripIncrFindNext
     //
     this.toolStripIncrFindNext.Image = global::TESVSnip.Properties.Resources.down;
     resources.ApplyResources(this.toolStripIncrFindNext, "toolStripIncrFindNext");
     this.toolStripIncrFindNext.Name = "toolStripIncrFindNext";
     this.toolStripIncrFindNext.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.toolStripIncrFindNext.Click += new System.EventHandler(this.toolStripIncrFindNext_Click);
     //
     // toolStripIncrFindPrev
     //
     this.toolStripIncrFindPrev.Image = global::TESVSnip.Properties.Resources.up;
     resources.ApplyResources(this.toolStripIncrFindPrev, "toolStripIncrFindPrev");
     this.toolStripIncrFindPrev.Name = "toolStripIncrFindPrev";
     this.toolStripIncrFindPrev.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.toolStripIncrFindPrev.Click += new System.EventHandler(this.toolStripIncrFindPrev_Click);
     //
     // toolStripIncrFindRestart
     //
     this.toolStripIncrFindRestart.Image = global::TESVSnip.Properties.Resources.quick_restart;
     resources.ApplyResources(this.toolStripIncrFindRestart, "toolStripIncrFindRestart");
     this.toolStripIncrFindRestart.Name = "toolStripIncrFindRestart";
     this.toolStripIncrFindRestart.Click += new System.EventHandler(this.toolStripIncrFindRestart_Click);
     //
     // toolStripIncrFindType
     //
     this.toolStripIncrFindType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripIncrFindType.Items.AddRange(new object[] {
     resources.GetString("toolStripIncrFindType.Items"),
     resources.GetString("toolStripIncrFindType.Items1")});
     this.toolStripIncrFindType.Name = "toolStripIncrFindType";
     resources.ApplyResources(this.toolStripIncrFindType, "toolStripIncrFindType");
     this.toolStripIncrFindType.SelectedIndexChanged += new System.EventHandler(this.toolStripIncrFindType_SelectedIndexChanged);
     //
     // toolStripIncrFindMatch
     //
     this.toolStripIncrFindMatch.CheckOnClick = true;
     this.toolStripIncrFindMatch.Image = global::TESVSnip.Properties.Resources.emptybox;
     resources.ApplyResources(this.toolStripIncrFindMatch, "toolStripIncrFindMatch");
     this.toolStripIncrFindMatch.Name = "toolStripIncrFindMatch";
     this.toolStripIncrFindMatch.CheckStateChanged += new System.EventHandler(this.toolStripCheck_CheckStateChanged);
     //
     // toolStripIncrFindExact
     //
     this.toolStripIncrFindExact.CheckOnClick = true;
     this.toolStripIncrFindExact.Image = global::TESVSnip.Properties.Resources.emptybox;
     resources.ApplyResources(this.toolStripIncrFindExact, "toolStripIncrFindExact");
     this.toolStripIncrFindExact.Name = "toolStripIncrFindExact";
     this.toolStripIncrFindExact.CheckStateChanged += new System.EventHandler(this.toolStripCheck_CheckStateChanged);
     //
     // toolStripIncrFindWrapAround
     //
     this.toolStripIncrFindWrapAround.CheckOnClick = true;
     this.toolStripIncrFindWrapAround.Image = global::TESVSnip.Properties.Resources.emptybox;
     resources.ApplyResources(this.toolStripIncrFindWrapAround, "toolStripIncrFindWrapAround");
     this.toolStripIncrFindWrapAround.Name = "toolStripIncrFindWrapAround";
     this.toolStripIncrFindWrapAround.CheckStateChanged += new System.EventHandler(this.toolStripCheck_CheckStateChanged);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     resources.ApplyResources(this.toolStripSeparator7, "toolStripSeparator7");
     //
     // toolStripIncrFindStatus
     //
     this.toolStripIncrFindStatus.ForeColor = System.Drawing.Color.Maroon;
     this.toolStripIncrFindStatus.Name = "toolStripIncrFindStatus";
     this.toolStripIncrFindStatus.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     resources.ApplyResources(this.toolStripIncrFindStatus, "toolStripIncrFindStatus");
     //
     // toolStripIncrInvalidRec
     //
     resources.ApplyResources(this.toolStripIncrInvalidRec, "toolStripIncrInvalidRec");
     this.toolStripIncrInvalidRec.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripIncrInvalidRec.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripIncrInvalidRecCancel,
     this.toolStripIncrInvalidRecText,
     this.toolStripSeparator6,
     this.toolStripIncrInvalidRecNext,
     this.toolStripIncrInvalidRecPrev,
     this.toolStripIncrInvalidRecRestart,
     this.toolStripSeparator4,
     this.toolStripIncrInvalidRecWrapAround,
     this.toolStripSeparator5,
     this.toolStripIncrInvalidRecStatus});
     this.toolStripIncrInvalidRec.Name = "toolStripIncrInvalidRec";
     this.toolStripIncrInvalidRec.TabStop = true;
     this.toolStripIncrInvalidRec.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.toolStripIncrInvalidRec_ItemClicked);
     this.toolStripIncrInvalidRec.VisibleChanged += new System.EventHandler(this.toolStripIncrInvalidRec_VisibleChanged);
     //
     // toolStripIncrInvalidRecCancel
     //
     this.toolStripIncrInvalidRecCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripIncrInvalidRecCancel.Image = global::TESVSnip.Properties.Resources.delete;
     resources.ApplyResources(this.toolStripIncrInvalidRecCancel, "toolStripIncrInvalidRecCancel");
     this.toolStripIncrInvalidRecCancel.Name = "toolStripIncrInvalidRecCancel";
     this.toolStripIncrInvalidRecCancel.Click += new System.EventHandler(this.toolStripIncrInvalidRecCancel_Click);
     //
     // toolStripIncrInvalidRecText
     //
     this.toolStripIncrInvalidRecText.Name = "toolStripIncrInvalidRecText";
     resources.ApplyResources(this.toolStripIncrInvalidRecText, "toolStripIncrInvalidRecText");
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     resources.ApplyResources(this.toolStripSeparator6, "toolStripSeparator6");
     //
     // toolStripIncrInvalidRecNext
     //
     this.toolStripIncrInvalidRecNext.Image = global::TESVSnip.Properties.Resources.down;
     resources.ApplyResources(this.toolStripIncrInvalidRecNext, "toolStripIncrInvalidRecNext");
     this.toolStripIncrInvalidRecNext.Name = "toolStripIncrInvalidRecNext";
     this.toolStripIncrInvalidRecNext.Click += new System.EventHandler(this.toolStripIncrInvalidRecNext_Click);
     //
     // toolStripIncrInvalidRecPrev
     //
     this.toolStripIncrInvalidRecPrev.Image = global::TESVSnip.Properties.Resources.up;
     resources.ApplyResources(this.toolStripIncrInvalidRecPrev, "toolStripIncrInvalidRecPrev");
     this.toolStripIncrInvalidRecPrev.Name = "toolStripIncrInvalidRecPrev";
     this.toolStripIncrInvalidRecPrev.Click += new System.EventHandler(this.toolStripIncrInvalidRecPrev_Click);
     //
     // toolStripIncrInvalidRecRestart
     //
     this.toolStripIncrInvalidRecRestart.Image = global::TESVSnip.Properties.Resources.quick_restart;
     resources.ApplyResources(this.toolStripIncrInvalidRecRestart, "toolStripIncrInvalidRecRestart");
     this.toolStripIncrInvalidRecRestart.Name = "toolStripIncrInvalidRecRestart";
     this.toolStripIncrInvalidRecRestart.Click += new System.EventHandler(this.toolStripIncrInvalidRecRestart_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     resources.ApplyResources(this.toolStripSeparator4, "toolStripSeparator4");
     //
     // toolStripIncrInvalidRecWrapAround
     //
     this.toolStripIncrInvalidRecWrapAround.CheckOnClick = true;
     this.toolStripIncrInvalidRecWrapAround.Image = global::TESVSnip.Properties.Resources.emptybox;
     resources.ApplyResources(this.toolStripIncrInvalidRecWrapAround, "toolStripIncrInvalidRecWrapAround");
     this.toolStripIncrInvalidRecWrapAround.Name = "toolStripIncrInvalidRecWrapAround";
     this.toolStripIncrInvalidRecWrapAround.CheckStateChanged += new System.EventHandler(this.toolStripCheck_CheckStateChanged);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     resources.ApplyResources(this.toolStripSeparator5, "toolStripSeparator5");
     //
     // toolStripIncrInvalidRecStatus
     //
     this.toolStripIncrInvalidRecStatus.ForeColor = System.Drawing.Color.DarkRed;
     this.toolStripIncrInvalidRecStatus.Name = "toolStripIncrInvalidRecStatus";
     resources.ApplyResources(this.toolStripIncrInvalidRecStatus, "toolStripIncrInvalidRecStatus");
     //
     // dockPanel
     //
     this.dockPanel.ActiveAutoHideContent = null;
     resources.ApplyResources(this.dockPanel, "dockPanel");
     this.dockPanel.DockBackColor = System.Drawing.SystemColors.AppWorkspace;
     this.dockPanel.DockBottomPortion = 150D;
     this.dockPanel.DockLeftPortion = 200D;
     this.dockPanel.DockRightPortion = 200D;
     this.dockPanel.DockTopPortion = 150D;
     this.dockPanel.Name = "dockPanel";
     this.dockPanel.RightToLeftLayout = true;
     dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight;
     autoHideStripSkin1.DockStripGradient = dockPanelGradient1;
     tabGradient1.EndColor = System.Drawing.SystemColors.Control;
     tabGradient1.StartColor = System.Drawing.SystemColors.Control;
     tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin1.TabGradient = tabGradient1;
     autoHideStripSkin1.TextFont = new System.Drawing.Font("Segoe UI", 9F);
     dockPanelSkin1.AutoHideStripSkin = autoHideStripSkin1;
     tabGradient2.EndColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.StartColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.ActiveTabGradient = tabGradient2;
     dockPanelGradient2.EndColor = System.Drawing.SystemColors.Control;
     dockPanelGradient2.StartColor = System.Drawing.SystemColors.Control;
     dockPaneStripGradient1.DockStripGradient = dockPanelGradient2;
     tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.InactiveTabGradient = tabGradient3;
     dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1;
     dockPaneStripSkin1.TextFont = new System.Drawing.Font("Segoe UI", 9F);
     tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption;
     tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption;
     tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
     dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4;
     tabGradient5.EndColor = System.Drawing.SystemColors.Control;
     tabGradient5.StartColor = System.Drawing.SystemColors.Control;
     tabGradient5.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5;
     dockPanelGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3;
     tabGradient6.EndColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6;
     tabGradient7.EndColor = System.Drawing.Color.Transparent;
     tabGradient7.StartColor = System.Drawing.Color.Transparent;
     tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7;
     dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1;
     dockPanelSkin1.DockPaneStripSkin = dockPaneStripSkin1;
     this.dockPanel.Skin = dockPanelSkin1;
     //
     // defaultGameSettingsToolStripMenuItem
     //
     this.defaultGameSettingsToolStripMenuItem.Name = "defaultGameSettingsToolStripMenuItem";
     resources.ApplyResources(this.defaultGameSettingsToolStripMenuItem, "defaultGameSettingsToolStripMenuItem");
     //
     // MainView
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.dockPanel);
     this.Controls.Add(this.toolStripIncrFind);
     this.Controls.Add(this.toolStripIncrInvalidRec);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.IsMdiContainer = true;
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "MainView";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TESsnip_FormClosing);
     this.Load += new System.EventHandler(this.MainView_Load);
     this.Shown += new System.EventHandler(this.MainView_Shown);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.toolStripIncrFind.ResumeLayout(false);
     this.toolStripIncrFind.PerformLayout();
     this.toolStripIncrInvalidRec.ResumeLayout(false);
     this.toolStripIncrInvalidRec.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #24
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin                   dockPanelSkin1                   = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin               autoHideStripSkin1               = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient               dockPanelGradient1               = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient1                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin               dockPaneStripSkin1               = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient           dockPaneStripGradient1           = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient2                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient               dockPanelGradient2               = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient3                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient4                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient5                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient               dockPanelGradient3               = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient6                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient                     tabGradient7                     = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     this.menuApp                         = new System.Windows.Forms.MenuStrip();
     this.menuItemFile                    = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemCreate                  = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemOpen                    = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemRecentFiles             = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemLoadNewDictionary       = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemOpenVocabulary          = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator8             = new System.Windows.Forms.ToolStripSeparator();
     this.menuItemImport                  = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemExport                  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator9             = new System.Windows.Forms.ToolStripSeparator();
     this.menuItemProperty                = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemPrint                   = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemPreview                 = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemPrintConfig             = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1             = new System.Windows.Forms.ToolStripSeparator();
     this.menuItemExit                    = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemSettings                = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemPalettes                = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemPaletteSystem           = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemPaletteOffice2003       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4             = new System.Windows.Forms.ToolStripSeparator();
     this.menuItemPaletteOffice2007Blue   = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemPaletteOffice2007Silver = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemPaletteOffice2007Black  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5             = new System.Windows.Forms.ToolStripSeparator();
     this.menuItemPaletteOffice2010Blue   = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemPaletteOffice2010Silver = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemPaletteOffice2010Black  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator6             = new System.Windows.Forms.ToolStripSeparator();
     this.menuItemPaletteSparkleBlue      = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemPaletteSparkleOrange    = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemPaletteSparklePurple    = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItemHelp                    = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripContainer1             = new System.Windows.Forms.ToolStripContainer();
     this.statusStripApp                  = new System.Windows.Forms.StatusStrip();
     this.toolStatusWordType              = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStatusPronunciation         = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStatusComment               = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStatusLoading               = new System.Windows.Forms.ToolStripStatusLabel();
     this.dockPanel1                      = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.toolStripApp                    = new System.Windows.Forms.ToolStrip();
     this.paletteManager                  = new ComponentFactory.Krypton.Toolkit.KryptonManager(this.components);
     this.backgroundLoading               = new System.ComponentModel.BackgroundWorker();
     this.menuApp.SuspendLayout();
     this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
     this.toolStripContainer1.ContentPanel.SuspendLayout();
     this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
     this.toolStripContainer1.SuspendLayout();
     this.statusStripApp.SuspendLayout();
     this.SuspendLayout();
     //
     // menuApp
     //
     this.menuApp.Dock = System.Windows.Forms.DockStyle.None;
     this.menuApp.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.menuApp.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.menuItemFile,
         this.menuItemSettings,
         this.menuItemHelp
     });
     this.menuApp.Location = new System.Drawing.Point(0, 0);
     this.menuApp.Name     = "menuApp";
     this.menuApp.Size     = new System.Drawing.Size(962, 24);
     this.menuApp.TabIndex = 2;
     this.menuApp.Text     = "menuStrip2";
     //
     // menuItemFile
     //
     this.menuItemFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.menuItemCreate,
         this.menuItemOpen,
         this.menuItemRecentFiles,
         this.menuItemLoadNewDictionary,
         this.menuItemOpenVocabulary,
         this.toolStripSeparator8,
         this.menuItemImport,
         this.menuItemExport,
         this.toolStripSeparator9,
         this.menuItemProperty,
         this.menuItemPrint,
         this.menuItemPreview,
         this.menuItemPrintConfig,
         this.toolStripSeparator1,
         this.menuItemExit
     });
     this.menuItemFile.Name = "menuItemFile";
     this.menuItemFile.Size = new System.Drawing.Size(48, 20);
     this.menuItemFile.Text = "Файл";
     //
     // menuItemCreate
     //
     this.menuItemCreate.Image        = global::VocabularyTest.Images.create;
     this.menuItemCreate.Name         = "menuItemCreate";
     this.menuItemCreate.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
     this.menuItemCreate.Size         = new System.Drawing.Size(279, 22);
     this.menuItemCreate.Text         = "Создать";
     //
     // menuItemOpen
     //
     this.menuItemOpen.Image        = global::VocabularyTest.Images.open;
     this.menuItemOpen.Name         = "menuItemOpen";
     this.menuItemOpen.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.menuItemOpen.Size         = new System.Drawing.Size(279, 22);
     this.menuItemOpen.Text         = "Открыть";
     //
     // menuItemRecentFiles
     //
     this.menuItemRecentFiles.Name = "menuItemRecentFiles";
     this.menuItemRecentFiles.Size = new System.Drawing.Size(279, 22);
     this.menuItemRecentFiles.Text = "Последние файлы";
     //
     // menuItemLoadNewDictionary
     //
     this.menuItemLoadNewDictionary.Image        = global::VocabularyTest.Images.load_new_dictionary;
     this.menuItemLoadNewDictionary.Name         = "menuItemLoadNewDictionary";
     this.menuItemLoadNewDictionary.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G)));
     this.menuItemLoadNewDictionary.Size         = new System.Drawing.Size(279, 22);
     this.menuItemLoadNewDictionary.Text         = "Загрузить новые словари...";
     //
     // menuItemOpenVocabulary
     //
     this.menuItemOpenVocabulary.Name = "menuItemOpenVocabulary";
     this.menuItemOpenVocabulary.Size = new System.Drawing.Size(279, 22);
     this.menuItemOpenVocabulary.Text = "Открыть загруженные словари...";
     //
     // toolStripSeparator8
     //
     this.toolStripSeparator8.Name = "toolStripSeparator8";
     this.toolStripSeparator8.Size = new System.Drawing.Size(276, 6);
     //
     // menuItemImport
     //
     this.menuItemImport.Image = global::VocabularyTest.Images.import;
     this.menuItemImport.Name  = "menuItemImport";
     this.menuItemImport.Size  = new System.Drawing.Size(279, 22);
     this.menuItemImport.Text  = "Импорт...";
     //
     // menuItemExport
     //
     this.menuItemExport.Image = global::VocabularyTest.Images.export;
     this.menuItemExport.Name  = "menuItemExport";
     this.menuItemExport.Size  = new System.Drawing.Size(279, 22);
     this.menuItemExport.Text  = "Экспорт...";
     //
     // toolStripSeparator9
     //
     this.toolStripSeparator9.Name = "toolStripSeparator9";
     this.toolStripSeparator9.Size = new System.Drawing.Size(276, 6);
     //
     // menuItemProperty
     //
     this.menuItemProperty.Image = global::VocabularyTest.Images.property;
     this.menuItemProperty.Name  = "menuItemProperty";
     this.menuItemProperty.Size  = new System.Drawing.Size(279, 22);
     this.menuItemProperty.Text  = "Свойства...";
     //
     // menuItemPrint
     //
     this.menuItemPrint.Image        = global::VocabularyTest.Images.document_print;
     this.menuItemPrint.Name         = "menuItemPrint";
     this.menuItemPrint.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
     this.menuItemPrint.Size         = new System.Drawing.Size(279, 22);
     this.menuItemPrint.Text         = "Печать...";
     //
     // menuItemPreview
     //
     this.menuItemPreview.Image        = global::VocabularyTest.Images.document_print_preview;
     this.menuItemPreview.Name         = "menuItemPreview";
     this.menuItemPreview.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F2)));
     this.menuItemPreview.Size         = new System.Drawing.Size(279, 22);
     this.menuItemPreview.Text         = "Предварительный просмотр";
     //
     // menuItemPrintConfig
     //
     this.menuItemPrintConfig.Name = "menuItemPrintConfig";
     this.menuItemPrintConfig.Size = new System.Drawing.Size(279, 22);
     this.menuItemPrintConfig.Text = "Настройка печати...";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(276, 6);
     //
     // menuItemExit
     //
     this.menuItemExit.Image  = global::VocabularyTest.Images.exit;
     this.menuItemExit.Name   = "menuItemExit";
     this.menuItemExit.Size   = new System.Drawing.Size(279, 22);
     this.menuItemExit.Text   = "Выход";
     this.menuItemExit.Click += new System.EventHandler(this.MenuItemExitClick);
     //
     // menuItemSettings
     //
     this.menuItemSettings.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.menuItemPalettes
     });
     this.menuItemSettings.Name = "menuItemSettings";
     this.menuItemSettings.Size = new System.Drawing.Size(78, 20);
     this.menuItemSettings.Text = "Настройка";
     //
     // menuItemPalettes
     //
     this.menuItemPalettes.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.menuItemPaletteSystem,
         this.menuItemPaletteOffice2003,
         this.toolStripSeparator4,
         this.menuItemPaletteOffice2007Blue,
         this.menuItemPaletteOffice2007Silver,
         this.menuItemPaletteOffice2007Black,
         this.toolStripSeparator5,
         this.menuItemPaletteOffice2010Blue,
         this.menuItemPaletteOffice2010Silver,
         this.menuItemPaletteOffice2010Black,
         this.toolStripSeparator6,
         this.menuItemPaletteSparkleBlue,
         this.menuItemPaletteSparkleOrange,
         this.menuItemPaletteSparklePurple
     });
     this.menuItemPalettes.Name = "menuItemPalettes";
     this.menuItemPalettes.Size = new System.Drawing.Size(240, 22);
     this.menuItemPalettes.Text = "Пользовательский интерфейс";
     //
     // menuItemPaletteSystem
     //
     this.menuItemPaletteSystem.Name = "menuItemPaletteSystem";
     this.menuItemPaletteSystem.Size = new System.Drawing.Size(208, 22);
     this.menuItemPaletteSystem.Tag  = "ProfessionalSystem";
     this.menuItemPaletteSystem.Text = "Professional - System";
     //
     // menuItemPaletteOffice2003
     //
     this.menuItemPaletteOffice2003.Name = "menuItemPaletteOffice2003";
     this.menuItemPaletteOffice2003.Size = new System.Drawing.Size(208, 22);
     this.menuItemPaletteOffice2003.Tag  = "ProfessionalOffice2003";
     this.menuItemPaletteOffice2003.Text = "Professional - Office 2003";
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(205, 6);
     //
     // menuItemPaletteOffice2007Blue
     //
     this.menuItemPaletteOffice2007Blue.Name = "menuItemPaletteOffice2007Blue";
     this.menuItemPaletteOffice2007Blue.Size = new System.Drawing.Size(208, 22);
     this.menuItemPaletteOffice2007Blue.Tag  = "Office2007Blue";
     this.menuItemPaletteOffice2007Blue.Text = "Office 2007 - Blue";
     //
     // menuItemPaletteOffice2007Silver
     //
     this.menuItemPaletteOffice2007Silver.Name = "menuItemPaletteOffice2007Silver";
     this.menuItemPaletteOffice2007Silver.Size = new System.Drawing.Size(208, 22);
     this.menuItemPaletteOffice2007Silver.Tag  = "Office2007Silver";
     this.menuItemPaletteOffice2007Silver.Text = "Office 2007 - Silver";
     //
     // menuItemPaletteOffice2007Black
     //
     this.menuItemPaletteOffice2007Black.Name = "menuItemPaletteOffice2007Black";
     this.menuItemPaletteOffice2007Black.Size = new System.Drawing.Size(208, 22);
     this.menuItemPaletteOffice2007Black.Tag  = "Office2007Black";
     this.menuItemPaletteOffice2007Black.Text = "Office 2007 - Black";
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(205, 6);
     //
     // menuItemPaletteOffice2010Blue
     //
     this.menuItemPaletteOffice2010Blue.Name = "menuItemPaletteOffice2010Blue";
     this.menuItemPaletteOffice2010Blue.Size = new System.Drawing.Size(208, 22);
     this.menuItemPaletteOffice2010Blue.Tag  = "Office2010Blue";
     this.menuItemPaletteOffice2010Blue.Text = "Office 2010 - Blue";
     //
     // menuItemPaletteOffice2010Silver
     //
     this.menuItemPaletteOffice2010Silver.Name = "menuItemPaletteOffice2010Silver";
     this.menuItemPaletteOffice2010Silver.Size = new System.Drawing.Size(208, 22);
     this.menuItemPaletteOffice2010Silver.Tag  = "Office2010Silver";
     this.menuItemPaletteOffice2010Silver.Text = "Office 2010 - Silver";
     //
     // menuItemPaletteOffice2010Black
     //
     this.menuItemPaletteOffice2010Black.Name = "menuItemPaletteOffice2010Black";
     this.menuItemPaletteOffice2010Black.Size = new System.Drawing.Size(208, 22);
     this.menuItemPaletteOffice2010Black.Tag  = "Office2010Black";
     this.menuItemPaletteOffice2010Black.Text = "Office 2010 - Black";
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(205, 6);
     //
     // menuItemPaletteSparkleBlue
     //
     this.menuItemPaletteSparkleBlue.Name = "menuItemPaletteSparkleBlue";
     this.menuItemPaletteSparkleBlue.Size = new System.Drawing.Size(208, 22);
     this.menuItemPaletteSparkleBlue.Tag  = "SparkleBlue";
     this.menuItemPaletteSparkleBlue.Text = "Sparkle - Blue";
     //
     // menuItemPaletteSparkleOrange
     //
     this.menuItemPaletteSparkleOrange.Name = "menuItemPaletteSparkleOrange";
     this.menuItemPaletteSparkleOrange.Size = new System.Drawing.Size(208, 22);
     this.menuItemPaletteSparkleOrange.Tag  = "SparkleOrange";
     this.menuItemPaletteSparkleOrange.Text = "Sparkle - Orange";
     //
     // menuItemPaletteSparklePurple
     //
     this.menuItemPaletteSparklePurple.Name = "menuItemPaletteSparklePurple";
     this.menuItemPaletteSparklePurple.Size = new System.Drawing.Size(208, 22);
     this.menuItemPaletteSparklePurple.Tag  = "SparklePurple";
     this.menuItemPaletteSparklePurple.Text = "Sparkle - Purple";
     //
     // menuItemHelp
     //
     this.menuItemHelp.Name = "menuItemHelp";
     this.menuItemHelp.Size = new System.Drawing.Size(65, 20);
     this.menuItemHelp.Text = "Справка";
     //
     // toolStripContainer1
     //
     //
     // toolStripContainer1.BottomToolStripPanel
     //
     this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.statusStripApp);
     //
     // toolStripContainer1.ContentPanel
     //
     this.toolStripContainer1.ContentPanel.Controls.Add(this.dockPanel1);
     this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(962, 397);
     this.toolStripContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
     this.toolStripContainer1.Name     = "toolStripContainer1";
     this.toolStripContainer1.Size     = new System.Drawing.Size(962, 468);
     this.toolStripContainer1.TabIndex = 3;
     this.toolStripContainer1.Text     = "toolStripContainer1";
     //
     // toolStripContainer1.TopToolStripPanel
     //
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.menuApp);
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStripApp);
     //
     // statusStripApp
     //
     this.statusStripApp.Dock = System.Windows.Forms.DockStyle.None;
     this.statusStripApp.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStatusWordType,
         this.toolStatusPronunciation,
         this.toolStatusComment,
         this.toolStatusLoading
     });
     this.statusStripApp.Location = new System.Drawing.Point(0, 0);
     this.statusStripApp.Name     = "statusStripApp";
     this.statusStripApp.Size     = new System.Drawing.Size(962, 22);
     this.statusStripApp.TabIndex = 4;
     //
     // toolStatusWordType
     //
     this.toolStatusWordType.Name = "toolStatusWordType";
     this.toolStatusWordType.Size = new System.Drawing.Size(88, 17);
     this.toolStatusWordType.Text = "Часть речи: {0}";
     //
     // toolStatusPronunciation
     //
     this.toolStatusPronunciation.Name = "toolStatusPronunciation";
     this.toolStatusPronunciation.Size = new System.Drawing.Size(113, 17);
     this.toolStatusPronunciation.Text = "Произношение: {0}";
     //
     // toolStatusComment
     //
     this.toolStatusComment.Name = "toolStatusComment";
     this.toolStatusComment.Size = new System.Drawing.Size(104, 17);
     this.toolStatusComment.Text = "Комментарий: {0}";
     //
     // toolStatusLoading
     //
     this.toolStatusLoading.Name = "toolStatusLoading";
     this.toolStatusLoading.Size = new System.Drawing.Size(59, 17);
     this.toolStatusLoading.Text = "Loading...";
     //
     // dockPanel1
     //
     this.dockPanel1.ActiveAutoHideContent = null;
     this.dockPanel1.Dock                                     = System.Windows.Forms.DockStyle.Fill;
     this.dockPanel1.DockBackColor                            = System.Drawing.SystemColors.AppWorkspace;
     this.dockPanel1.DocumentStyle                            = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow;
     this.dockPanel1.Location                                 = new System.Drawing.Point(0, 0);
     this.dockPanel1.Name                                     = "dockPanel1";
     this.dockPanel1.Size                                     = new System.Drawing.Size(962, 397);
     dockPanelGradient1.EndColor                              = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient1.StartColor                            = System.Drawing.SystemColors.ControlLight;
     autoHideStripSkin1.DockStripGradient                     = dockPanelGradient1;
     tabGradient1.EndColor                                    = System.Drawing.SystemColors.Control;
     tabGradient1.StartColor                                  = System.Drawing.SystemColors.Control;
     tabGradient1.TextColor                                   = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin1.TabGradient                           = tabGradient1;
     autoHideStripSkin1.TextFont                              = new System.Drawing.Font("Segoe UI", 9F);
     dockPanelSkin1.AutoHideStripSkin                         = autoHideStripSkin1;
     tabGradient2.EndColor                                    = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.StartColor                                  = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.TextColor                                   = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.ActiveTabGradient                 = tabGradient2;
     dockPanelGradient2.EndColor                              = System.Drawing.SystemColors.Control;
     dockPanelGradient2.StartColor                            = System.Drawing.SystemColors.Control;
     dockPaneStripGradient1.DockStripGradient                 = dockPanelGradient2;
     tabGradient3.EndColor                                    = System.Drawing.SystemColors.ControlLight;
     tabGradient3.StartColor                                  = System.Drawing.SystemColors.ControlLight;
     tabGradient3.TextColor                                   = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.InactiveTabGradient               = tabGradient3;
     dockPaneStripSkin1.DocumentGradient                      = dockPaneStripGradient1;
     dockPaneStripSkin1.TextFont                              = new System.Drawing.Font("Segoe UI", 9F);
     tabGradient4.EndColor                                    = System.Drawing.SystemColors.ActiveCaption;
     tabGradient4.LinearGradientMode                          = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient4.StartColor                                  = System.Drawing.SystemColors.GradientActiveCaption;
     tabGradient4.TextColor                                   = System.Drawing.SystemColors.ActiveCaptionText;
     dockPaneStripToolWindowGradient1.ActiveCaptionGradient   = tabGradient4;
     tabGradient5.EndColor                                    = System.Drawing.SystemColors.Control;
     tabGradient5.StartColor                                  = System.Drawing.SystemColors.Control;
     tabGradient5.TextColor                                   = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.ActiveTabGradient       = tabGradient5;
     dockPanelGradient3.EndColor                              = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient3.StartColor                            = System.Drawing.SystemColors.ControlLight;
     dockPaneStripToolWindowGradient1.DockStripGradient       = dockPanelGradient3;
     tabGradient6.EndColor                                    = System.Drawing.SystemColors.InactiveCaption;
     tabGradient6.LinearGradientMode                          = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient6.StartColor                                  = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.TextColor                                   = System.Drawing.SystemColors.InactiveCaptionText;
     dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6;
     tabGradient7.EndColor                                    = System.Drawing.Color.Transparent;
     tabGradient7.StartColor                                  = System.Drawing.Color.Transparent;
     tabGradient7.TextColor                                   = System.Drawing.SystemColors.ControlDarkDark;
     dockPaneStripToolWindowGradient1.InactiveTabGradient     = tabGradient7;
     dockPaneStripSkin1.ToolWindowGradient                    = dockPaneStripToolWindowGradient1;
     dockPanelSkin1.DockPaneStripSkin                         = dockPaneStripSkin1;
     this.dockPanel1.TabIndex                                 = 4;
     //
     // toolStripApp
     //
     this.toolStripApp.Dock     = System.Windows.Forms.DockStyle.None;
     this.toolStripApp.Font     = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.toolStripApp.Location = new System.Drawing.Point(3, 24);
     this.toolStripApp.Name     = "toolStripApp";
     this.toolStripApp.Size     = new System.Drawing.Size(43, 25);
     this.toolStripApp.TabIndex = 3;
     //
     // paletteManager
     //
     this.paletteManager.GlobalPaletteMode = ComponentFactory.Krypton.Toolkit.PaletteModeManager.ProfessionalSystem;
     //
     // backgroundLoading
     //
     this.backgroundLoading.WorkerReportsProgress = true;
     this.backgroundLoading.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.backgroundLoading_DoWork);
     this.backgroundLoading.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundLoading_RunWorkerCompleted);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(962, 468);
     this.Controls.Add(this.toolStripContainer1);
     this.Name         = "MainForm";
     this.Text         = "VocabularyTest";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFormFormClosing);
     this.menuApp.ResumeLayout(false);
     this.menuApp.PerformLayout();
     this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
     this.toolStripContainer1.ContentPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.PerformLayout();
     this.toolStripContainer1.ResumeLayout(false);
     this.toolStripContainer1.PerformLayout();
     this.statusStripApp.ResumeLayout(false);
     this.statusStripApp.PerformLayout();
     this.ResumeLayout(false);
 }
Пример #25
0
        internal MainWindow()
        {
            // add the designers resource manager to the list of all available resource managers
            Plugin.AddResourceManager(Resources.ResourceManager);

            InitializeComponent();

            // display the file version
            string[] vernums= ProductVersion.Split('.');

            Text+= " "+ vernums[0] +"."+ vernums[1];

            if(vernums[2] !="0")
                Text+= (char) (int.Parse(vernums[2]) +0x60);

            if(vernums.Length >3 && vernums[3] !="0")
                Text+= " ("+ vernums[3] +')';

            // create docking panels
            __dockPanel= dockPanel;

            // if we have no stored layout generate a default one
            if(!System.IO.File.Exists(__layoutFile))
            {
                BehaviorTreeListDock btlDock= new BehaviorTreeListDock();
                RegisterBehaviorTreeList(btlDock);
                btlDock.Show(dockPanel, WeifenLuo.WinFormsUI.Docking.DockState.DockLeft);

                new PropertiesDock().Show(dockPanel, WeifenLuo.WinFormsUI.Docking.DockState.DockRight);
            }

            _edgePenReadOnly= new Pen(Brushes.LightGray, 3.0f);
            //_edgePenReadOnly.DashCap= System.Drawing.Drawing2D.DashCap.Round;
            //_edgePenReadOnly.DashStyle= System.Drawing.Drawing2D.DashStyle.Dash;
            //_edgePenReadOnly.DashPattern= new float[] { 4.0f, 3.0f };
        }
Пример #26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.icoLargeList = new System.Windows.Forms.ImageList(this.components);
     this.statusStrip = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.MainMenu = new System.Windows.Forms.MenuStrip();
     this.系统设置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.重新登录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.退出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.导入数据ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.数据处理ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.银行发放数据导出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.补发数据处理ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.汝城县专用功能ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.帮助ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.关于ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.修改dmp文件版本ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.命令行ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.MainToolStrip = new System.Windows.Forms.ToolStrip();
     this.statusStrip.SuspendLayout();
     this.MainMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // dockPanel
     //
     this.dockPanel.ActiveAutoHideContent = null;
     this.dockPanel.BackColor = System.Drawing.Color.Silver;
     this.dockPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.dockPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dockPanel.DockBackColor = System.Drawing.Color.Transparent;
     this.dockPanel.DockBottomPortion = 150D;
     this.dockPanel.DockLeftPortion = 150D;
     this.dockPanel.DockRightPortion = 200D;
     this.dockPanel.DockTopPortion = 150D;
     this.dockPanel.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World, ((byte)(0)));
     this.dockPanel.Location = new System.Drawing.Point(0, 0);
     this.dockPanel.Name = "dockPanel";
     this.dockPanel.RightToLeftLayout = true;
     this.dockPanel.Size = new System.Drawing.Size(1352, 578);
     dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight;
     autoHideStripSkin1.DockStripGradient = dockPanelGradient1;
     tabGradient1.EndColor = System.Drawing.SystemColors.Control;
     tabGradient1.StartColor = System.Drawing.SystemColors.Control;
     tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin1.TabGradient = tabGradient1;
     dockPanelSkin1.AutoHideStripSkin = autoHideStripSkin1;
     tabGradient2.EndColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.StartColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.ActiveTabGradient = tabGradient2;
     dockPanelGradient2.EndColor = System.Drawing.SystemColors.Control;
     dockPanelGradient2.StartColor = System.Drawing.SystemColors.Control;
     dockPaneStripGradient1.DockStripGradient = dockPanelGradient2;
     tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.InactiveTabGradient = tabGradient3;
     dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1;
     tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption;
     tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption;
     tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
     dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4;
     tabGradient5.EndColor = System.Drawing.SystemColors.Control;
     tabGradient5.StartColor = System.Drawing.SystemColors.Control;
     tabGradient5.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5;
     dockPanelGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3;
     tabGradient6.EndColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6;
     tabGradient7.EndColor = System.Drawing.Color.Transparent;
     tabGradient7.StartColor = System.Drawing.Color.Transparent;
     tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7;
     dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1;
     dockPanelSkin1.DockPaneStripSkin = dockPaneStripSkin1;
     this.dockPanel.Skin = dockPanelSkin1;
     this.dockPanel.TabIndex = 25;
     //
     // icoLargeList
     //
     this.icoLargeList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("icoLargeList.ImageStream")));
     this.icoLargeList.TransparentColor = System.Drawing.Color.Transparent;
     this.icoLargeList.Images.SetKeyName(0, "tsbconfig.Image.png");
     this.icoLargeList.Images.SetKeyName(1, "重新登录ToolStripMenuItem.Image.png");
     this.icoLargeList.Images.SetKeyName(2, "toolStripButton20.Image.png");
     this.icoLargeList.Images.SetKeyName(3, "tsbIMP.Image.png");
     this.icoLargeList.Images.SetKeyName(4, "toolStripButton14.Image.png");
     this.icoLargeList.Images.SetKeyName(5, "补贴明细查询ToolStripMenuItem.Image.png");
     this.icoLargeList.Images.SetKeyName(6, "补贴汇总查询ToolStripMenuItem.Image.png");
     this.icoLargeList.Images.SetKeyName(7, "toolStripButton16.Image.png");
     this.icoLargeList.Images.SetKeyName(8, "toolStripButton17.Image.png");
     this.icoLargeList.Images.SetKeyName(9, "toolStripButton18.Image.png");
     this.icoLargeList.Images.SetKeyName(10, "toolStripButton19.Image.png");
     this.icoLargeList.Images.SetKeyName(11, "补贴批次管理ToolStripMenuItem.Image.png");
     this.icoLargeList.Images.SetKeyName(12, "导入数据ToolStripMenuItem1.Image.png");
     this.icoLargeList.Images.SetKeyName(13, "导出银行发放数据ToolStripMenuItem.Image.png");
     this.icoLargeList.Images.SetKeyName(14, "银行返回数据导入ToolStripMenuItem.Image.png");
     this.icoLargeList.Images.SetKeyName(15, "查询修改补贴数据ToolStripMenuItem.Image.png");
     this.icoLargeList.Images.SetKeyName(16, "删除补贴数据ToolStripMenuItem.Image.png");
     this.icoLargeList.Images.SetKeyName(17, "关于ToolStripMenuItem.Image.png");
     this.icoLargeList.Images.SetKeyName(18, "DatabaseAccessBackEnd.png");
     //
     // statusStrip
     //
     this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.toolStripStatusLabel2,
     this.toolStripStatusLabel3,
     this.toolStripStatusLabel4});
     this.statusStrip.Location = new System.Drawing.Point(0, 556);
     this.statusStrip.Name = "statusStrip";
     this.statusStrip.Size = new System.Drawing.Size(1352, 22);
     this.statusStrip.TabIndex = 38;
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(445, 17);
     this.toolStripStatusLabel1.Spring = true;
     this.toolStripStatusLabel1.Text = "欢迎使用湖南省补贴系统助手";
     this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)));
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(445, 17);
     this.toolStripStatusLabel2.Spring = true;
     this.toolStripStatusLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(445, 17);
     this.toolStripStatusLabel3.Spring = true;
     this.toolStripStatusLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // toolStripStatusLabel4
     //
     this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
     this.toolStripStatusLabel4.Size = new System.Drawing.Size(0, 17);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // MainMenu
     //
     this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.系统设置ToolStripMenuItem,
     this.导入数据ToolStripMenuItem,
     this.数据处理ToolStripMenuItem,
     this.银行发放数据导出ToolStripMenuItem,
     this.补发数据处理ToolStripMenuItem,
     this.汝城县专用功能ToolStripMenuItem,
     this.帮助ToolStripMenuItem1});
     this.MainMenu.Location = new System.Drawing.Point(0, 0);
     this.MainMenu.Name = "MainMenu";
     this.MainMenu.Size = new System.Drawing.Size(1352, 24);
     this.MainMenu.TabIndex = 41;
     this.MainMenu.Text = "menuStrip1";
     //
     // 系统设置ToolStripMenuItem
     //
     this.系统设置ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.重新登录ToolStripMenuItem,
     this.退出ToolStripMenuItem});
     this.系统设置ToolStripMenuItem.Name = "系统设置ToolStripMenuItem";
     this.系统设置ToolStripMenuItem.Size = new System.Drawing.Size(83, 20);
     this.系统设置ToolStripMenuItem.Text = "系统设置(&S)";
     //
     // 重新登录ToolStripMenuItem
     //
     this.重新登录ToolStripMenuItem.Name = "重新登录ToolStripMenuItem";
     this.重新登录ToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
     this.重新登录ToolStripMenuItem.Text = "重新登录";
     this.重新登录ToolStripMenuItem.Click += new System.EventHandler(this.重新登录ToolStripMenuItem_Click);
     //
     // 退出ToolStripMenuItem
     //
     this.退出ToolStripMenuItem.Name = "退出ToolStripMenuItem";
     this.退出ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
     this.退出ToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
     this.退出ToolStripMenuItem.Text = "退出";
     this.退出ToolStripMenuItem.Click += new System.EventHandler(this.退出ToolStripMenuItem_Click);
     //
     // 导入数据ToolStripMenuItem
     //
     this.导入数据ToolStripMenuItem.Name = "导入数据ToolStripMenuItem";
     this.导入数据ToolStripMenuItem.Size = new System.Drawing.Size(83, 20);
     this.导入数据ToolStripMenuItem.Text = "导入数据(&I)";
     //
     // 数据处理ToolStripMenuItem
     //
     this.数据处理ToolStripMenuItem.Name = "数据处理ToolStripMenuItem";
     this.数据处理ToolStripMenuItem.Size = new System.Drawing.Size(83, 20);
     this.数据处理ToolStripMenuItem.Text = "数据处理(&P)";
     //
     // 银行发放数据导出ToolStripMenuItem
     //
     this.银行发放数据导出ToolStripMenuItem.Name = "银行发放数据导出ToolStripMenuItem";
     this.银行发放数据导出ToolStripMenuItem.Size = new System.Drawing.Size(107, 20);
     this.银行发放数据导出ToolStripMenuItem.Text = "数据查询导出(&E)";
     //
     // 补发数据处理ToolStripMenuItem
     //
     this.补发数据处理ToolStripMenuItem.Name = "补发数据处理ToolStripMenuItem";
     this.补发数据处理ToolStripMenuItem.Size = new System.Drawing.Size(107, 20);
     this.补发数据处理ToolStripMenuItem.Text = "补发数据处理(&B)";
     //
     // 汝城县专用功能ToolStripMenuItem
     //
     this.汝城县专用功能ToolStripMenuItem.Name = "汝城县专用功能ToolStripMenuItem";
     this.汝城县专用功能ToolStripMenuItem.Size = new System.Drawing.Size(119, 20);
     this.汝城县专用功能ToolStripMenuItem.Text = "汝城县专用功能(&R)";
     this.汝城县专用功能ToolStripMenuItem.Visible = false;
     //
     // 帮助ToolStripMenuItem1
     //
     this.帮助ToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.关于ToolStripMenuItem,
     this.修改dmp文件版本ToolStripMenuItem,
     this.命令行ToolStripMenuItem});
     this.帮助ToolStripMenuItem1.Name = "帮助ToolStripMenuItem1";
     this.帮助ToolStripMenuItem1.Size = new System.Drawing.Size(59, 20);
     this.帮助ToolStripMenuItem1.Text = "帮助(&H)";
     //
     // 关于ToolStripMenuItem
     //
     this.关于ToolStripMenuItem.Name = "关于ToolStripMenuItem";
     this.关于ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
     this.关于ToolStripMenuItem.Text = "关于";
     this.关于ToolStripMenuItem.Click += new System.EventHandler(this.关于ToolStripMenuItem_Click);
     //
     // 修改dmp文件版本ToolStripMenuItem
     //
     this.修改dmp文件版本ToolStripMenuItem.Name = "修改dmp文件版本ToolStripMenuItem";
     this.修改dmp文件版本ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
     this.修改dmp文件版本ToolStripMenuItem.Text = "修改dmp文件版本";
     this.修改dmp文件版本ToolStripMenuItem.Click += new System.EventHandler(this.修改dmp文件版本ToolStripMenuItem_Click);
     //
     // 命令行ToolStripMenuItem
     //
     this.命令行ToolStripMenuItem.Name = "命令行ToolStripMenuItem";
     this.命令行ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
     this.命令行ToolStripMenuItem.Text = "命令行";
     this.命令行ToolStripMenuItem.Click += new System.EventHandler(this.命令行ToolStripMenuItem_Click);
     //
     // MainToolStrip
     //
     this.MainToolStrip.Location = new System.Drawing.Point(0, 24);
     this.MainToolStrip.Name = "MainToolStrip";
     this.MainToolStrip.Size = new System.Drawing.Size(1352, 25);
     this.MainToolStrip.TabIndex = 42;
     this.MainToolStrip.Text = "toolStrip1";
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1352, 578);
     this.Controls.Add(this.MainToolStrip);
     this.Controls.Add(this.MainMenu);
     this.Controls.Add(this.statusStrip);
     this.Controls.Add(this.dockPanel);
     this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "frmMain";
     this.Text = "湖南省补贴系统助手";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmMain_Load);
     this.statusStrip.ResumeLayout(false);
     this.statusStrip.PerformLayout();
     this.MainMenu.ResumeLayout(false);
     this.MainMenu.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Workbench));
     this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.closeCurrentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeAllButCurrentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitWithoutSavingLayoutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStripMain = new System.Windows.Forms.MenuStrip();
     this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.outputWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolBarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.statusBarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.subFormStatusBarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.styleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.lockLayoutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showDocumentIconToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.schemaVS2005ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.schemaVS2003ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.documentStyleDockingMDIToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.documentStyleDockingSDIToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.documentStyleDockingWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.documentStyleSystemMDIToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.windowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newInstanceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuStripOfNotify = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.exitToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.menuStripMain.SuspendLayout();
     this.contextMenuStripOfNotify.SuspendLayout();
     this.SuspendLayout();
     //
     // dockPanel
     //
     this.dockPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dockPanel.DockBackColor = System.Drawing.SystemColors.AppWorkspace;
     this.dockPanel.Location = new System.Drawing.Point(0, 24);
     this.dockPanel.Name = "dockPanel";
     this.dockPanel.Size = new System.Drawing.Size(747, 331);
     dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight;
     autoHideStripSkin1.DockStripGradient = dockPanelGradient1;
     tabGradient1.EndColor = System.Drawing.SystemColors.Control;
     tabGradient1.StartColor = System.Drawing.SystemColors.Control;
     tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin1.TabGradient = tabGradient1;
     autoHideStripSkin1.TextFont = new System.Drawing.Font("Segoe UI", 9F);
     dockPanelSkin1.AutoHideStripSkin = autoHideStripSkin1;
     tabGradient2.EndColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.StartColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.ActiveTabGradient = tabGradient2;
     dockPanelGradient2.EndColor = System.Drawing.SystemColors.Control;
     dockPanelGradient2.StartColor = System.Drawing.SystemColors.Control;
     dockPaneStripGradient1.DockStripGradient = dockPanelGradient2;
     tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.InactiveTabGradient = tabGradient3;
     dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1;
     dockPaneStripSkin1.TextFont = new System.Drawing.Font("Segoe UI", 9F);
     tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption;
     tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption;
     tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
     dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4;
     tabGradient5.EndColor = System.Drawing.SystemColors.Control;
     tabGradient5.StartColor = System.Drawing.SystemColors.Control;
     tabGradient5.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5;
     dockPanelGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3;
     tabGradient6.EndColor = System.Drawing.SystemColors.InactiveCaption;
     tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.TextColor = System.Drawing.SystemColors.InactiveCaptionText;
     dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6;
     tabGradient7.EndColor = System.Drawing.Color.Transparent;
     tabGradient7.StartColor = System.Drawing.Color.Transparent;
     tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7;
     dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1;
     dockPanelSkin1.DockPaneStripSkin = dockPaneStripSkin1;
     this.dockPanel.Skin = dockPanelSkin1;
     this.dockPanel.TabIndex = 0;
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newToolStripMenuItem,
     this.openToolStripMenuItem,
     this.toolStripSeparator1,
     this.closeCurrentToolStripMenuItem,
     this.closeAllToolStripMenuItem,
     this.closeAllButCurrentToolStripMenuItem,
     this.toolStripSeparator2,
     this.exitToolStripMenuItem,
     this.exitWithoutSavingLayoutToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // newToolStripMenuItem
     //
     this.newToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.aboutToolStripMenuItem});
     this.newToolStripMenuItem.Name = "newToolStripMenuItem";
     this.newToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
     this.newToolStripMenuItem.Text = "&New";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.aboutToolStripMenuItem.Text = "About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Name = "openToolStripMenuItem";
     this.openToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
     this.openToolStripMenuItem.Text = "&Open";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(212, 6);
     //
     // closeCurrentToolStripMenuItem
     //
     this.closeCurrentToolStripMenuItem.Name = "closeCurrentToolStripMenuItem";
     this.closeCurrentToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
     this.closeCurrentToolStripMenuItem.Text = "&Close Current";
     this.closeCurrentToolStripMenuItem.Click += new System.EventHandler(this.menuItemClose_Click);
     //
     // closeAllToolStripMenuItem
     //
     this.closeAllToolStripMenuItem.Name = "closeAllToolStripMenuItem";
     this.closeAllToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
     this.closeAllToolStripMenuItem.Text = "Close &All";
     this.closeAllToolStripMenuItem.Click += new System.EventHandler(this.menuItemClose_Click);
     //
     // closeAllButCurrentToolStripMenuItem
     //
     this.closeAllButCurrentToolStripMenuItem.Name = "closeAllButCurrentToolStripMenuItem";
     this.closeAllButCurrentToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
     this.closeAllButCurrentToolStripMenuItem.Text = "Close All But Current";
     this.closeAllButCurrentToolStripMenuItem.Click += new System.EventHandler(this.menuItemClose_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(212, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
     this.exitToolStripMenuItem.Text = "&Exit";
     //
     // exitWithoutSavingLayoutToolStripMenuItem
     //
     this.exitWithoutSavingLayoutToolStripMenuItem.Name = "exitWithoutSavingLayoutToolStripMenuItem";
     this.exitWithoutSavingLayoutToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
     this.exitWithoutSavingLayoutToolStripMenuItem.Text = "Exit Without Saving Layout";
     //
     // menuStripMain
     //
     this.menuStripMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.viewToolStripMenuItem,
     this.styleToolStripMenuItem,
     this.toolsToolStripMenuItem,
     this.windowToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menuStripMain.Location = new System.Drawing.Point(0, 0);
     this.menuStripMain.Name = "menuStripMain";
     this.menuStripMain.Size = new System.Drawing.Size(747, 24);
     this.menuStripMain.TabIndex = 2;
     this.menuStripMain.Text = "menuStrip1";
     //
     // viewToolStripMenuItem
     //
     this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.outputWindowToolStripMenuItem,
     this.toolBarToolStripMenuItem,
     this.statusBarToolStripMenuItem,
     this.toolStripSeparator5,
     this.subFormStatusBarToolStripMenuItem});
     this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
     this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.viewToolStripMenuItem.Text = "&View";
     this.viewToolStripMenuItem.DropDownOpening += new System.EventHandler(this.viewToolStripMenuItem_DropDownOpening);
     //
     // outputWindowToolStripMenuItem
     //
     this.outputWindowToolStripMenuItem.Name = "outputWindowToolStripMenuItem";
     this.outputWindowToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.outputWindowToolStripMenuItem.Text = "&Output Window";
     this.outputWindowToolStripMenuItem.Click += new System.EventHandler(this.outputWindowToolStripMenuItem_Click);
     //
     // toolBarToolStripMenuItem
     //
     this.toolBarToolStripMenuItem.Name = "toolBarToolStripMenuItem";
     this.toolBarToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.toolBarToolStripMenuItem.Text = "Tool &Bar";
     this.toolBarToolStripMenuItem.Click += new System.EventHandler(this.toolBarToolStripMenuItem_Click);
     //
     // statusBarToolStripMenuItem
     //
     this.statusBarToolStripMenuItem.Name = "statusBarToolStripMenuItem";
     this.statusBarToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.statusBarToolStripMenuItem.Text = "Status B&ar";
     this.statusBarToolStripMenuItem.Click += new System.EventHandler(this.statusBarToolStripMenuItem_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(177, 6);
     //
     // subFormStatusBarToolStripMenuItem
     //
     this.subFormStatusBarToolStripMenuItem.Name = "subFormStatusBarToolStripMenuItem";
     this.subFormStatusBarToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.subFormStatusBarToolStripMenuItem.Text = "Sub Form Status Bar";
     this.subFormStatusBarToolStripMenuItem.Click += new System.EventHandler(this.subFormStatusBarToolStripMenuItem_Click);
     //
     // styleToolStripMenuItem
     //
     this.styleToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.lockLayoutToolStripMenuItem,
     this.showDocumentIconToolStripMenuItem,
     this.toolStripSeparator3,
     this.schemaVS2005ToolStripMenuItem,
     this.schemaVS2003ToolStripMenuItem,
     this.toolStripSeparator4,
     this.documentStyleDockingMDIToolStripMenuItem,
     this.documentStyleDockingSDIToolStripMenuItem,
     this.documentStyleDockingWindowToolStripMenuItem,
     this.documentStyleSystemMDIToolStripMenuItem});
     this.styleToolStripMenuItem.Name = "styleToolStripMenuItem";
     this.styleToolStripMenuItem.Size = new System.Drawing.Size(49, 20);
     this.styleToolStripMenuItem.Text = "&Styles";
     this.styleToolStripMenuItem.DropDownOpening += new System.EventHandler(this.styleToolStripMenuItem_DropDownOpening);
     //
     // lockLayoutToolStripMenuItem
     //
     this.lockLayoutToolStripMenuItem.Name = "lockLayoutToolStripMenuItem";
     this.lockLayoutToolStripMenuItem.Size = new System.Drawing.Size(255, 22);
     this.lockLayoutToolStripMenuItem.Text = "&Lock Layout";
     this.lockLayoutToolStripMenuItem.Click += new System.EventHandler(this.lockLayoutToolStripMenuItem_Click);
     //
     // showDocumentIconToolStripMenuItem
     //
     this.showDocumentIconToolStripMenuItem.Name = "showDocumentIconToolStripMenuItem";
     this.showDocumentIconToolStripMenuItem.Size = new System.Drawing.Size(255, 22);
     this.showDocumentIconToolStripMenuItem.Text = "&Show Document Icon";
     this.showDocumentIconToolStripMenuItem.Click += new System.EventHandler(this.showDocumentIconToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(252, 6);
     //
     // schemaVS2005ToolStripMenuItem
     //
     this.schemaVS2005ToolStripMenuItem.Name = "schemaVS2005ToolStripMenuItem";
     this.schemaVS2005ToolStripMenuItem.Size = new System.Drawing.Size(255, 22);
     this.schemaVS2005ToolStripMenuItem.Text = "Schema: VS200&5";
     this.schemaVS2005ToolStripMenuItem.Click += new System.EventHandler(this.SetSchema);
     //
     // schemaVS2003ToolStripMenuItem
     //
     this.schemaVS2003ToolStripMenuItem.Name = "schemaVS2003ToolStripMenuItem";
     this.schemaVS2003ToolStripMenuItem.Size = new System.Drawing.Size(255, 22);
     this.schemaVS2003ToolStripMenuItem.Text = "Schema: VS200&3";
     this.schemaVS2003ToolStripMenuItem.Click += new System.EventHandler(this.SetSchema);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(252, 6);
     //
     // documentStyleDockingMDIToolStripMenuItem
     //
     this.documentStyleDockingMDIToolStripMenuItem.Name = "documentStyleDockingMDIToolStripMenuItem";
     this.documentStyleDockingMDIToolStripMenuItem.Size = new System.Drawing.Size(255, 22);
     this.documentStyleDockingMDIToolStripMenuItem.Text = "Document Style: Docking &MDI";
     this.documentStyleDockingMDIToolStripMenuItem.Click += new System.EventHandler(this.SetDocumentStyle);
     //
     // documentStyleDockingSDIToolStripMenuItem
     //
     this.documentStyleDockingSDIToolStripMenuItem.Name = "documentStyleDockingSDIToolStripMenuItem";
     this.documentStyleDockingSDIToolStripMenuItem.Size = new System.Drawing.Size(255, 22);
     this.documentStyleDockingSDIToolStripMenuItem.Text = "Document Style: Docking &SDI";
     this.documentStyleDockingSDIToolStripMenuItem.Click += new System.EventHandler(this.SetDocumentStyle);
     //
     // documentStyleDockingWindowToolStripMenuItem
     //
     this.documentStyleDockingWindowToolStripMenuItem.Name = "documentStyleDockingWindowToolStripMenuItem";
     this.documentStyleDockingWindowToolStripMenuItem.Size = new System.Drawing.Size(255, 22);
     this.documentStyleDockingWindowToolStripMenuItem.Text = "Document Style: Docking &Window";
     this.documentStyleDockingWindowToolStripMenuItem.Click += new System.EventHandler(this.SetDocumentStyle);
     //
     // documentStyleSystemMDIToolStripMenuItem
     //
     this.documentStyleSystemMDIToolStripMenuItem.Name = "documentStyleSystemMDIToolStripMenuItem";
     this.documentStyleSystemMDIToolStripMenuItem.Size = new System.Drawing.Size(255, 22);
     this.documentStyleSystemMDIToolStripMenuItem.Text = "Document Style: S&ystem MDI";
     this.documentStyleSystemMDIToolStripMenuItem.Click += new System.EventHandler(this.SetDocumentStyle);
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.toolsToolStripMenuItem.Text = "Tools";
     //
     // windowToolStripMenuItem
     //
     this.windowToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newInstanceToolStripMenuItem});
     this.windowToolStripMenuItem.Name = "windowToolStripMenuItem";
     this.windowToolStripMenuItem.Size = new System.Drawing.Size(63, 20);
     this.windowToolStripMenuItem.Text = "&Window";
     //
     // newInstanceToolStripMenuItem
     //
     this.newInstanceToolStripMenuItem.Name = "newInstanceToolStripMenuItem";
     this.newInstanceToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
     this.newInstanceToolStripMenuItem.Text = "New Instance";
     this.newInstanceToolStripMenuItem.Click += new System.EventHandler(this.newInstanceToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.aboutToolStripMenuItem1});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "Help";
     //
     // aboutToolStripMenuItem1
     //
     this.aboutToolStripMenuItem1.Name = "aboutToolStripMenuItem1";
     this.aboutToolStripMenuItem1.Size = new System.Drawing.Size(107, 22);
     this.aboutToolStripMenuItem1.Text = "About";
     this.aboutToolStripMenuItem1.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // contextMenuStripOfNotify
     //
     this.contextMenuStripOfNotify.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exitToolStripMenuItem1});
     this.contextMenuStripOfNotify.Name = "contextMenuStripOfNotify";
     this.contextMenuStripOfNotify.Size = new System.Drawing.Size(93, 26);
     //
     // exitToolStripMenuItem1
     //
     this.exitToolStripMenuItem1.Name = "exitToolStripMenuItem1";
     this.exitToolStripMenuItem1.Size = new System.Drawing.Size(92, 22);
     this.exitToolStripMenuItem1.Text = "Exit";
     this.exitToolStripMenuItem1.Click += new System.EventHandler(this.menuItemExit_Click);
     //
     // notifyIcon1
     //
     this.notifyIcon1.ContextMenuStrip = this.contextMenuStripOfNotify;
     this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
     this.notifyIcon1.Text = "Justin.Toolbox";
     this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
     //
     // Workbench
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(747, 355);
     this.Controls.Add(this.dockPanel);
     this.Controls.Add(this.menuStripMain);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.MainMenuStrip = this.menuStripMain;
     this.Name = "Workbench";
     this.Text = "Toolbox";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.WorkspaceBase_FormClosing);
     this.Load += new System.EventHandler(this.Workbench_Load);
     this.menuStripMain.ResumeLayout(false);
     this.menuStripMain.PerformLayout();
     this.contextMenuStripOfNotify.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #28
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.menuStrip = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
     this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAllStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.editToolStripMenu = new System.Windows.Forms.ToolStripMenuItem();
     this.undoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.redoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.findAndReplaceStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.replaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.goToToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.bookmarksToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toggleBookmarkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.previosBookmarkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.nextBookmarkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.clearBookmarsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.advancedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.makeUpperCaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.makeLowerCaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.commentStreamToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.commentLineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.uncommentLineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip = new System.Windows.Forms.ToolStrip();
     this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.saveAllToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator();
     this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator17 = new System.Windows.Forms.ToolStripSeparator();
     this.undoToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.redoToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.luaSyntaxCheckerBt = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.functionsCmbBx = new System.Windows.Forms.ToolStripComboBox();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.codeCheckerListView = new System.Windows.Forms.ListView();
     this.TypeHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.menuStrip.SuspendLayout();
     this.toolStrip.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // openFileDialog
     //
     this.openFileDialog.FileName = "openFileDialog";
     //
     // menuStrip
     //
     this.menuStrip.BackColor = System.Drawing.Color.White;
     this.menuStrip.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.editToolStripMenu});
     this.menuStrip.Location = new System.Drawing.Point(0, 0);
     this.menuStrip.Name = "menuStrip";
     this.menuStrip.Padding = new System.Windows.Forms.Padding(4, 2, 0, 2);
     this.menuStrip.Size = new System.Drawing.Size(593, 32);
     this.menuStrip.TabIndex = 17;
     this.menuStrip.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.AutoSize = false;
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newToolStripMenuItem,
     this.openToolStripMenuItem,
     this.toolStripSeparator11,
     this.closeToolStripMenuItem,
     this.toolStripSeparator,
     this.saveToolStripMenuItem,
     this.saveAsToolStripMenuItem,
     this.saveAllStripMenuItem,
     this.toolStripSeparator1});
     this.fileToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(61, 28);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // newToolStripMenuItem
     //
     this.newToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI Semibold", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.newToolStripMenuItem.Image = global::Krea.Properties.Resources.addFile;
     this.newToolStripMenuItem.Name = "newToolStripMenuItem";
     this.newToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
     this.newToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
     this.newToolStripMenuItem.Text = "&New";
     this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI Semibold", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.openToolStripMenuItem.Image = global::Krea.Properties.Resources.openIcon;
     this.openToolStripMenuItem.Name = "openToolStripMenuItem";
     this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.openToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
     this.openToolStripMenuItem.Text = "&Open...";
     this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
     //
     // toolStripSeparator11
     //
     this.toolStripSeparator11.Name = "toolStripSeparator11";
     this.toolStripSeparator11.Size = new System.Drawing.Size(181, 6);
     //
     // closeToolStripMenuItem
     //
     this.closeToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI Semibold", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.closeToolStripMenuItem.Image = global::Krea.Properties.Resources.deleteIcon;
     this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
     this.closeToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
     this.closeToolStripMenuItem.Text = "&Close";
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(181, 6);
     //
     // saveToolStripMenuItem
     //
     this.saveToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI Semibold", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.saveToolStripMenuItem.Image = global::Krea.Properties.Resources.saveIcon;
     this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
     this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.saveToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
     this.saveToolStripMenuItem.Text = "&Save";
     this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // saveAsToolStripMenuItem
     //
     this.saveAsToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI Semibold", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
     this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
     this.saveAsToolStripMenuItem.Text = "Save &As...";
     this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
     //
     // saveAllStripMenuItem
     //
     this.saveAllStripMenuItem.Font = new System.Drawing.Font("Segoe UI Semibold", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.saveAllStripMenuItem.Image = global::Krea.Properties.Resources.saveAllIcon;
     this.saveAllStripMenuItem.Name = "saveAllStripMenuItem";
     this.saveAllStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
     | System.Windows.Forms.Keys.S)));
     this.saveAllStripMenuItem.Size = new System.Drawing.Size(184, 22);
     this.saveAllStripMenuItem.Text = "Save A&ll";
     this.saveAllStripMenuItem.Click += new System.EventHandler(this.saveAllStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(181, 6);
     //
     // editToolStripMenu
     //
     this.editToolStripMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.undoToolStripMenuItem,
     this.redoToolStripMenuItem,
     this.toolStripSeparator3,
     this.cutToolStripMenuItem,
     this.copyToolStripMenuItem,
     this.pasteToolStripMenuItem,
     this.toolStripSeparator4,
     this.selectAllToolStripMenuItem,
     this.toolStripSeparator6,
     this.findAndReplaceStripMenuItem,
     this.goToToolStripMenuItem,
     this.toolStripSeparator7,
     this.bookmarksToolStripMenuItem,
     this.toolStripSeparator2,
     this.advancedToolStripMenuItem});
     this.editToolStripMenu.Name = "editToolStripMenu";
     this.editToolStripMenu.Size = new System.Drawing.Size(39, 28);
     this.editToolStripMenu.Text = "&Edit";
     //
     // undoToolStripMenuItem
     //
     this.undoToolStripMenuItem.Image = global::Krea.Properties.Resources.flecheGaucheIcon;
     this.undoToolStripMenuItem.Name = "undoToolStripMenuItem";
     this.undoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
     this.undoToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.undoToolStripMenuItem.Text = "&Undo";
     this.undoToolStripMenuItem.Click += new System.EventHandler(this.undoToolStripMenuItem_Click);
     //
     // redoToolStripMenuItem
     //
     this.redoToolStripMenuItem.Image = global::Krea.Properties.Resources.flecheDroiteIcon;
     this.redoToolStripMenuItem.Name = "redoToolStripMenuItem";
     this.redoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
     this.redoToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.redoToolStripMenuItem.Text = "&Redo";
     this.redoToolStripMenuItem.Click += new System.EventHandler(this.redoToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(161, 6);
     //
     // cutToolStripMenuItem
     //
     this.cutToolStripMenuItem.Image = global::Krea.Properties.Resources.cutIcon;
     this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
     this.cutToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
     this.cutToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.cutToolStripMenuItem.Text = "Cu&t";
     this.cutToolStripMenuItem.Click += new System.EventHandler(this.cutToolStripMenuItem_Click);
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Image = global::Krea.Properties.Resources.copyIcon;
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
     this.copyToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.copyToolStripMenuItem.Text = "&Copy";
     this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
     //
     // pasteToolStripMenuItem
     //
     this.pasteToolStripMenuItem.Image = global::Krea.Properties.Resources.pasteIcon;
     this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
     this.pasteToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
     this.pasteToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.pasteToolStripMenuItem.Text = "&Paste";
     this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(161, 6);
     //
     // selectAllToolStripMenuItem
     //
     this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
     this.selectAllToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
     this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.selectAllToolStripMenuItem.Text = "Select &All";
     this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(161, 6);
     //
     // findAndReplaceStripMenuItem
     //
     this.findAndReplaceStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.findToolStripMenuItem,
     this.replaceToolStripMenuItem});
     this.findAndReplaceStripMenuItem.Image = global::Krea.Properties.Resources.findIcon;
     this.findAndReplaceStripMenuItem.Name = "findAndReplaceStripMenuItem";
     this.findAndReplaceStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.findAndReplaceStripMenuItem.Text = "&Find and Replace";
     //
     // findToolStripMenuItem
     //
     this.findToolStripMenuItem.Name = "findToolStripMenuItem";
     this.findToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F)));
     this.findToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
     this.findToolStripMenuItem.Text = "&Find";
     this.findToolStripMenuItem.Click += new System.EventHandler(this.findToolStripMenuItem_Click);
     //
     // replaceToolStripMenuItem
     //
     this.replaceToolStripMenuItem.Name = "replaceToolStripMenuItem";
     this.replaceToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H)));
     this.replaceToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
     this.replaceToolStripMenuItem.Text = "&Replace";
     this.replaceToolStripMenuItem.Click += new System.EventHandler(this.replaceToolStripMenuItem_Click);
     //
     // goToToolStripMenuItem
     //
     this.goToToolStripMenuItem.Name = "goToToolStripMenuItem";
     this.goToToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.goToToolStripMenuItem.Text = "&Go To";
     this.goToToolStripMenuItem.Click += new System.EventHandler(this.goToToolStripMenuItem_Click);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(161, 6);
     //
     // bookmarksToolStripMenuItem
     //
     this.bookmarksToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toggleBookmarkToolStripMenuItem,
     this.previosBookmarkToolStripMenuItem,
     this.nextBookmarkToolStripMenuItem,
     this.clearBookmarsToolStripMenuItem});
     this.bookmarksToolStripMenuItem.Name = "bookmarksToolStripMenuItem";
     this.bookmarksToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.bookmarksToolStripMenuItem.Text = "Breakpoint";
     //
     // toggleBookmarkToolStripMenuItem
     //
     this.toggleBookmarkToolStripMenuItem.Name = "toggleBookmarkToolStripMenuItem";
     this.toggleBookmarkToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
     this.toggleBookmarkToolStripMenuItem.Text = "&Toggle Breakpoint";
     //
     // previosBookmarkToolStripMenuItem
     //
     this.previosBookmarkToolStripMenuItem.Name = "previosBookmarkToolStripMenuItem";
     this.previosBookmarkToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
     this.previosBookmarkToolStripMenuItem.Text = "&Previous Breakpoint";
     this.previosBookmarkToolStripMenuItem.Click += new System.EventHandler(this.previosBookmarkToolStripMenuItem_Click);
     //
     // nextBookmarkToolStripMenuItem
     //
     this.nextBookmarkToolStripMenuItem.Name = "nextBookmarkToolStripMenuItem";
     this.nextBookmarkToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
     this.nextBookmarkToolStripMenuItem.Text = "Next &Breakpoint";
     this.nextBookmarkToolStripMenuItem.Click += new System.EventHandler(this.nextBookmarkToolStripMenuItem_Click);
     //
     // clearBookmarsToolStripMenuItem
     //
     this.clearBookmarsToolStripMenuItem.Name = "clearBookmarsToolStripMenuItem";
     this.clearBookmarsToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
     this.clearBookmarsToolStripMenuItem.Text = "&Clear Breakpoint";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(161, 6);
     //
     // advancedToolStripMenuItem
     //
     this.advancedToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.makeUpperCaseToolStripMenuItem,
     this.makeLowerCaseToolStripMenuItem,
     this.commentStreamToolStripMenuItem,
     this.commentLineToolStripMenuItem,
     this.uncommentLineToolStripMenuItem});
     this.advancedToolStripMenuItem.Name = "advancedToolStripMenuItem";
     this.advancedToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
     this.advancedToolStripMenuItem.Text = "Ad&vanced";
     //
     // makeUpperCaseToolStripMenuItem
     //
     this.makeUpperCaseToolStripMenuItem.Name = "makeUpperCaseToolStripMenuItem";
     this.makeUpperCaseToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.makeUpperCaseToolStripMenuItem.Text = "Make &Upper Case";
     this.makeUpperCaseToolStripMenuItem.Click += new System.EventHandler(this.makeUpperCaseToolStripMenuItem_Click);
     //
     // makeLowerCaseToolStripMenuItem
     //
     this.makeLowerCaseToolStripMenuItem.Name = "makeLowerCaseToolStripMenuItem";
     this.makeLowerCaseToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.makeLowerCaseToolStripMenuItem.Text = "Make &Lower Case";
     this.makeLowerCaseToolStripMenuItem.Click += new System.EventHandler(this.makeLowerCaseToolStripMenuItem_Click);
     //
     // commentStreamToolStripMenuItem
     //
     this.commentStreamToolStripMenuItem.Name = "commentStreamToolStripMenuItem";
     this.commentStreamToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.commentStreamToolStripMenuItem.Text = "Comment (&Stream)";
     this.commentStreamToolStripMenuItem.Click += new System.EventHandler(this.commentStreamToolStripMenuItem_Click);
     //
     // commentLineToolStripMenuItem
     //
     this.commentLineToolStripMenuItem.Name = "commentLineToolStripMenuItem";
     this.commentLineToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.commentLineToolStripMenuItem.Text = "&Comment (Line)";
     this.commentLineToolStripMenuItem.Click += new System.EventHandler(this.commentLineToolStripMenuItem_Click);
     //
     // uncommentLineToolStripMenuItem
     //
     this.uncommentLineToolStripMenuItem.Name = "uncommentLineToolStripMenuItem";
     this.uncommentLineToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.uncommentLineToolStripMenuItem.Text = "&Uncomment (Line)";
     this.uncommentLineToolStripMenuItem.Click += new System.EventHandler(this.uncommentLineToolStripMenuItem_Click);
     //
     // toolStrip
     //
     this.toolStrip.BackColor = System.Drawing.Color.White;
     this.toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newToolStripButton,
     this.openToolStripButton,
     this.saveToolStripButton,
     this.saveAllToolStripButton,
     this.toolStripSeparator16,
     this.cutToolStripButton,
     this.copyToolStripButton,
     this.pasteToolStripButton,
     this.toolStripSeparator17,
     this.undoToolStripButton,
     this.redoToolStripButton,
     this.toolStripSeparator5,
     this.luaSyntaxCheckerBt});
     this.toolStrip.Location = new System.Drawing.Point(0, 32);
     this.toolStrip.Name = "toolStrip";
     this.toolStrip.Padding = new System.Windows.Forms.Padding(10, 0, 1, 0);
     this.toolStrip.Size = new System.Drawing.Size(593, 31);
     this.toolStrip.TabIndex = 18;
     //
     // newToolStripButton
     //
     this.newToolStripButton.AutoSize = false;
     this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.newToolStripButton.Image = global::Krea.Properties.Resources.addFile;
     this.newToolStripButton.Name = "newToolStripButton";
     this.newToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.newToolStripButton.Text = "New File (Ctrl+N)";
     this.newToolStripButton.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
     //
     // openToolStripButton
     //
     this.openToolStripButton.AutoSize = false;
     this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.openToolStripButton.Image = global::Krea.Properties.Resources.openIcon;
     this.openToolStripButton.Name = "openToolStripButton";
     this.openToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.openToolStripButton.Text = "Open File (Ctrl+O)";
     this.openToolStripButton.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
     //
     // saveToolStripButton
     //
     this.saveToolStripButton.AutoSize = false;
     this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.saveToolStripButton.Image = global::Krea.Properties.Resources.saveIcon;
     this.saveToolStripButton.Margin = new System.Windows.Forms.Padding(0);
     this.saveToolStripButton.Name = "saveToolStripButton";
     this.saveToolStripButton.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.saveToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.saveToolStripButton.Text = "Save File (Ctrl+S)";
     this.saveToolStripButton.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // saveAllToolStripButton
     //
     this.saveAllToolStripButton.AutoSize = false;
     this.saveAllToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.saveAllToolStripButton.Image = global::Krea.Properties.Resources.saveAllIcon;
     this.saveAllToolStripButton.Name = "saveAllToolStripButton";
     this.saveAllToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.saveAllToolStripButton.Text = "Save All Files (Ctrl+Shift+S)";
     this.saveAllToolStripButton.Click += new System.EventHandler(this.saveAllStripMenuItem_Click);
     //
     // toolStripSeparator16
     //
     this.toolStripSeparator16.Name = "toolStripSeparator16";
     this.toolStripSeparator16.Size = new System.Drawing.Size(6, 31);
     //
     // cutToolStripButton
     //
     this.cutToolStripButton.AutoSize = false;
     this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.cutToolStripButton.Image = global::Krea.Properties.Resources.cutIcon;
     this.cutToolStripButton.Name = "cutToolStripButton";
     this.cutToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.cutToolStripButton.Text = "Cut (Ctrl+X)";
     this.cutToolStripButton.Click += new System.EventHandler(this.cutToolStripMenuItem_Click);
     //
     // copyToolStripButton
     //
     this.copyToolStripButton.AutoSize = false;
     this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.copyToolStripButton.Image = global::Krea.Properties.Resources.copyIcon;
     this.copyToolStripButton.Name = "copyToolStripButton";
     this.copyToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.copyToolStripButton.Text = "Copy (Ctrl+C)";
     this.copyToolStripButton.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
     //
     // pasteToolStripButton
     //
     this.pasteToolStripButton.AutoSize = false;
     this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.pasteToolStripButton.Image = global::Krea.Properties.Resources.pasteIcon;
     this.pasteToolStripButton.Name = "pasteToolStripButton";
     this.pasteToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.pasteToolStripButton.Text = "Paste (Ctrl+V)";
     this.pasteToolStripButton.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
     //
     // toolStripSeparator17
     //
     this.toolStripSeparator17.Name = "toolStripSeparator17";
     this.toolStripSeparator17.Size = new System.Drawing.Size(6, 31);
     //
     // undoToolStripButton
     //
     this.undoToolStripButton.AutoSize = false;
     this.undoToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.undoToolStripButton.Image = global::Krea.Properties.Resources.flecheGaucheIcon;
     this.undoToolStripButton.Name = "undoToolStripButton";
     this.undoToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.undoToolStripButton.Text = "Undo (Ctrl+Z)";
     this.undoToolStripButton.Click += new System.EventHandler(this.undoToolStripMenuItem_Click);
     //
     // redoToolStripButton
     //
     this.redoToolStripButton.AutoSize = false;
     this.redoToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.redoToolStripButton.Image = global::Krea.Properties.Resources.flecheDroiteIcon;
     this.redoToolStripButton.Name = "redoToolStripButton";
     this.redoToolStripButton.Size = new System.Drawing.Size(28, 28);
     this.redoToolStripButton.Text = "Redo (Ctrl+Y)";
     this.redoToolStripButton.Click += new System.EventHandler(this.redoToolStripMenuItem_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 31);
     //
     // luaSyntaxCheckerBt
     //
     this.luaSyntaxCheckerBt.Checked = true;
     this.luaSyntaxCheckerBt.CheckState = System.Windows.Forms.CheckState.Checked;
     this.luaSyntaxCheckerBt.Image = global::Krea.Properties.Resources.luaCheckIcon;
     this.luaSyntaxCheckerBt.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.luaSyntaxCheckerBt.Name = "luaSyntaxCheckerBt";
     this.luaSyntaxCheckerBt.Size = new System.Drawing.Size(137, 28);
     this.luaSyntaxCheckerBt.Text = "Lua Syntax Checker";
     this.luaSyntaxCheckerBt.ToolTipText = "Enable/Disable the Lua syntax real time checking ";
     this.luaSyntaxCheckerBt.Click += new System.EventHandler(this.luaSyntaxCheckerBt_Click);
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.Color.White;
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.functionsCmbBx});
     this.toolStrip1.Location = new System.Drawing.Point(0, 63);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Padding = new System.Windows.Forms.Padding(10, 0, 1, 0);
     this.toolStrip1.Size = new System.Drawing.Size(593, 25);
     this.toolStrip1.TabIndex = 21;
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(68, 22);
     this.toolStripLabel1.Text = "Navigation:";
     //
     // functionsCmbBx
     //
     this.functionsCmbBx.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.functionsCmbBx.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.functionsCmbBx.BackColor = System.Drawing.SystemColors.Info;
     this.functionsCmbBx.ForeColor = System.Drawing.SystemColors.InfoText;
     this.functionsCmbBx.MaxDropDownItems = 100;
     this.functionsCmbBx.Name = "functionsCmbBx";
     this.functionsCmbBx.Size = new System.Drawing.Size(250, 25);
     this.functionsCmbBx.Sorted = true;
     this.functionsCmbBx.Text = "Select function";
     this.functionsCmbBx.SelectedIndexChanged += new System.EventHandler(this.functionsCmbBx_SelectedIndexChanged);
     //
     // codeCheckerListView
     //
     this.codeCheckerListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.TypeHeader,
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3});
     this.codeCheckerListView.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.codeCheckerListView.Location = new System.Drawing.Point(0, 272);
     this.codeCheckerListView.Name = "codeCheckerListView";
     this.codeCheckerListView.Size = new System.Drawing.Size(593, 64);
     this.codeCheckerListView.TabIndex = 22;
     this.codeCheckerListView.UseCompatibleStateImageBehavior = false;
     this.codeCheckerListView.View = System.Windows.Forms.View.Details;
     this.codeCheckerListView.ItemActivate += new System.EventHandler(this.codeCheckerListView_ItemActivate);
     //
     // TypeHeader
     //
     this.TypeHeader.Text = "Type";
     this.TypeHeader.Width = 82;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Description";
     this.columnHeader1.Width = 448;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "File";
     this.columnHeader2.Width = 152;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Line";
     this.columnHeader3.Width = 56;
     //
     // dockPanel
     //
     this.dockPanel.ActiveAutoHideContent = null;
     this.dockPanel.AllowEndUserDocking = false;
     this.dockPanel.AllowEndUserNestedDocking = false;
     this.dockPanel.AutoSize = true;
     this.dockPanel.BackColor = System.Drawing.Color.White;
     this.dockPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dockPanel.DockBackColor = System.Drawing.Color.White;
     this.dockPanel.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow;
     this.dockPanel.Font = new System.Drawing.Font("Tahoma", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.dockPanel.Location = new System.Drawing.Point(0, 88);
     this.dockPanel.Margin = new System.Windows.Forms.Padding(2);
     this.dockPanel.Name = "dockPanel";
     this.dockPanel.Size = new System.Drawing.Size(593, 184);
     dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight;
     autoHideStripSkin1.DockStripGradient = dockPanelGradient1;
     tabGradient1.EndColor = System.Drawing.SystemColors.Control;
     tabGradient1.StartColor = System.Drawing.SystemColors.Control;
     tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin1.TabGradient = tabGradient1;
     dockPanelSkin1.AutoHideStripSkin = autoHideStripSkin1;
     tabGradient2.EndColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.StartColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.ActiveTabGradient = tabGradient2;
     dockPanelGradient2.EndColor = System.Drawing.SystemColors.Control;
     dockPanelGradient2.StartColor = System.Drawing.SystemColors.Control;
     dockPaneStripGradient1.DockStripGradient = dockPanelGradient2;
     tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.InactiveTabGradient = tabGradient3;
     dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1;
     tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption;
     tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption;
     tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
     dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4;
     tabGradient5.EndColor = System.Drawing.SystemColors.Control;
     tabGradient5.StartColor = System.Drawing.SystemColors.Control;
     tabGradient5.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5;
     dockPanelGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3;
     tabGradient6.EndColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6;
     tabGradient7.EndColor = System.Drawing.Color.Transparent;
     tabGradient7.StartColor = System.Drawing.Color.Transparent;
     tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7;
     dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1;
     dockPanelSkin1.DockPaneStripSkin = dockPaneStripSkin1;
     this.dockPanel.Skin = dockPanelSkin1;
     this.dockPanel.TabIndex = 25;
     this.dockPanel.Tag = "false";
     this.dockPanel.ActiveDocumentChanged += new System.EventHandler(this.dockPanel_ActiveContentChanged_1);
     //
     // CGEeditor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.dockPanel);
     this.Controls.Add(this.codeCheckerListView);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.toolStrip);
     this.Controls.Add(this.menuStrip);
     this.Name = "CGEeditor";
     this.Size = new System.Drawing.Size(593, 336);
     this.Load += new System.EventHandler(this.CGEeditor_Load);
     this.MouseEnter += new System.EventHandler(this.CGEeditor_MouseEnter);
     this.MouseLeave += new System.EventHandler(this.CGEeditor_MouseLeave);
     this.menuStrip.ResumeLayout(false);
     this.menuStrip.PerformLayout();
     this.toolStrip.ResumeLayout(false);
     this.toolStrip.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #29
0
 /// <summary>
 /// デザイナー サポートに必要なメソッドです。このメソッドの内容を
 /// コード エディターで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
     this.dpMain = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.visualStudioToolStripExtender1 = new WeifenLuo.WinFormsUI.Docking.VisualStudioToolStripExtender(this.components);
     this.vS2005Theme1 = new WeifenLuo.WinFormsUI.Docking.VS2005Theme();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.tsslCompileError = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslCompileWarning = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslCompileStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this.TsslLineCol = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tssbOpen = new System.Windows.Forms.ToolStripSplitButton();
     this.tssbSave = new System.Windows.Forms.ToolStripSplitButton();
     this.tssbFind = new System.Windows.Forms.ToolStripSplitButton();
     this.tssbCompile = new System.Windows.Forms.ToolStripSplitButton();
     this.tssbStop = new System.Windows.Forms.ToolStripSplitButton();
     this.tssbSlow = new System.Windows.Forms.ToolStripSplitButton();
     this.tssbFast = new System.Windows.Forms.ToolStripSplitButton();
     this.tssbMIDIKbd = new System.Windows.Forms.ToolStripSplitButton();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.TsmiFile = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiNew = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiOpenFile = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiOpenFolder = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiGwiFileHistory = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiSaveFile = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiSaveAs = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.tsmiImport = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiExport = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.TsmiExit = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiEdit = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiUndo = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiRedo = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.TsmiFind = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiFindNext = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiFindPrevious = new System.Windows.Forms.ToolStripMenuItem();
     this.表示VToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiShowPartCounter = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiShowFolderTree = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiShowErrorList = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiShowLog = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiShowLyrics = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiShowMixer = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiShowMIDIKbd = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.TsmiFunctionKey = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiFncHide = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiFncButtonOnly = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiFncButtonAndText = new System.Windows.Forms.ToolStripMenuItem();
     this.コンパイルCToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiCompileAndPlay = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiCompileAndTracePlay = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiCompileAndSkipPlay = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiAllCompile = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiCompile = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiScript = new System.Windows.Forms.ToolStripMenuItem();
     this.ツールTToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiOption = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiHelp = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiTutorial = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiReference = new System.Windows.Forms.ToolStripMenuItem();
     this.TsmiAbout = new System.Windows.Forms.ToolStripMenuItem();
     this.timer = new System.Windows.Forms.Timer(this.components);
     this.statusStrip1.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // dpMain
     //
     this.dpMain.AllowDrop = true;
     resources.ApplyResources(this.dpMain, "dpMain");
     this.dpMain.Name = "dpMain";
     this.dpMain.ShowDocumentIcon = true;
     this.dpMain.ActiveDocumentChanged += new System.EventHandler(this.DpMain_ActiveDocumentChanged);
     this.dpMain.DragDrop += new System.Windows.Forms.DragEventHandler(this.DpMain_DragDrop);
     this.dpMain.DragOver += new System.Windows.Forms.DragEventHandler(this.DpMain_DragOver);
     //
     // visualStudioToolStripExtender1
     //
     this.visualStudioToolStripExtender1.DefaultRenderer = null;
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsslCompileError,
     this.tsslCompileWarning,
     this.tsslCompileStatus,
     this.TsslLineCol,
     this.toolStripStatusLabel1,
     this.tssbOpen,
     this.tssbSave,
     this.tssbFind,
     this.tssbCompile,
     this.tssbStop,
     this.tssbSlow,
     this.tssbFast,
     this.tssbMIDIKbd});
     resources.ApplyResources(this.statusStrip1, "statusStrip1");
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.ShowItemToolTips = true;
     //
     // tsslCompileError
     //
     this.tsslCompileError.AutoToolTip = true;
     this.tsslCompileError.Image = global::mml2vgmIDE.Properties.Resources.Error;
     resources.ApplyResources(this.tsslCompileError, "tsslCompileError");
     this.tsslCompileError.Name = "tsslCompileError";
     this.tsslCompileError.Click += new System.EventHandler(this.TsslCompileError_Click);
     //
     // tsslCompileWarning
     //
     this.tsslCompileWarning.AutoToolTip = true;
     this.tsslCompileWarning.Image = global::mml2vgmIDE.Properties.Resources.Warning;
     resources.ApplyResources(this.tsslCompileWarning, "tsslCompileWarning");
     this.tsslCompileWarning.Name = "tsslCompileWarning";
     this.tsslCompileWarning.Click += new System.EventHandler(this.TsslCompileWarning_Click);
     //
     // tsslCompileStatus
     //
     this.tsslCompileStatus.Name = "tsslCompileStatus";
     resources.ApplyResources(this.tsslCompileStatus, "tsslCompileStatus");
     //
     // TsslLineCol
     //
     this.TsslLineCol.Name = "TsslLineCol";
     resources.ApplyResources(this.TsslLineCol, "TsslLineCol");
     //
     // toolStripStatusLabel1
     //
     resources.ApplyResources(this.toolStripStatusLabel1, "toolStripStatusLabel1");
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Spring = true;
     //
     // tssbOpen
     //
     this.tssbOpen.DropDownButtonWidth = 0;
     this.tssbOpen.Image = global::mml2vgmIDE.Properties.Resources.F01;
     resources.ApplyResources(this.tssbOpen, "tssbOpen");
     this.tssbOpen.Name = "tssbOpen";
     this.tssbOpen.ButtonClick += new System.EventHandler(this.TssbOpen_ButtonClick);
     //
     // tssbSave
     //
     this.tssbSave.DropDownButtonWidth = 0;
     resources.ApplyResources(this.tssbSave, "tssbSave");
     this.tssbSave.Image = global::mml2vgmIDE.Properties.Resources.F02;
     this.tssbSave.Name = "tssbSave";
     this.tssbSave.ButtonClick += new System.EventHandler(this.TssbSave_ButtonClick);
     //
     // tssbFind
     //
     this.tssbFind.DropDownButtonWidth = 0;
     this.tssbFind.Image = global::mml2vgmIDE.Properties.Resources.F03;
     resources.ApplyResources(this.tssbFind, "tssbFind");
     this.tssbFind.Name = "tssbFind";
     this.tssbFind.ButtonClick += new System.EventHandler(this.TssbFind_ButtonClick);
     //
     // tssbCompile
     //
     this.tssbCompile.DropDownButtonWidth = 0;
     this.tssbCompile.Image = global::mml2vgmIDE.Properties.Resources.F05;
     resources.ApplyResources(this.tssbCompile, "tssbCompile");
     this.tssbCompile.Name = "tssbCompile";
     this.tssbCompile.ButtonClick += new System.EventHandler(this.TssbCompile_ButtonClick);
     //
     // tssbStop
     //
     this.tssbStop.DropDownButtonWidth = 0;
     this.tssbStop.Image = global::mml2vgmIDE.Properties.Resources.F09;
     resources.ApplyResources(this.tssbStop, "tssbStop");
     this.tssbStop.Name = "tssbStop";
     this.tssbStop.ButtonClick += new System.EventHandler(this.TssbStop_ButtonClick);
     //
     // tssbSlow
     //
     this.tssbSlow.DropDownButtonWidth = 0;
     this.tssbSlow.Image = global::mml2vgmIDE.Properties.Resources.F10;
     resources.ApplyResources(this.tssbSlow, "tssbSlow");
     this.tssbSlow.Name = "tssbSlow";
     this.tssbSlow.ButtonClick += new System.EventHandler(this.TssbSlow_ButtonClick);
     //
     // tssbFast
     //
     this.tssbFast.DropDownButtonWidth = 0;
     this.tssbFast.Image = global::mml2vgmIDE.Properties.Resources.F11;
     resources.ApplyResources(this.tssbFast, "tssbFast");
     this.tssbFast.Name = "tssbFast";
     this.tssbFast.ButtonClick += new System.EventHandler(this.TssbFast_ButtonClick);
     //
     // tssbMIDIKbd
     //
     this.tssbMIDIKbd.DropDownButtonWidth = 0;
     this.tssbMIDIKbd.Image = global::mml2vgmIDE.Properties.Resources.F12;
     resources.ApplyResources(this.tssbMIDIKbd, "tssbMIDIKbd");
     this.tssbMIDIKbd.Name = "tssbMIDIKbd";
     this.tssbMIDIKbd.ButtonClick += new System.EventHandler(this.TssbMIDIKbd_ButtonClick);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TsmiFile,
     this.TsmiEdit,
     this.表示VToolStripMenuItem,
     this.コンパイルCToolStripMenuItem,
     this.tsmiScript,
     this.ツールTToolStripMenuItem,
     this.TsmiHelp});
     resources.ApplyResources(this.menuStrip1, "menuStrip1");
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Stretch = false;
     //
     // TsmiFile
     //
     this.TsmiFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TsmiNew,
     this.TsmiOpenFile,
     this.TsmiOpenFolder,
     this.tsmiGwiFileHistory,
     this.TsmiSaveFile,
     this.TsmiSaveAs,
     this.toolStripSeparator2,
     this.tsmiImport,
     this.tsmiExport,
     this.toolStripSeparator1,
     this.TsmiExit});
     this.TsmiFile.Name = "TsmiFile";
     resources.ApplyResources(this.TsmiFile, "TsmiFile");
     //
     // TsmiNew
     //
     this.TsmiNew.Name = "TsmiNew";
     resources.ApplyResources(this.TsmiNew, "TsmiNew");
     this.TsmiNew.Click += new System.EventHandler(this.TsmiNew_Click);
     //
     // TsmiOpenFile
     //
     this.TsmiOpenFile.Name = "TsmiOpenFile";
     resources.ApplyResources(this.TsmiOpenFile, "TsmiOpenFile");
     this.TsmiOpenFile.Click += new System.EventHandler(this.TsmiFileOpen_Click);
     //
     // TsmiOpenFolder
     //
     resources.ApplyResources(this.TsmiOpenFolder, "TsmiOpenFolder");
     this.TsmiOpenFolder.Name = "TsmiOpenFolder";
     this.TsmiOpenFolder.Click += new System.EventHandler(this.TsmiOpenFolder_Click);
     //
     // tsmiGwiFileHistory
     //
     this.tsmiGwiFileHistory.Name = "tsmiGwiFileHistory";
     resources.ApplyResources(this.tsmiGwiFileHistory, "tsmiGwiFileHistory");
     //
     // TsmiSaveFile
     //
     resources.ApplyResources(this.TsmiSaveFile, "TsmiSaveFile");
     this.TsmiSaveFile.Name = "TsmiSaveFile";
     this.TsmiSaveFile.Click += new System.EventHandler(this.TsmiSaveFile_Click);
     //
     // TsmiSaveAs
     //
     resources.ApplyResources(this.TsmiSaveAs, "TsmiSaveAs");
     this.TsmiSaveAs.Name = "TsmiSaveAs";
     this.TsmiSaveAs.Click += new System.EventHandler(this.TsmiSaveAs_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
     //
     // tsmiImport
     //
     this.tsmiImport.Name = "tsmiImport";
     resources.ApplyResources(this.tsmiImport, "tsmiImport");
     this.tsmiImport.Click += new System.EventHandler(this.TsmiImport_Click);
     //
     // tsmiExport
     //
     this.tsmiExport.Name = "tsmiExport";
     resources.ApplyResources(this.tsmiExport, "tsmiExport");
     this.tsmiExport.Click += new System.EventHandler(this.TsmiExport_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
     //
     // TsmiExit
     //
     this.TsmiExit.Name = "TsmiExit";
     resources.ApplyResources(this.TsmiExit, "TsmiExit");
     this.TsmiExit.Click += new System.EventHandler(this.TsmiExit_Click);
     //
     // TsmiEdit
     //
     this.TsmiEdit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TsmiUndo,
     this.TsmiRedo,
     this.toolStripSeparator4,
     this.TsmiFind,
     this.TsmiFindNext,
     this.TsmiFindPrevious});
     this.TsmiEdit.Name = "TsmiEdit";
     resources.ApplyResources(this.TsmiEdit, "TsmiEdit");
     //
     // TsmiUndo
     //
     resources.ApplyResources(this.TsmiUndo, "TsmiUndo");
     this.TsmiUndo.Name = "TsmiUndo";
     this.TsmiUndo.Click += new System.EventHandler(this.TsmiUndo_Click);
     //
     // TsmiRedo
     //
     resources.ApplyResources(this.TsmiRedo, "TsmiRedo");
     this.TsmiRedo.Name = "TsmiRedo";
     this.TsmiRedo.Click += new System.EventHandler(this.TsmiRedo_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     resources.ApplyResources(this.toolStripSeparator4, "toolStripSeparator4");
     //
     // TsmiFind
     //
     this.TsmiFind.Name = "TsmiFind";
     resources.ApplyResources(this.TsmiFind, "TsmiFind");
     this.TsmiFind.Click += new System.EventHandler(this.TsmiFind_Click);
     //
     // TsmiFindNext
     //
     this.TsmiFindNext.Name = "TsmiFindNext";
     resources.ApplyResources(this.TsmiFindNext, "TsmiFindNext");
     this.TsmiFindNext.Click += new System.EventHandler(this.TsmiFindNext_Click);
     //
     // TsmiFindPrevious
     //
     this.TsmiFindPrevious.Name = "TsmiFindPrevious";
     resources.ApplyResources(this.TsmiFindPrevious, "TsmiFindPrevious");
     this.TsmiFindPrevious.Click += new System.EventHandler(this.TsmiFindPrevious_Click);
     //
     // 表示VToolStripMenuItem
     //
     this.表示VToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TsmiShowPartCounter,
     this.TsmiShowFolderTree,
     this.TsmiShowErrorList,
     this.TsmiShowLog,
     this.TsmiShowLyrics,
     this.TsmiShowMixer,
     this.TsmiShowMIDIKbd,
     this.toolStripSeparator3,
     this.TsmiFunctionKey});
     this.表示VToolStripMenuItem.Name = "表示VToolStripMenuItem";
     resources.ApplyResources(this.表示VToolStripMenuItem, "表示VToolStripMenuItem");
     //
     // TsmiShowPartCounter
     //
     this.TsmiShowPartCounter.Name = "TsmiShowPartCounter";
     resources.ApplyResources(this.TsmiShowPartCounter, "TsmiShowPartCounter");
     this.TsmiShowPartCounter.Click += new System.EventHandler(this.TsmiShowPartCounter_Click);
     //
     // TsmiShowFolderTree
     //
     this.TsmiShowFolderTree.Name = "TsmiShowFolderTree";
     resources.ApplyResources(this.TsmiShowFolderTree, "TsmiShowFolderTree");
     this.TsmiShowFolderTree.Click += new System.EventHandler(this.TsmiShowFolderTree_Click);
     //
     // TsmiShowErrorList
     //
     this.TsmiShowErrorList.Name = "TsmiShowErrorList";
     resources.ApplyResources(this.TsmiShowErrorList, "TsmiShowErrorList");
     this.TsmiShowErrorList.Click += new System.EventHandler(this.TsmiShowErrorList_Click);
     //
     // TsmiShowLog
     //
     this.TsmiShowLog.Name = "TsmiShowLog";
     resources.ApplyResources(this.TsmiShowLog, "TsmiShowLog");
     this.TsmiShowLog.Click += new System.EventHandler(this.TsmiShowLog_Click);
     //
     // TsmiShowLyrics
     //
     this.TsmiShowLyrics.Name = "TsmiShowLyrics";
     resources.ApplyResources(this.TsmiShowLyrics, "TsmiShowLyrics");
     this.TsmiShowLyrics.Click += new System.EventHandler(this.TsmiShowLyrics_Click);
     //
     // TsmiShowMixer
     //
     this.TsmiShowMixer.Name = "TsmiShowMixer";
     resources.ApplyResources(this.TsmiShowMixer, "TsmiShowMixer");
     this.TsmiShowMixer.Click += new System.EventHandler(this.TsmiShowMixer_Click);
     //
     // TsmiShowMIDIKbd
     //
     this.TsmiShowMIDIKbd.Name = "TsmiShowMIDIKbd";
     resources.ApplyResources(this.TsmiShowMIDIKbd, "TsmiShowMIDIKbd");
     this.TsmiShowMIDIKbd.Click += new System.EventHandler(this.TsmiShowMIDIKbd_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
     //
     // TsmiFunctionKey
     //
     this.TsmiFunctionKey.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TsmiFncHide,
     this.TsmiFncButtonOnly,
     this.TsmiFncButtonAndText});
     this.TsmiFunctionKey.Name = "TsmiFunctionKey";
     resources.ApplyResources(this.TsmiFunctionKey, "TsmiFunctionKey");
     //
     // TsmiFncHide
     //
     this.TsmiFncHide.Name = "TsmiFncHide";
     resources.ApplyResources(this.TsmiFncHide, "TsmiFncHide");
     this.TsmiFncHide.Click += new System.EventHandler(this.TsmiFncHide_Click);
     //
     // TsmiFncButtonOnly
     //
     this.TsmiFncButtonOnly.Name = "TsmiFncButtonOnly";
     resources.ApplyResources(this.TsmiFncButtonOnly, "TsmiFncButtonOnly");
     this.TsmiFncButtonOnly.Click += new System.EventHandler(this.TsmiFncButtonOnly_Click);
     //
     // TsmiFncButtonAndText
     //
     this.TsmiFncButtonAndText.Name = "TsmiFncButtonAndText";
     resources.ApplyResources(this.TsmiFncButtonAndText, "TsmiFncButtonAndText");
     this.TsmiFncButtonAndText.Click += new System.EventHandler(this.TsmiFncButtonAndText_Click);
     //
     // コンパイルCToolStripMenuItem
     //
     this.コンパイルCToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TsmiCompileAndPlay,
     this.TsmiCompileAndTracePlay,
     this.TsmiCompileAndSkipPlay,
     this.TsmiAllCompile,
     this.TsmiCompile});
     this.コンパイルCToolStripMenuItem.Name = "コンパイルCToolStripMenuItem";
     resources.ApplyResources(this.コンパイルCToolStripMenuItem, "コンパイルCToolStripMenuItem");
     //
     // TsmiCompileAndPlay
     //
     this.TsmiCompileAndPlay.Name = "TsmiCompileAndPlay";
     resources.ApplyResources(this.TsmiCompileAndPlay, "TsmiCompileAndPlay");
     this.TsmiCompileAndPlay.Click += new System.EventHandler(this.TsmiCompileAndPlay_Click);
     //
     // TsmiCompileAndTracePlay
     //
     this.TsmiCompileAndTracePlay.Name = "TsmiCompileAndTracePlay";
     resources.ApplyResources(this.TsmiCompileAndTracePlay, "TsmiCompileAndTracePlay");
     this.TsmiCompileAndTracePlay.Click += new System.EventHandler(this.TsmiCompileAndTracePlay_Click);
     //
     // TsmiCompileAndSkipPlay
     //
     this.TsmiCompileAndSkipPlay.Name = "TsmiCompileAndSkipPlay";
     resources.ApplyResources(this.TsmiCompileAndSkipPlay, "TsmiCompileAndSkipPlay");
     this.TsmiCompileAndSkipPlay.Click += new System.EventHandler(this.TsmiCompileAndSkipPlay_Click);
     //
     // TsmiAllCompile
     //
     resources.ApplyResources(this.TsmiAllCompile, "TsmiAllCompile");
     this.TsmiAllCompile.Name = "TsmiAllCompile";
     //
     // TsmiCompile
     //
     this.TsmiCompile.Name = "TsmiCompile";
     resources.ApplyResources(this.TsmiCompile, "TsmiCompile");
     this.TsmiCompile.Click += new System.EventHandler(this.TsmiCompile_Click);
     //
     // tsmiScript
     //
     this.tsmiScript.Name = "tsmiScript";
     resources.ApplyResources(this.tsmiScript, "tsmiScript");
     //
     // ツールTToolStripMenuItem
     //
     this.ツールTToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsmiOption});
     this.ツールTToolStripMenuItem.Name = "ツールTToolStripMenuItem";
     resources.ApplyResources(this.ツールTToolStripMenuItem, "ツールTToolStripMenuItem");
     //
     // tsmiOption
     //
     this.tsmiOption.Name = "tsmiOption";
     resources.ApplyResources(this.tsmiOption, "tsmiOption");
     this.tsmiOption.Click += new System.EventHandler(this.TsmiOption_Click);
     //
     // TsmiHelp
     //
     this.TsmiHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TsmiTutorial,
     this.TsmiReference,
     this.TsmiAbout});
     this.TsmiHelp.Name = "TsmiHelp";
     resources.ApplyResources(this.TsmiHelp, "TsmiHelp");
     //
     // TsmiTutorial
     //
     this.TsmiTutorial.Name = "TsmiTutorial";
     resources.ApplyResources(this.TsmiTutorial, "TsmiTutorial");
     this.TsmiTutorial.Click += new System.EventHandler(this.TsmiTutorial_Click);
     //
     // TsmiReference
     //
     this.TsmiReference.Name = "TsmiReference";
     resources.ApplyResources(this.TsmiReference, "TsmiReference");
     this.TsmiReference.Click += new System.EventHandler(this.TsmiReference_Click);
     //
     // TsmiAbout
     //
     this.TsmiAbout.Name = "TsmiAbout";
     resources.ApplyResources(this.TsmiAbout, "TsmiAbout");
     this.TsmiAbout.Click += new System.EventHandler(this.TsmiAbout_Click);
     //
     // timer
     //
     this.timer.Enabled = true;
     this.timer.Interval = 16;
     this.timer.Tick += new System.EventHandler(this.Timer_Tick);
     //
     // FrmMain
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.dpMain);
     this.KeyPreview = true;
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "FrmMain";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmMain_FormClosing);
     this.Load += new System.EventHandler(this.FrmMain_Load);
     this.Shown += new System.EventHandler(this.Form1_Shown);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmMain_KeyDown);
     this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.FrmMain_KeyUp);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FindPanel));
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.checkBoxMatchWholeWord = new System.Windows.Forms.CheckBox();
     this.checkBoxMatchCase = new System.Windows.Forms.CheckBox();
     this.textBoxLookFor = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.dockPanelResults = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.tableLayoutPanel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.panel2, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 55F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(586, 300);
     this.tableLayoutPanel1.TabIndex = 9;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.checkBoxMatchWholeWord);
     this.panel2.Controls.Add(this.checkBoxMatchCase);
     this.panel2.Controls.Add(this.textBoxLookFor);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(3, 248);
     this.panel2.MinimumSize = new System.Drawing.Size(180, 50);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(580, 50);
     this.panel2.TabIndex = 1;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(3, 6);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(56, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Fi&nd what:";
     //
     // checkBoxMatchWholeWord
     //
     this.checkBoxMatchWholeWord.AutoSize = true;
     this.checkBoxMatchWholeWord.Location = new System.Drawing.Point(155, 29);
     this.checkBoxMatchWholeWord.Name = "checkBoxMatchWholeWord";
     this.checkBoxMatchWholeWord.Size = new System.Drawing.Size(113, 17);
     this.checkBoxMatchWholeWord.TabIndex = 3;
     this.checkBoxMatchWholeWord.Text = "Match &whole word";
     this.checkBoxMatchWholeWord.UseVisualStyleBackColor = true;
     //
     // checkBoxMatchCase
     //
     this.checkBoxMatchCase.AutoSize = true;
     this.checkBoxMatchCase.Location = new System.Drawing.Point(67, 29);
     this.checkBoxMatchCase.Name = "checkBoxMatchCase";
     this.checkBoxMatchCase.Size = new System.Drawing.Size(82, 17);
     this.checkBoxMatchCase.TabIndex = 2;
     this.checkBoxMatchCase.Text = "Match &case";
     this.checkBoxMatchCase.UseVisualStyleBackColor = true;
     //
     // textBoxLookFor
     //
     this.textBoxLookFor.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxLookFor.Location = new System.Drawing.Point(61, 3);
     this.textBoxLookFor.Name = "textBoxLookFor";
     this.textBoxLookFor.Size = new System.Drawing.Size(516, 20);
     this.textBoxLookFor.TabIndex = 1;
     this.textBoxLookFor.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtLookFor_KeyDown);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.dockPanelResults);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(3, 3);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(580, 239);
     this.panel1.TabIndex = 2;
     //
     // dockPanelResults
     //
     this.dockPanelResults.ActiveAutoHideContent = null;
     this.dockPanelResults.AllowEndUserDocking = false;
     this.dockPanelResults.AllowEndUserNestedDocking = false;
     this.dockPanelResults.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dockPanelResults.DockBackColor = System.Drawing.SystemColors.ControlDark;
     this.dockPanelResults.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow;
     this.dockPanelResults.Location = new System.Drawing.Point(0, 0);
     this.dockPanelResults.Name = "dockPanelResults";
     this.dockPanelResults.ShowDocumentIcon = true;
     this.dockPanelResults.Size = new System.Drawing.Size(580, 239);
     dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight;
     autoHideStripSkin1.DockStripGradient = dockPanelGradient1;
     tabGradient1.EndColor = System.Drawing.SystemColors.Control;
     tabGradient1.StartColor = System.Drawing.SystemColors.Control;
     tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin1.TabGradient = tabGradient1;
     autoHideStripSkin1.TextFont = new System.Drawing.Font("Segoe UI", 9F);
     dockPanelSkin1.AutoHideStripSkin = autoHideStripSkin1;
     tabGradient2.EndColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.StartColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.ActiveTabGradient = tabGradient2;
     dockPanelGradient2.EndColor = System.Drawing.SystemColors.Control;
     dockPanelGradient2.StartColor = System.Drawing.SystemColors.Control;
     dockPaneStripGradient1.DockStripGradient = dockPanelGradient2;
     tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.InactiveTabGradient = tabGradient3;
     dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1;
     dockPaneStripSkin1.TextFont = new System.Drawing.Font("Segoe UI", 9F);
     tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption;
     tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption;
     tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
     dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4;
     tabGradient5.EndColor = System.Drawing.SystemColors.Control;
     tabGradient5.StartColor = System.Drawing.SystemColors.Control;
     tabGradient5.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5;
     dockPanelGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3;
     tabGradient6.EndColor = System.Drawing.SystemColors.InactiveCaption;
     tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.TextColor = System.Drawing.SystemColors.InactiveCaptionText;
     dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6;
     tabGradient7.EndColor = System.Drawing.Color.Transparent;
     tabGradient7.StartColor = System.Drawing.Color.Transparent;
     tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7;
     dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1;
     dockPanelSkin1.DockPaneStripSkin = dockPaneStripSkin1;
     this.dockPanelResults.Skin = dockPanelSkin1;
     this.dockPanelResults.TabIndex = 4;
     this.dockPanelResults.TabStop = true;
     //
     // FindPanel
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize = new System.Drawing.Size(586, 300);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize = new System.Drawing.Size(488, 160);
     this.Name = "FindPanel";
     this.Text = "Find and Highlight";
     this.tableLayoutPanel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }