/// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.Label            label1;
     System.Windows.Forms.Label            label2;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
     System.Windows.Forms.TableLayoutPanel userNameTableLayoutPanel;
     System.Windows.Forms.Label            userNameLabel;
     this.projectsDataGridView      = new System.Windows.Forms.DataGridView();
     this.titleLabel                = new System.Windows.Forms.Label();
     this.linesOfCodeDataGridView   = new System.Windows.Forms.DataGridView();
     this.submitButton              = new System.Windows.Forms.Button();
     this.userNameTextBox           = new System.Windows.Forms.TextBox();
     this.LinesOfCodeLanguageColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.LinesOfCodeCountColumn    = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.LinesOfCodeColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ProjectLanguageColumn     = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ProjectCountColumn        = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ProjectPercentColumn      = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.projectsPanel             = new GitHubLanguageStatistics.SquareCanvas();
     this.linesOfCodePanel          = new GitHubLanguageStatistics.SquareCanvas();
     label1                   = new System.Windows.Forms.Label();
     label2                   = new System.Windows.Forms.Label();
     tableLayoutPanel         = new System.Windows.Forms.TableLayoutPanel();
     userNameTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     userNameLabel            = new System.Windows.Forms.Label();
     tableLayoutPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.projectsDataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.linesOfCodeDataGridView)).BeginInit();
     userNameTableLayoutPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label1.Location = new System.Drawing.Point(3, 67);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(271, 25);
     label1.TabIndex = 10;
     label1.Text     = "Majority languages by project:";
     //
     // label2
     //
     label2.AutoSize = true;
     label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label2.Location = new System.Drawing.Point(3, 432);
     label2.Name     = "label2";
     label2.Size     = new System.Drawing.Size(256, 25);
     label2.TabIndex = 11;
     label2.Text     = "Languages by lines of code:";
     //
     // tableLayoutPanel
     //
     tableLayoutPanel.ColumnCount = 2;
     tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel.Controls.Add(this.linesOfCodeDataGridView, 1, 4);
     tableLayoutPanel.Controls.Add(this.titleLabel, 0, 1);
     tableLayoutPanel.Controls.Add(this.projectsDataGridView, 1, 2);
     tableLayoutPanel.Controls.Add(this.projectsPanel, 0, 3);
     tableLayoutPanel.Controls.Add(this.linesOfCodePanel, 0, 5);
     tableLayoutPanel.Controls.Add(userNameTableLayoutPanel, 0, 0);
     tableLayoutPanel.Controls.Add(label1, 0, 2);
     tableLayoutPanel.Controls.Add(label2, 0, 4);
     tableLayoutPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
     tableLayoutPanel.Name     = "tableLayoutPanel";
     tableLayoutPanel.RowCount = 6;
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel.Size     = new System.Drawing.Size(995, 797);
     tableLayoutPanel.TabIndex = 5;
     //
     // projectsDataGridView
     //
     this.projectsDataGridView.AllowUserToAddRows          = false;
     this.projectsDataGridView.AllowUserToDeleteRows       = false;
     this.projectsDataGridView.AllowUserToResizeColumns    = false;
     this.projectsDataGridView.AllowUserToResizeRows       = false;
     this.projectsDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.projectsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.ProjectLanguageColumn,
         this.ProjectCountColumn,
         this.ProjectPercentColumn
     });
     this.projectsDataGridView.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.projectsDataGridView.Location          = new System.Drawing.Point(343, 70);
     this.projectsDataGridView.MultiSelect       = false;
     this.projectsDataGridView.Name              = "projectsDataGridView";
     this.projectsDataGridView.RowHeadersVisible = false;
     this.projectsDataGridView.RowHeadersWidth   = 62;
     tableLayoutPanel.SetRowSpan(this.projectsDataGridView, 2);
     this.projectsDataGridView.RowTemplate.Height = 28;
     this.projectsDataGridView.Size     = new System.Drawing.Size(649, 359);
     this.projectsDataGridView.TabIndex = 0;
     //
     // titleLabel
     //
     this.titleLabel.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.titleLabel.AutoSize = true;
     tableLayoutPanel.SetColumnSpan(this.titleLabel, 2);
     this.titleLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.titleLabel.Location = new System.Drawing.Point(360, 42);
     this.titleLabel.Name     = "titleLabel";
     this.titleLabel.Size     = new System.Drawing.Size(274, 25);
     this.titleLabel.TabIndex = 4;
     this.titleLabel.Text     = "GitHub Language Statistics";
     //
     // linesOfCodeDataGridView
     //
     this.linesOfCodeDataGridView.AllowUserToAddRows          = false;
     this.linesOfCodeDataGridView.AllowUserToDeleteRows       = false;
     this.linesOfCodeDataGridView.AllowUserToResizeColumns    = false;
     this.linesOfCodeDataGridView.AllowUserToResizeRows       = false;
     this.linesOfCodeDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.linesOfCodeDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.LinesOfCodeLanguageColumn,
         this.LinesOfCodeCountColumn,
         this.LinesOfCodeColumn
     });
     this.linesOfCodeDataGridView.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.linesOfCodeDataGridView.Location          = new System.Drawing.Point(343, 435);
     this.linesOfCodeDataGridView.MultiSelect       = false;
     this.linesOfCodeDataGridView.Name              = "linesOfCodeDataGridView";
     this.linesOfCodeDataGridView.RowHeadersVisible = false;
     this.linesOfCodeDataGridView.RowHeadersWidth   = 62;
     tableLayoutPanel.SetRowSpan(this.linesOfCodeDataGridView, 2);
     this.linesOfCodeDataGridView.RowTemplate.Height = 28;
     this.linesOfCodeDataGridView.Size     = new System.Drawing.Size(649, 359);
     this.linesOfCodeDataGridView.TabIndex = 6;
     //
     // userNameTableLayoutPanel
     //
     userNameTableLayoutPanel.AutoSize     = true;
     userNameTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     userNameTableLayoutPanel.ColumnCount  = 3;
     tableLayoutPanel.SetColumnSpan(userNameTableLayoutPanel, 2);
     userNameTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     userNameTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     userNameTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     userNameTableLayoutPanel.Controls.Add(this.submitButton, 2, 0);
     userNameTableLayoutPanel.Controls.Add(userNameLabel, 0, 0);
     userNameTableLayoutPanel.Controls.Add(this.userNameTextBox, 1, 0);
     userNameTableLayoutPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     userNameTableLayoutPanel.Location = new System.Drawing.Point(3, 3);
     userNameTableLayoutPanel.Name     = "userNameTableLayoutPanel";
     userNameTableLayoutPanel.RowCount = 1;
     userNameTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     userNameTableLayoutPanel.Size     = new System.Drawing.Size(989, 36);
     userNameTableLayoutPanel.TabIndex = 9;
     //
     // submitButton
     //
     this.submitButton.AutoSize                = true;
     this.submitButton.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.submitButton.Location                = new System.Drawing.Point(661, 3);
     this.submitButton.Name                    = "submitButton";
     this.submitButton.Size                    = new System.Drawing.Size(69, 30);
     this.submitButton.TabIndex                = 3;
     this.submitButton.Text                    = "&Submit";
     this.submitButton.UseVisualStyleBackColor = true;
     this.submitButton.Click                  += new System.EventHandler(this.SubmitButton_Click);
     //
     // userNameLabel
     //
     userNameLabel.AutoSize  = true;
     userNameLabel.Dock      = System.Windows.Forms.DockStyle.Fill;
     userNameLabel.Location  = new System.Drawing.Point(3, 0);
     userNameLabel.Name      = "userNameLabel";
     userNameLabel.Size      = new System.Drawing.Size(323, 36);
     userNameLabel.TabIndex  = 1;
     userNameLabel.Text      = "User name:";
     userNameLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // userNameTextBox
     //
     this.userNameTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.userNameTextBox.Location = new System.Drawing.Point(332, 3);
     this.userNameTextBox.Name     = "userNameTextBox";
     this.userNameTextBox.Size     = new System.Drawing.Size(323, 26);
     this.userNameTextBox.TabIndex = 2;
     //
     // LinesOfCodeLanguageColumn
     //
     this.LinesOfCodeLanguageColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.LinesOfCodeLanguageColumn.DataPropertyName = "LanguageName";
     this.LinesOfCodeLanguageColumn.HeaderText       = "Language";
     this.LinesOfCodeLanguageColumn.MinimumWidth     = 8;
     this.LinesOfCodeLanguageColumn.Name             = "LinesOfCodeLanguageColumn";
     this.LinesOfCodeLanguageColumn.ReadOnly         = true;
     //
     // LinesOfCodeCountColumn
     //
     this.LinesOfCodeCountColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.LinesOfCodeCountColumn.DataPropertyName = "Count";
     this.LinesOfCodeCountColumn.HeaderText       = "Lines of code";
     this.LinesOfCodeCountColumn.MinimumWidth     = 8;
     this.LinesOfCodeCountColumn.Name             = "LinesOfCodeCountColumn";
     this.LinesOfCodeCountColumn.ReadOnly         = true;
     this.LinesOfCodeCountColumn.Width            = 140;
     //
     // LinesOfCodeColumn
     //
     this.LinesOfCodeColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.LinesOfCodeColumn.DataPropertyName = "Percent";
     this.LinesOfCodeColumn.HeaderText       = "Percent";
     this.LinesOfCodeColumn.MinimumWidth     = 8;
     this.LinesOfCodeColumn.Name             = "LinesOfCodeColumn";
     this.LinesOfCodeColumn.ReadOnly         = true;
     //
     // ProjectLanguageColumn
     //
     this.ProjectLanguageColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ProjectLanguageColumn.DataPropertyName = "LanguageName";
     this.ProjectLanguageColumn.HeaderText       = "Language";
     this.ProjectLanguageColumn.MinimumWidth     = 8;
     this.ProjectLanguageColumn.Name             = "ProjectLanguageColumn";
     this.ProjectLanguageColumn.ReadOnly         = true;
     //
     // ProjectCountColumn
     //
     this.ProjectCountColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ProjectCountColumn.DataPropertyName = "Count";
     this.ProjectCountColumn.HeaderText       = "Projects";
     this.ProjectCountColumn.MinimumWidth     = 8;
     this.ProjectCountColumn.Name             = "ProjectCountColumn";
     this.ProjectCountColumn.ReadOnly         = true;
     this.ProjectCountColumn.Width            = 102;
     //
     // ProjectPercentColumn
     //
     this.ProjectPercentColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ProjectPercentColumn.DataPropertyName = "Percent";
     this.ProjectPercentColumn.HeaderText       = "Percent";
     this.ProjectPercentColumn.MinimumWidth     = 8;
     this.ProjectPercentColumn.Name             = "ProjectPercentColumn";
     this.ProjectPercentColumn.ReadOnly         = true;
     //
     // projectsPanel
     //
     this.projectsPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.projectsPanel.Location = new System.Drawing.Point(3, 95);
     this.projectsPanel.Name     = "projectsPanel";
     this.projectsPanel.Size     = new System.Drawing.Size(334, 334);
     this.projectsPanel.TabIndex = 7;
     this.projectsPanel.Paint   += new System.Windows.Forms.PaintEventHandler(this.ProjectsPanel_Paint);
     //
     // linesOfCodePanel
     //
     this.linesOfCodePanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.linesOfCodePanel.Location = new System.Drawing.Point(3, 460);
     this.linesOfCodePanel.Name     = "linesOfCodePanel";
     this.linesOfCodePanel.Size     = new System.Drawing.Size(334, 334);
     this.linesOfCodePanel.TabIndex = 8;
     this.linesOfCodePanel.Paint   += new System.Windows.Forms.PaintEventHandler(this.LinesOfCodePanel_Paint);
     //
     // View
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(995, 797);
     this.Controls.Add(tableLayoutPanel);
     this.DoubleBuffered = true;
     this.Name           = "View";
     this.Text           = "GitHub Language Statistics";
     tableLayoutPanel.ResumeLayout(false);
     tableLayoutPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.projectsDataGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.linesOfCodeDataGridView)).EndInit();
     userNameTableLayoutPanel.ResumeLayout(false);
     userNameTableLayoutPanel.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 2
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(AboutWindow));
     tableLayoutPanel   = new System.Windows.Forms.TableLayoutPanel();
     logoPictureBox     = new System.Windows.Forms.PictureBox();
     labelProductName   = new System.Windows.Forms.Label();
     labelVersion       = new System.Windows.Forms.Label();
     labelCopyright     = new System.Windows.Forms.Label();
     labelCompanyName   = new System.Windows.Forms.Label();
     textBoxDescription = new System.Windows.Forms.TextBox();
     okButton           = new System.Windows.Forms.Button();
     tableLayoutPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(logoPictureBox)).BeginInit();
     SuspendLayout();
     //
     // tableLayoutPanel
     //
     tableLayoutPanel.ColumnCount = 2;
     tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
     tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
     tableLayoutPanel.Controls.Add(logoPictureBox, 0, 0);
     tableLayoutPanel.Controls.Add(labelProductName, 1, 0);
     tableLayoutPanel.Controls.Add(labelVersion, 1, 1);
     tableLayoutPanel.Controls.Add(labelCopyright, 1, 2);
     tableLayoutPanel.Controls.Add(labelCompanyName, 1, 3);
     tableLayoutPanel.Controls.Add(textBoxDescription, 1, 4);
     tableLayoutPanel.Controls.Add(okButton, 1, 5);
     tableLayoutPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
     tableLayoutPanel.Name     = "tableLayoutPanel";
     tableLayoutPanel.RowCount = 6;
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     tableLayoutPanel.Size     = new System.Drawing.Size(417, 265);
     tableLayoutPanel.TabIndex = 0;
     //
     // logoPictureBox
     //
     logoPictureBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     logoPictureBox.Image    = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image")));
     logoPictureBox.Location = new System.Drawing.Point(3, 3);
     logoPictureBox.Name     = "logoPictureBox";
     tableLayoutPanel.SetRowSpan(logoPictureBox, 6);
     logoPictureBox.Size     = new System.Drawing.Size(131, 259);
     logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     logoPictureBox.TabIndex = 12;
     logoPictureBox.TabStop  = false;
     //
     // labelProductName
     //
     labelProductName.Dock        = System.Windows.Forms.DockStyle.Fill;
     labelProductName.Location    = new System.Drawing.Point(143, 0);
     labelProductName.Margin      = new System.Windows.Forms.Padding(6, 0, 3, 0);
     labelProductName.MaximumSize = new System.Drawing.Size(0, 17);
     labelProductName.Name        = "labelProductName";
     labelProductName.Size        = new System.Drawing.Size(271, 17);
     labelProductName.TabIndex    = 19;
     labelProductName.Text        = "Product Name";
     labelProductName.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelVersion
     //
     labelVersion.Dock        = System.Windows.Forms.DockStyle.Fill;
     labelVersion.Location    = new System.Drawing.Point(143, 26);
     labelVersion.Margin      = new System.Windows.Forms.Padding(6, 0, 3, 0);
     labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
     labelVersion.Name        = "labelVersion";
     labelVersion.Size        = new System.Drawing.Size(271, 17);
     labelVersion.TabIndex    = 0;
     labelVersion.Text        = "Version";
     labelVersion.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCopyright
     //
     labelCopyright.Dock        = System.Windows.Forms.DockStyle.Fill;
     labelCopyright.Location    = new System.Drawing.Point(143, 52);
     labelCopyright.Margin      = new System.Windows.Forms.Padding(6, 0, 3, 0);
     labelCopyright.MaximumSize = new System.Drawing.Size(0, 17);
     labelCopyright.Name        = "labelCopyright";
     labelCopyright.Size        = new System.Drawing.Size(271, 17);
     labelCopyright.TabIndex    = 21;
     labelCopyright.Text        = "Copyright";
     labelCopyright.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCompanyName
     //
     labelCompanyName.Dock        = System.Windows.Forms.DockStyle.Fill;
     labelCompanyName.Location    = new System.Drawing.Point(143, 78);
     labelCompanyName.Margin      = new System.Windows.Forms.Padding(6, 0, 3, 0);
     labelCompanyName.MaximumSize = new System.Drawing.Size(0, 17);
     labelCompanyName.Name        = "labelCompanyName";
     labelCompanyName.Size        = new System.Drawing.Size(271, 17);
     labelCompanyName.TabIndex    = 22;
     labelCompanyName.Text        = "Company Name";
     labelCompanyName.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBoxDescription
     //
     textBoxDescription.Dock       = System.Windows.Forms.DockStyle.Fill;
     textBoxDescription.Location   = new System.Drawing.Point(143, 107);
     textBoxDescription.Margin     = new System.Windows.Forms.Padding(6, 3, 3, 3);
     textBoxDescription.Multiline  = true;
     textBoxDescription.Name       = "textBoxDescription";
     textBoxDescription.ReadOnly   = true;
     textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     textBoxDescription.Size       = new System.Drawing.Size(271, 126);
     textBoxDescription.TabIndex   = 23;
     textBoxDescription.TabStop    = false;
     textBoxDescription.Text       = "Description";
     //
     // okButton
     //
     okButton.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     okButton.Location     = new System.Drawing.Point(339, 239);
     okButton.Name         = "okButton";
     okButton.Size         = new System.Drawing.Size(75, 23);
     okButton.TabIndex     = 24;
     okButton.Text         = "&OK";
     //
     // AboutBox
     //
     AcceptButton        = okButton;
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     ClientSize          = new System.Drawing.Size(435, 283);
     Controls.Add(tableLayoutPanel);
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     MaximizeBox     = false;
     MinimizeBox     = false;
     Name            = "AboutBox";
     Padding         = new System.Windows.Forms.Padding(9);
     ShowIcon        = false;
     ShowInTaskbar   = false;
     StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     Text            = "About Bamboo Tray";
     tableLayoutPanel.ResumeLayout(false);
     tableLayoutPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(logoPictureBox)).EndInit();
     ResumeLayout(false);
 }
		/// <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.Windows.Forms.TableLayoutPanel tableLayoutPanel5;
            DOL.Tools.QuestDesigner.Controls.HeaderStrip headerStrip2;
            System.Windows.Forms.ToolStripLabel toolStripLabel2;
            DOL.Tools.QuestDesigner.Controls.HeaderStrip headerStrip1;
            System.Windows.Forms.ToolStripLabel toolStripLabel1;
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.Label labelQuestName;
            System.Windows.Forms.Label labelTitle;
            System.Windows.Forms.Label labelAuthor;
            System.Windows.Forms.Label labelDate;
            System.Windows.Forms.Label labelVersion;
            System.Windows.Forms.Label labelNamespace;
            System.Windows.Forms.Label labelLevel;
            System.Windows.Forms.Label labelInvitingNPC;
            System.Windows.Forms.Label labelMaxQuestCount;
            System.Windows.Forms.Label labelNotes;
            this.QuestStep = new System.Windows.Forms.DataGridView();
            this.QuestName = new System.Windows.Forms.TextBox();
            this.Title = new System.Windows.Forms.TextBox();
            this.Author = new System.Windows.Forms.TextBox();
            this.scriptDate = new System.Windows.Forms.DateTimePicker();
            this.Version = new System.Windows.Forms.TextBox();
            this.Namespace = new System.Windows.Forms.TextBox();
            this.LevelMin = new System.Windows.Forms.NumericUpDown();
            this.LevelMax = new System.Windows.Forms.NumericUpDown();
            this.InvitingNPC = new System.Windows.Forms.ComboBox();
            this.MaxQuestCount = new System.Windows.Forms.NumericUpDown();
            this.Notes = new System.Windows.Forms.TextBox();
            this.labelClasses = new System.Windows.Forms.Label();
            this.listBoxAllowed = new System.Windows.Forms.ListBox();
            this.listBoxAvailable = new System.Windows.Forms.ListBox();
            this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            this.buttonAddClass = new System.Windows.Forms.Button();
            this.buttonRemoveClass = new System.Windows.Forms.Button();
            this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
            headerStrip2 = new DOL.Tools.QuestDesigner.Controls.HeaderStrip();
            toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
            headerStrip1 = new DOL.Tools.QuestDesigner.Controls.HeaderStrip();
            toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
            labelQuestName = new System.Windows.Forms.Label();
            labelTitle = new System.Windows.Forms.Label();
            labelAuthor = new System.Windows.Forms.Label();
            labelDate = new System.Windows.Forms.Label();
            labelVersion = new System.Windows.Forms.Label();
            labelNamespace = new System.Windows.Forms.Label();
            labelLevel = new System.Windows.Forms.Label();
            labelInvitingNPC = new System.Windows.Forms.Label();
            labelMaxQuestCount = new System.Windows.Forms.Label();
            labelNotes = new System.Windows.Forms.Label();
            tableLayoutPanel5.SuspendLayout();
            headerStrip2.SuspendLayout();
            headerStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.QuestStep)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LevelMin)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LevelMax)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaxQuestCount)).BeginInit();
            this.flowLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
            this.SuspendLayout();
            // 
            // tableLayoutPanel5
            // 
            tableLayoutPanel5.ColumnCount = 6;
            tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 112F));
            tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 112F));
            tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            tableLayoutPanel5.Controls.Add(headerStrip2, 0, 0);
            tableLayoutPanel5.Controls.Add(headerStrip1, 0, 8);
            tableLayoutPanel5.Controls.Add(this.QuestStep, 0, 9);
            tableLayoutPanel5.Controls.Add(labelQuestName, 0, 1);
            tableLayoutPanel5.Controls.Add(this.QuestName, 1, 1);
            tableLayoutPanel5.Controls.Add(labelTitle, 0, 2);
            tableLayoutPanel5.Controls.Add(this.Title, 1, 2);
            tableLayoutPanel5.Controls.Add(labelAuthor, 0, 3);
            tableLayoutPanel5.Controls.Add(this.Author, 1, 3);
            tableLayoutPanel5.Controls.Add(labelDate, 0, 4);
            tableLayoutPanel5.Controls.Add(this.scriptDate, 1, 4);
            tableLayoutPanel5.Controls.Add(labelVersion, 0, 5);
            tableLayoutPanel5.Controls.Add(this.Version, 1, 5);
            tableLayoutPanel5.Controls.Add(labelNamespace, 0, 6);
            tableLayoutPanel5.Controls.Add(this.Namespace, 1, 6);
            tableLayoutPanel5.Controls.Add(labelLevel, 3, 1);
            tableLayoutPanel5.Controls.Add(this.LevelMin, 4, 1);
            tableLayoutPanel5.Controls.Add(this.LevelMax, 5, 1);
            tableLayoutPanel5.Controls.Add(labelInvitingNPC, 3, 2);
            tableLayoutPanel5.Controls.Add(this.InvitingNPC, 4, 2);
            tableLayoutPanel5.Controls.Add(labelMaxQuestCount, 3, 3);
            tableLayoutPanel5.Controls.Add(this.MaxQuestCount, 4, 3);
            tableLayoutPanel5.Controls.Add(labelNotes, 3, 4);
            tableLayoutPanel5.Controls.Add(this.Notes, 3, 5);
            tableLayoutPanel5.Controls.Add(this.labelClasses, 0, 7);
            tableLayoutPanel5.Controls.Add(this.listBoxAllowed, 1, 7);
            tableLayoutPanel5.Controls.Add(this.listBoxAvailable, 3, 7);
            tableLayoutPanel5.Controls.Add(this.flowLayoutPanel1, 2, 7);
            tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel5.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel5.Margin = new System.Windows.Forms.Padding(2);
            tableLayoutPanel5.Name = "tableLayoutPanel5";
            tableLayoutPanel5.RowCount = 9;
            tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 80F));
            tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            tableLayoutPanel5.Size = new System.Drawing.Size(606, 464);
            tableLayoutPanel5.TabIndex = 8;
            // 
            // headerStrip2
            // 
            headerStrip2.AutoSize = false;
            tableLayoutPanel5.SetColumnSpan(headerStrip2, 6);
            headerStrip2.Dock = System.Windows.Forms.DockStyle.Fill;
            headerStrip2.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            headerStrip2.ForeColor = System.Drawing.Color.White;
            headerStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            headerStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            toolStripLabel2});
            headerStrip2.Location = new System.Drawing.Point(0, 0);
            headerStrip2.Name = "headerStrip2";
            headerStrip2.Size = new System.Drawing.Size(606, 30);
            headerStrip2.TabIndex = 23;
            headerStrip2.Text = "header";
            // 
            // toolStripLabel2
            // 
            toolStripLabel2.ForeColor = System.Drawing.Color.Gray;
            toolStripLabel2.Name = "toolStripLabel2";
            toolStripLabel2.Size = new System.Drawing.Size(110, 27);
            toolStripLabel2.Text = "Quest Details";
            // 
            // headerStrip1
            // 
            headerStrip1.AutoSize = false;
            tableLayoutPanel5.SetColumnSpan(headerStrip1, 6);
            headerStrip1.Dock = System.Windows.Forms.DockStyle.Fill;
            headerStrip1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            headerStrip1.ForeColor = System.Drawing.Color.White;
            headerStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            headerStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            toolStripLabel1});
            headerStrip1.Location = new System.Drawing.Point(0, 266);
            headerStrip1.Name = "headerStrip1";
            headerStrip1.Size = new System.Drawing.Size(606, 25);
            headerStrip1.TabIndex = 22;
            headerStrip1.Text = "header";
            // 
            // toolStripLabel1
            // 
            toolStripLabel1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            toolStripLabel1.ForeColor = System.Drawing.Color.Gray;
            toolStripLabel1.Name = "toolStripLabel1";
            toolStripLabel1.Size = new System.Drawing.Size(94, 22);
            toolStripLabel1.Text = "Quest Steps";
            // 
            // QuestStep
            // 
            dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.QuestStep.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
            this.QuestStep.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
            this.QuestStep.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
            this.QuestStep.BackgroundColor = System.Drawing.SystemColors.Control;
            this.QuestStep.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            tableLayoutPanel5.SetColumnSpan(this.QuestStep, 6);
            this.QuestStep.DataMember = "QuestStep";
            this.QuestStep.Dock = System.Windows.Forms.DockStyle.Fill;
            this.QuestStep.Location = new System.Drawing.Point(3, 294);
            this.QuestStep.Name = "QuestStep";
            this.QuestStep.RowTemplate.Height = 24;
            this.QuestStep.Size = new System.Drawing.Size(600, 167);
            this.QuestStep.TabIndex = 21;
            // 
            // labelQuestName
            // 
            labelQuestName.Anchor = System.Windows.Forms.AnchorStyles.Left;
            labelQuestName.AutoSize = true;
            labelQuestName.Location = new System.Drawing.Point(3, 36);
            labelQuestName.Name = "labelQuestName";
            labelQuestName.Size = new System.Drawing.Size(35, 13);
            labelQuestName.TabIndex = 0;
            labelQuestName.Text = "Name";
            // 
            // QuestName
            // 
            this.QuestName.Dock = System.Windows.Forms.DockStyle.Fill;
            this.QuestName.Location = new System.Drawing.Point(115, 33);
            this.QuestName.Name = "QuestName";
            this.QuestName.Size = new System.Drawing.Size(170, 20);
            this.QuestName.TabIndex = 1;
            this.QuestName.Validating += new System.ComponentModel.CancelEventHandler(this.QuestName_Validating);
            // 
            // labelTitle
            // 
            labelTitle.Anchor = System.Windows.Forms.AnchorStyles.Left;
            labelTitle.AutoSize = true;
            labelTitle.Location = new System.Drawing.Point(3, 63);
            labelTitle.Name = "labelTitle";
            labelTitle.Size = new System.Drawing.Size(27, 13);
            labelTitle.TabIndex = 2;
            labelTitle.Text = "Title";
            // 
            // Title
            // 
            this.Title.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Title.Location = new System.Drawing.Point(115, 59);
            this.Title.Name = "Title";
            this.Title.Size = new System.Drawing.Size(170, 20);
            this.Title.TabIndex = 3;
            // 
            // labelAuthor
            // 
            labelAuthor.Anchor = System.Windows.Forms.AnchorStyles.Left;
            labelAuthor.AutoSize = true;
            labelAuthor.Location = new System.Drawing.Point(3, 89);
            labelAuthor.Name = "labelAuthor";
            labelAuthor.Size = new System.Drawing.Size(38, 13);
            labelAuthor.TabIndex = 4;
            labelAuthor.Text = "Author";
            // 
            // Author
            // 
            this.Author.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Author.Location = new System.Drawing.Point(115, 86);
            this.Author.Name = "Author";
            this.Author.Size = new System.Drawing.Size(170, 20);
            this.Author.TabIndex = 5;
            // 
            // labelDate
            // 
            labelDate.Anchor = System.Windows.Forms.AnchorStyles.Left;
            labelDate.AutoSize = true;
            labelDate.Location = new System.Drawing.Point(3, 115);
            labelDate.Name = "labelDate";
            labelDate.Size = new System.Drawing.Size(30, 13);
            labelDate.TabIndex = 6;
            labelDate.Text = "Date";
            // 
            // scriptDate
            // 
            this.scriptDate.Dock = System.Windows.Forms.DockStyle.Fill;
            this.scriptDate.Location = new System.Drawing.Point(115, 112);
            this.scriptDate.Name = "scriptDate";
            this.scriptDate.Size = new System.Drawing.Size(170, 20);
            this.scriptDate.TabIndex = 7;
            // 
            // labelVersion
            // 
            labelVersion.Anchor = System.Windows.Forms.AnchorStyles.Left;
            labelVersion.AutoSize = true;
            labelVersion.Location = new System.Drawing.Point(3, 141);
            labelVersion.Name = "labelVersion";
            labelVersion.Size = new System.Drawing.Size(72, 13);
            labelVersion.TabIndex = 8;
            labelVersion.Text = "Script Version";
            // 
            // Version
            // 
            this.Version.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Version.Location = new System.Drawing.Point(115, 138);
            this.Version.Name = "Version";
            this.Version.Size = new System.Drawing.Size(170, 20);
            this.Version.TabIndex = 9;
            // 
            // labelNamespace
            // 
            labelNamespace.Anchor = System.Windows.Forms.AnchorStyles.Left;
            labelNamespace.AutoSize = true;
            labelNamespace.Location = new System.Drawing.Point(2, 167);
            labelNamespace.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            labelNamespace.Name = "labelNamespace";
            labelNamespace.Size = new System.Drawing.Size(64, 13);
            labelNamespace.TabIndex = 10;
            labelNamespace.Text = "Namespace";
            // 
            // Namespace
            // 
            this.Namespace.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Namespace.Location = new System.Drawing.Point(114, 163);
            this.Namespace.Margin = new System.Windows.Forms.Padding(2);
            this.Namespace.Name = "Namespace";
            this.Namespace.Size = new System.Drawing.Size(172, 20);
            this.Namespace.TabIndex = 11;
            this.Namespace.Validating += new System.ComponentModel.CancelEventHandler(this.Namespace_Validating);
            // 
            // labelLevel
            // 
            labelLevel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            labelLevel.AutoSize = true;
            labelLevel.Location = new System.Drawing.Point(321, 36);
            labelLevel.Name = "labelLevel";
            labelLevel.Size = new System.Drawing.Size(86, 13);
            labelLevel.TabIndex = 12;
            labelLevel.Text = "Level (min - max)";
            // 
            // LevelMin
            // 
            this.LevelMin.Dock = System.Windows.Forms.DockStyle.Fill;
            this.LevelMin.Location = new System.Drawing.Point(433, 33);
            this.LevelMin.Maximum = new decimal(new int[] {
            255,
            0,
            0,
            0});
            this.LevelMin.Name = "LevelMin";
            this.LevelMin.Size = new System.Drawing.Size(82, 20);
            this.LevelMin.TabIndex = 13;
            // 
            // LevelMax
            // 
            this.LevelMax.Dock = System.Windows.Forms.DockStyle.Fill;
            this.LevelMax.Location = new System.Drawing.Point(521, 33);
            this.LevelMax.Maximum = new decimal(new int[] {
            255,
            0,
            0,
            0});
            this.LevelMax.Name = "LevelMax";
            this.LevelMax.Size = new System.Drawing.Size(82, 20);
            this.LevelMax.TabIndex = 14;
            // 
            // labelInvitingNPC
            // 
            labelInvitingNPC.Anchor = System.Windows.Forms.AnchorStyles.Left;
            labelInvitingNPC.AutoSize = true;
            labelInvitingNPC.Location = new System.Drawing.Point(321, 63);
            labelInvitingNPC.Name = "labelInvitingNPC";
            labelInvitingNPC.Size = new System.Drawing.Size(66, 13);
            labelInvitingNPC.TabIndex = 15;
            labelInvitingNPC.Text = "Inviting NPC";
            // 
            // InvitingNPC
            // 
            tableLayoutPanel5.SetColumnSpan(this.InvitingNPC, 2);
            this.InvitingNPC.DisplayMember = "Name";
            this.InvitingNPC.Dock = System.Windows.Forms.DockStyle.Fill;
            this.InvitingNPC.FormattingEnabled = true;
            this.InvitingNPC.Location = new System.Drawing.Point(433, 59);
            this.InvitingNPC.Name = "InvitingNPC";
            this.InvitingNPC.Size = new System.Drawing.Size(170, 21);
            this.InvitingNPC.TabIndex = 16;
            this.InvitingNPC.ValueMember = "ObjectName";
            // 
            // labelMaxQuestCount
            // 
            labelMaxQuestCount.Anchor = System.Windows.Forms.AnchorStyles.Left;
            labelMaxQuestCount.AutoSize = true;
            labelMaxQuestCount.Location = new System.Drawing.Point(321, 89);
            labelMaxQuestCount.Name = "labelMaxQuestCount";
            labelMaxQuestCount.Size = new System.Drawing.Size(83, 13);
            labelMaxQuestCount.TabIndex = 17;
            labelMaxQuestCount.Text = "MaxQuestCount";
            // 
            // MaxQuestCount
            // 
            tableLayoutPanel5.SetColumnSpan(this.MaxQuestCount, 2);
            this.MaxQuestCount.Dock = System.Windows.Forms.DockStyle.Fill;
            this.MaxQuestCount.Location = new System.Drawing.Point(433, 86);
            this.MaxQuestCount.Maximum = new decimal(new int[] {
            2147483647,
            0,
            0,
            0});
            this.MaxQuestCount.Name = "MaxQuestCount";
            this.MaxQuestCount.Size = new System.Drawing.Size(170, 20);
            this.MaxQuestCount.TabIndex = 18;
            // 
            // labelNotes
            // 
            labelNotes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            labelNotes.AutoSize = true;
            labelNotes.Location = new System.Drawing.Point(321, 122);
            labelNotes.Name = "labelNotes";
            labelNotes.Size = new System.Drawing.Size(103, 13);
            labelNotes.TabIndex = 19;
            labelNotes.Text = "Notes: (TODO\'s etc)";
            // 
            // Notes
            // 
            tableLayoutPanel5.SetColumnSpan(this.Notes, 3);
            this.Notes.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Notes.Location = new System.Drawing.Point(321, 138);
            this.Notes.Multiline = true;
            this.Notes.Name = "Notes";
            tableLayoutPanel5.SetRowSpan(this.Notes, 2);
            this.Notes.Size = new System.Drawing.Size(282, 45);
            this.Notes.TabIndex = 20;
            // 
            // labelClasses
            // 
            this.labelClasses.AutoSize = true;
            this.labelClasses.Location = new System.Drawing.Point(3, 189);
            this.labelClasses.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
            this.labelClasses.Name = "labelClasses";
            this.labelClasses.Size = new System.Drawing.Size(83, 13);
            this.labelClasses.TabIndex = 25;
            this.labelClasses.Text = "Allowed Classes";
            // 
            // listBoxAllowed
            // 
            this.listBoxAllowed.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listBoxAllowed.FormattingEnabled = true;
            this.listBoxAllowed.Location = new System.Drawing.Point(115, 189);
            this.listBoxAllowed.Name = "listBoxAllowed";
            this.listBoxAllowed.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
            this.listBoxAllowed.Size = new System.Drawing.Size(170, 69);
            this.listBoxAllowed.TabIndex = 26;
            // 
            // listBoxAvailable
            // 
            tableLayoutPanel5.SetColumnSpan(this.listBoxAvailable, 3);
            this.listBoxAvailable.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listBoxAvailable.FormattingEnabled = true;
            this.listBoxAvailable.Location = new System.Drawing.Point(321, 189);
            this.listBoxAvailable.Name = "listBoxAvailable";
            this.listBoxAvailable.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
            this.listBoxAvailable.Size = new System.Drawing.Size(282, 69);
            this.listBoxAvailable.TabIndex = 27;
            // 
            // flowLayoutPanel1
            // 
            this.flowLayoutPanel1.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.flowLayoutPanel1.Controls.Add(this.buttonAddClass);
            this.flowLayoutPanel1.Controls.Add(this.buttonRemoveClass);
            this.flowLayoutPanel1.Location = new System.Drawing.Point(291, 189);
            this.flowLayoutPanel1.Name = "flowLayoutPanel1";
            this.flowLayoutPanel1.Size = new System.Drawing.Size(24, 74);
            this.flowLayoutPanel1.TabIndex = 28;
            // 
            // buttonAddClass
            // 
            this.buttonAddClass.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.buttonAddClass.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.buttonAddClass.Location = new System.Drawing.Point(1, 1);
            this.buttonAddClass.Margin = new System.Windows.Forms.Padding(1);
            this.buttonAddClass.Name = "buttonAddClass";
            this.buttonAddClass.Size = new System.Drawing.Size(23, 23);
            this.buttonAddClass.TabIndex = 0;
            this.buttonAddClass.Text = "<";
            this.buttonAddClass.UseVisualStyleBackColor = true;
            this.buttonAddClass.Click += new System.EventHandler(this.buttonAddClass_Click);
            // 
            // buttonRemoveClass
            // 
            this.buttonRemoveClass.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.buttonRemoveClass.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.buttonRemoveClass.Location = new System.Drawing.Point(1, 26);
            this.buttonRemoveClass.Margin = new System.Windows.Forms.Padding(1);
            this.buttonRemoveClass.Name = "buttonRemoveClass";
            this.buttonRemoveClass.Size = new System.Drawing.Size(23, 23);
            this.buttonRemoveClass.TabIndex = 1;
            this.buttonRemoveClass.Text = ">";
            this.buttonRemoveClass.UseVisualStyleBackColor = true;
            this.buttonRemoveClass.Click += new System.EventHandler(this.buttonRemoveClass_Click);
            // 
            // errorProvider
            // 
            this.errorProvider.ContainerControl = this;
            // 
            // QuestInfo
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(tableLayoutPanel5);
            this.Name = "QuestInfo";
            this.Size = new System.Drawing.Size(606, 464);
            tableLayoutPanel5.ResumeLayout(false);
            tableLayoutPanel5.PerformLayout();
            headerStrip2.ResumeLayout(false);
            headerStrip2.PerformLayout();
            headerStrip1.ResumeLayout(false);
            headerStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.QuestStep)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LevelMin)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LevelMax)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaxQuestCount)).EndInit();
            this.flowLayoutPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
            this.ResumeLayout(false);

		}
Ejemplo n.º 4
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.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
     System.Windows.Forms.Label            label1;
     System.Windows.Forms.Label            label2;
     System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
     System.Windows.Forms.ContextMenuStrip contextMenuStrip2;
     this.AktivListe            = new BrightIdeasSoftware.ObjectListView();
     this.ZimmerAktiv           = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.VornameAktiv          = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.NachnameAktiv         = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.RufnameAktiv          = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.HinzufügenKnopf       = new System.Windows.Forms.Button();
     this.InaktivListe          = new BrightIdeasSoftware.ObjectListView();
     this.ZimmerInaktiv         = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.VornameInaktiv        = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.NachnameInaktiv       = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.RufnameInaktiv        = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.AktivierenKnopf       = new System.Windows.Forms.Button();
     this.DeaktivierenKnopf     = new System.Windows.Forms.Button();
     this.AnzeigenOptionAktiv   = new System.Windows.Forms.ToolStripMenuItem();
     this.AnzeigenOptionInaktiv = new System.Windows.Forms.ToolStripMenuItem();
     tableLayoutPanel1          = new System.Windows.Forms.TableLayoutPanel();
     label1            = new System.Windows.Forms.Label();
     label2            = new System.Windows.Forms.Label();
     contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
     tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AktivListe)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.InaktivListe)).BeginInit();
     contextMenuStrip1.SuspendLayout();
     contextMenuStrip2.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.ColumnCount = 3;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel1.Controls.Add(this.AktivListe, 0, 1);
     tableLayoutPanel1.Controls.Add(this.HinzufügenKnopf, 1, 3);
     tableLayoutPanel1.Controls.Add(this.InaktivListe, 2, 1);
     tableLayoutPanel1.Controls.Add(label1, 0, 0);
     tableLayoutPanel1.Controls.Add(label2, 2, 0);
     tableLayoutPanel1.Controls.Add(this.AktivierenKnopf, 1, 2);
     tableLayoutPanel1.Controls.Add(this.DeaktivierenKnopf, 1, 4);
     tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.Padding  = new System.Windows.Forms.Padding(10);
     tableLayoutPanel1.RowCount = 6;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel1.Size     = new System.Drawing.Size(684, 561);
     tableLayoutPanel1.TabIndex = 0;
     //
     // AktivListe
     //
     this.AktivListe.AllColumns.Add(this.ZimmerAktiv);
     this.AktivListe.AllColumns.Add(this.VornameAktiv);
     this.AktivListe.AllColumns.Add(this.NachnameAktiv);
     this.AktivListe.AllColumns.Add(this.RufnameAktiv);
     this.AktivListe.AlternateRowBackColor = System.Drawing.SystemColors.ButtonFace;
     this.AktivListe.CellEditActivation    = BrightIdeasSoftware.ObjectListView.CellEditActivateMode.DoubleClick;
     this.AktivListe.CellEditUseWholeCell  = false;
     this.AktivListe.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.ZimmerAktiv,
         this.VornameAktiv,
         this.NachnameAktiv,
         this.RufnameAktiv
     });
     this.AktivListe.ContextMenuStrip = contextMenuStrip1;
     this.AktivListe.Cursor           = System.Windows.Forms.Cursors.Default;
     this.AktivListe.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.AktivListe.FullRowSelect    = true;
     this.AktivListe.Location         = new System.Drawing.Point(13, 33);
     this.AktivListe.Name             = "AktivListe";
     tableLayoutPanel1.SetRowSpan(this.AktivListe, 5);
     this.AktivListe.SelectColumnsOnRightClick          = false;
     this.AktivListe.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.None;
     this.AktivListe.ShowGroups         = false;
     this.AktivListe.ShowSortIndicators = false;
     this.AktivListe.Size     = new System.Drawing.Size(313, 515);
     this.AktivListe.TabIndex = 6;
     this.AktivListe.UseAlternatingBackColors        = true;
     this.AktivListe.UseCompatibleStateImageBehavior = false;
     this.AktivListe.UseFiltering      = true;
     this.AktivListe.View              = System.Windows.Forms.View.Details;
     this.AktivListe.CellEditFinished += new BrightIdeasSoftware.CellEditEventHandler(this.AktivListe_CellEditFinished);
     //
     // ZimmerAktiv
     //
     this.ZimmerAktiv.AspectName           = "Zimmernummer";
     this.ZimmerAktiv.AspectToStringFormat = "{0}";
     this.ZimmerAktiv.CellEditUseWholeCell = true;
     this.ZimmerAktiv.Text      = "Zimmer";
     this.ZimmerAktiv.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.ZimmerAktiv.Width     = 50;
     //
     // VornameAktiv
     //
     this.VornameAktiv.AspectName           = "Vorname";
     this.VornameAktiv.AspectToStringFormat = "{0}";
     this.VornameAktiv.CellEditUseWholeCell = true;
     this.VornameAktiv.Text  = "Vorname";
     this.VornameAktiv.Width = 80;
     //
     // NachnameAktiv
     //
     this.NachnameAktiv.AspectName           = "Nachname";
     this.NachnameAktiv.AspectToStringFormat = "{0}";
     this.NachnameAktiv.CellEditUseWholeCell = true;
     this.NachnameAktiv.FillsFreeSpace       = true;
     this.NachnameAktiv.Text  = "Nachname";
     this.NachnameAktiv.Width = 100;
     //
     // RufnameAktiv
     //
     this.RufnameAktiv.AspectName           = "Rufname";
     this.RufnameAktiv.AspectToStringFormat = "{0}";
     this.RufnameAktiv.CellEditUseWholeCell = true;
     this.RufnameAktiv.Text  = "Rufname";
     this.RufnameAktiv.Width = 100;
     //
     // HinzufügenKnopf
     //
     this.HinzufügenKnopf.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.HinzufügenKnopf.Location = new System.Drawing.Point(329, 275);
     this.HinzufügenKnopf.Margin   = new System.Windows.Forms.Padding(0);
     this.HinzufügenKnopf.Name     = "HinzufügenKnopf";
     this.HinzufügenKnopf.Size     = new System.Drawing.Size(25, 31);
     this.HinzufügenKnopf.TabIndex = 2;
     this.HinzufügenKnopf.Text     = "+";
     this.HinzufügenKnopf.UseVisualStyleBackColor = true;
     this.HinzufügenKnopf.Click += new System.EventHandler(this.HinzufügenKnopf_Click);
     //
     // InaktivListe
     //
     this.InaktivListe.AllColumns.Add(this.ZimmerInaktiv);
     this.InaktivListe.AllColumns.Add(this.VornameInaktiv);
     this.InaktivListe.AllColumns.Add(this.NachnameInaktiv);
     this.InaktivListe.AllColumns.Add(this.RufnameInaktiv);
     this.InaktivListe.AlternateRowBackColor = System.Drawing.SystemColors.ButtonFace;
     this.InaktivListe.CellEditActivation    = BrightIdeasSoftware.ObjectListView.CellEditActivateMode.DoubleClick;
     this.InaktivListe.CellEditUseWholeCell  = false;
     this.InaktivListe.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.ZimmerInaktiv,
         this.VornameInaktiv,
         this.NachnameInaktiv,
         this.RufnameInaktiv
     });
     this.InaktivListe.ContextMenuStrip = contextMenuStrip2;
     this.InaktivListe.Cursor           = System.Windows.Forms.Cursors.Default;
     this.InaktivListe.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.InaktivListe.FullRowSelect    = true;
     this.InaktivListe.Location         = new System.Drawing.Point(357, 33);
     this.InaktivListe.Name             = "InaktivListe";
     tableLayoutPanel1.SetRowSpan(this.InaktivListe, 5);
     this.InaktivListe.SelectColumnsOnRightClick          = false;
     this.InaktivListe.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.None;
     this.InaktivListe.ShowGroups         = false;
     this.InaktivListe.ShowSortIndicators = false;
     this.InaktivListe.Size     = new System.Drawing.Size(314, 515);
     this.InaktivListe.TabIndex = 3;
     this.InaktivListe.UseAlternatingBackColors        = true;
     this.InaktivListe.UseCompatibleStateImageBehavior = false;
     this.InaktivListe.UseFiltering      = true;
     this.InaktivListe.View              = System.Windows.Forms.View.Details;
     this.InaktivListe.CellEditFinished += new BrightIdeasSoftware.CellEditEventHandler(this.InaktivListe_CellEditFinished);
     //
     // ZimmerInaktiv
     //
     this.ZimmerInaktiv.AspectName           = "Zimmernummer";
     this.ZimmerInaktiv.AspectToStringFormat = "{0}";
     this.ZimmerInaktiv.CellEditUseWholeCell = true;
     this.ZimmerInaktiv.Text      = "Zimmer";
     this.ZimmerInaktiv.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.ZimmerInaktiv.Width     = 50;
     //
     // VornameInaktiv
     //
     this.VornameInaktiv.AspectName           = "Vorname";
     this.VornameInaktiv.AspectToStringFormat = "{0}";
     this.VornameInaktiv.CellEditUseWholeCell = true;
     this.VornameInaktiv.Text  = "Vorname";
     this.VornameInaktiv.Width = 80;
     //
     // NachnameInaktiv
     //
     this.NachnameInaktiv.AspectName           = "Nachname";
     this.NachnameInaktiv.AspectToStringFormat = "{0}";
     this.NachnameInaktiv.CellEditUseWholeCell = true;
     this.NachnameInaktiv.FillsFreeSpace       = true;
     this.NachnameInaktiv.Text  = "Nachname";
     this.NachnameInaktiv.Width = 100;
     //
     // RufnameInaktiv
     //
     this.RufnameInaktiv.AspectName           = "Rufname";
     this.RufnameInaktiv.AspectToStringFormat = "{0}";
     this.RufnameInaktiv.CellEditUseWholeCell = true;
     this.RufnameInaktiv.Text  = "Rufname";
     this.RufnameInaktiv.Width = 100;
     //
     // label1
     //
     label1.AutoSize  = true;
     label1.Dock      = System.Windows.Forms.DockStyle.Fill;
     label1.Location  = new System.Drawing.Point(13, 10);
     label1.Name      = "label1";
     label1.Size      = new System.Drawing.Size(313, 20);
     label1.TabIndex  = 4;
     label1.Text      = "Aktive Benutzer";
     label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label2
     //
     label2.AutoSize  = true;
     label2.Dock      = System.Windows.Forms.DockStyle.Fill;
     label2.Location  = new System.Drawing.Point(357, 10);
     label2.Name      = "label2";
     label2.Size      = new System.Drawing.Size(314, 20);
     label2.TabIndex  = 5;
     label2.Text      = "Inaktive Benutzer";
     label2.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // AktivierenKnopf
     //
     this.AktivierenKnopf.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.AktivierenKnopf.Location = new System.Drawing.Point(329, 244);
     this.AktivierenKnopf.Margin   = new System.Windows.Forms.Padding(0);
     this.AktivierenKnopf.Name     = "AktivierenKnopf";
     this.AktivierenKnopf.Size     = new System.Drawing.Size(25, 31);
     this.AktivierenKnopf.TabIndex = 7;
     this.AktivierenKnopf.Text     = "<-";
     this.AktivierenKnopf.UseVisualStyleBackColor = true;
     this.AktivierenKnopf.Click += new System.EventHandler(this.AktivierenKnopf_Click);
     //
     // DeaktivierenKnopf
     //
     this.DeaktivierenKnopf.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.DeaktivierenKnopf.Location = new System.Drawing.Point(329, 306);
     this.DeaktivierenKnopf.Margin   = new System.Windows.Forms.Padding(0);
     this.DeaktivierenKnopf.Name     = "DeaktivierenKnopf";
     this.DeaktivierenKnopf.Size     = new System.Drawing.Size(25, 31);
     this.DeaktivierenKnopf.TabIndex = 8;
     this.DeaktivierenKnopf.Text     = "->";
     this.DeaktivierenKnopf.UseVisualStyleBackColor = true;
     this.DeaktivierenKnopf.Click += new System.EventHandler(this.DeaktivierenKnopf_Click);
     //
     // contextMenuStrip1
     //
     contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.AnzeigenOptionAktiv
     });
     contextMenuStrip1.Name            = "contextMenuStrip1";
     contextMenuStrip1.ShowImageMargin = false;
     contextMenuStrip1.Size            = new System.Drawing.Size(108, 26);
     //
     // AnzeigenOptionAktiv
     //
     this.AnzeigenOptionAktiv.Name   = "AnzeigenOptionAktiv";
     this.AnzeigenOptionAktiv.Size   = new System.Drawing.Size(127, 22);
     this.AnzeigenOptionAktiv.Text   = "Anzeigen...";
     this.AnzeigenOptionAktiv.Click += new System.EventHandler(this.AnzeigenOptionAktiv_Click);
     //
     // contextMenuStrip2
     //
     contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.AnzeigenOptionInaktiv
     });
     contextMenuStrip2.Name            = "contextMenuStrip1";
     contextMenuStrip2.ShowImageMargin = false;
     contextMenuStrip2.Size            = new System.Drawing.Size(128, 48);
     //
     // AnzeigenOptionInaktiv
     //
     this.AnzeigenOptionInaktiv.Name   = "AnzeigenOptionInaktiv";
     this.AnzeigenOptionInaktiv.Size   = new System.Drawing.Size(127, 22);
     this.AnzeigenOptionInaktiv.Text   = "Anzeigen...";
     this.AnzeigenOptionInaktiv.Click += new System.EventHandler(this.AnzeigenOptionInaktiv_Click);
     //
     // BenutzerListefenster
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize          = new System.Drawing.Size(684, 561);
     this.Controls.Add(tableLayoutPanel1);
     this.Name         = "BenutzerListefenster";
     this.Text         = "Benutzer Verwalten";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BenutzerListefenster_FormClosing);
     this.Load        += new System.EventHandler(this.BenutzerListefenster_Load);
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AktivListe)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.InaktivListe)).EndInit();
     contextMenuStrip1.ResumeLayout(false);
     contextMenuStrip2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 5
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.Windows.Forms.Label             label1;
     System.Windows.Forms.TableLayoutPanel  tableLayoutPanel1;
     System.Windows.Forms.MenuStrip         menuStrip1;
     System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
     System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
     this.wordWrapBox = new System.Windows.Forms.CheckBox();
     this.textSizeBar = new System.Windows.Forms.TrackBar();
     this.outBox      = new System.Windows.Forms.RichTextBox();
     this.openMessageToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.openSavedCharacterSetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveDecodedMessageToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.saveCharacterSetToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.howDoIUseThisToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.hintsToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.charsetView                    = new System.Windows.Forms.DataGridView();
     this.codeDataGridViewTextBoxColumn  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.valueDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cypherDictionaryBindingSource  = new System.Windows.Forms.BindingSource(this.components);
     this.saveFileDialog                 = new System.Windows.Forms.SaveFileDialog();
     this.openCharsetDialog              = new System.Windows.Forms.OpenFileDialog();
     this.openImageDialog                = new System.Windows.Forms.OpenFileDialog();
     label1                = new System.Windows.Forms.Label();
     tableLayoutPanel1     = new System.Windows.Forms.TableLayoutPanel();
     menuStrip1            = new System.Windows.Forms.MenuStrip();
     fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textSizeBar)).BeginInit();
     menuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.charsetView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cypherDictionaryBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     label1.Dock      = System.Windows.Forms.DockStyle.Fill;
     label1.Location  = new System.Drawing.Point(3, 0);
     label1.Name      = "label1";
     label1.Size      = new System.Drawing.Size(81, 39);
     label1.TabIndex  = 3;
     label1.Text      = "Text Size:";
     label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.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)));
     tableLayoutPanel1.ColumnCount = 2;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel1.Controls.Add(this.wordWrapBox, 0, 1);
     tableLayoutPanel1.Controls.Add(label1, 0, 0);
     tableLayoutPanel1.Controls.Add(this.textSizeBar, 1, 0);
     tableLayoutPanel1.Controls.Add(this.outBox, 0, 2);
     tableLayoutPanel1.Location = new System.Drawing.Point(123, 27);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 3;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel1.Size     = new System.Drawing.Size(677, 473);
     tableLayoutPanel1.TabIndex = 4;
     //
     // wordWrapBox
     //
     this.wordWrapBox.AutoSize   = true;
     this.wordWrapBox.Checked    = true;
     this.wordWrapBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.wordWrapBox.Location   = new System.Drawing.Point(3, 42);
     this.wordWrapBox.Name       = "wordWrapBox";
     this.wordWrapBox.Size       = new System.Drawing.Size(81, 17);
     this.wordWrapBox.TabIndex   = 5;
     this.wordWrapBox.Text       = "Word Wrap";
     this.wordWrapBox.UseVisualStyleBackColor = true;
     this.wordWrapBox.CheckedChanged         += new System.EventHandler(this.wordWrapBox_CheckedChanged);
     //
     // textSizeBar
     //
     this.textSizeBar.AutoSize    = false;
     this.textSizeBar.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.textSizeBar.LargeChange = 25;
     this.textSizeBar.Location    = new System.Drawing.Point(90, 3);
     this.textSizeBar.Maximum     = 400;
     this.textSizeBar.Minimum     = 50;
     this.textSizeBar.Name        = "textSizeBar";
     tableLayoutPanel1.SetRowSpan(this.textSizeBar, 2);
     this.textSizeBar.Size        = new System.Drawing.Size(584, 56);
     this.textSizeBar.SmallChange = 5;
     this.textSizeBar.TabIndex    = 2;
     this.textSizeBar.Value       = 100;
     this.textSizeBar.Scroll     += new System.EventHandler(this.textSizeBar_Scroll);
     //
     // outBox
     //
     tableLayoutPanel1.SetColumnSpan(this.outBox, 2);
     this.outBox.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.outBox.Font          = new System.Drawing.Font("Arial Unicode MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.outBox.HideSelection = false;
     this.outBox.Location      = new System.Drawing.Point(3, 65);
     this.outBox.Name          = "outBox";
     this.outBox.ReadOnly      = true;
     this.outBox.Size          = new System.Drawing.Size(671, 405);
     this.outBox.TabIndex      = 0;
     this.outBox.Text          = "";
     //
     // menuStrip1
     //
     menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         fileToolStripMenuItem,
         helpToolStripMenuItem
     });
     menuStrip1.Location = new System.Drawing.Point(0, 0);
     menuStrip1.Name     = "menuStrip1";
     menuStrip1.Size     = new System.Drawing.Size(800, 24);
     menuStrip1.TabIndex = 5;
     menuStrip1.Text     = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.openMessageToolStripMenuItem,
         this.openSavedCharacterSetToolStripMenuItem,
         this.saveDecodedMessageToolStripMenuItem,
         this.saveCharacterSetToolStripMenuItem
     });
     fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     fileToolStripMenuItem.Text = "File";
     //
     // openMessageToolStripMenuItem
     //
     this.openMessageToolStripMenuItem.Name   = "openMessageToolStripMenuItem";
     this.openMessageToolStripMenuItem.Size   = new System.Drawing.Size(219, 22);
     this.openMessageToolStripMenuItem.Text   = "Open Message...";
     this.openMessageToolStripMenuItem.Click += new System.EventHandler(this.openMessageToolStripMenuItem_Click);
     //
     // openSavedCharacterSetToolStripMenuItem
     //
     this.openSavedCharacterSetToolStripMenuItem.Name   = "openSavedCharacterSetToolStripMenuItem";
     this.openSavedCharacterSetToolStripMenuItem.Size   = new System.Drawing.Size(219, 22);
     this.openSavedCharacterSetToolStripMenuItem.Text   = "Open Saved Character Set...";
     this.openSavedCharacterSetToolStripMenuItem.Click += new System.EventHandler(this.openSavedCharacterSetToolStripMenuItem_Click);
     //
     // saveDecodedMessageToolStripMenuItem
     //
     this.saveDecodedMessageToolStripMenuItem.Name   = "saveDecodedMessageToolStripMenuItem";
     this.saveDecodedMessageToolStripMenuItem.Size   = new System.Drawing.Size(219, 22);
     this.saveDecodedMessageToolStripMenuItem.Text   = "Save Decoded Message...";
     this.saveDecodedMessageToolStripMenuItem.Click += new System.EventHandler(this.saveDecodedMessageToolStripMenuItem_Click);
     //
     // saveCharacterSetToolStripMenuItem
     //
     this.saveCharacterSetToolStripMenuItem.Name   = "saveCharacterSetToolStripMenuItem";
     this.saveCharacterSetToolStripMenuItem.Size   = new System.Drawing.Size(219, 22);
     this.saveCharacterSetToolStripMenuItem.Text   = "Save Character Set...";
     this.saveCharacterSetToolStripMenuItem.Click += new System.EventHandler(this.saveCharacterSetToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.howDoIUseThisToolStripMenuItem,
         this.hintsToolStripMenuItem
     });
     helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     helpToolStripMenuItem.Text = "Help";
     //
     // howDoIUseThisToolStripMenuItem
     //
     this.howDoIUseThisToolStripMenuItem.Name   = "howDoIUseThisToolStripMenuItem";
     this.howDoIUseThisToolStripMenuItem.Size   = new System.Drawing.Size(175, 22);
     this.howDoIUseThisToolStripMenuItem.Text   = "How Do I Use This?";
     this.howDoIUseThisToolStripMenuItem.Click += new System.EventHandler(this.howDoIUseThisToolStripMenuItem_Click);
     //
     // hintsToolStripMenuItem
     //
     this.hintsToolStripMenuItem.Name   = "hintsToolStripMenuItem";
     this.hintsToolStripMenuItem.Size   = new System.Drawing.Size(175, 22);
     this.hintsToolStripMenuItem.Text   = "Hints";
     this.hintsToolStripMenuItem.Click += new System.EventHandler(this.hintsToolStripMenuItem_Click);
     //
     // charsetView
     //
     this.charsetView.AllowUserToAddRows    = false;
     this.charsetView.AllowUserToDeleteRows = false;
     this.charsetView.AllowUserToResizeRows = false;
     this.charsetView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)));
     this.charsetView.AutoGenerateColumns         = false;
     this.charsetView.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.charsetView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.charsetView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.codeDataGridViewTextBoxColumn,
         this.valueDataGridViewTextBoxColumn
     });
     this.charsetView.DataSource        = this.cypherDictionaryBindingSource;
     this.charsetView.EditMode          = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.charsetView.Location          = new System.Drawing.Point(0, 27);
     this.charsetView.MultiSelect       = false;
     this.charsetView.Name              = "charsetView";
     this.charsetView.RowHeadersVisible = false;
     this.charsetView.ScrollBars        = System.Windows.Forms.ScrollBars.Vertical;
     this.charsetView.SelectionMode     = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.charsetView.Size              = new System.Drawing.Size(117, 473);
     this.charsetView.TabIndex          = 1;
     this.charsetView.CellEndEdit      += new System.Windows.Forms.DataGridViewCellEventHandler(this.charsetView_CellEndEdit);
     this.charsetView.CellFormatting   += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.charsetView_CellFormatting);
     this.charsetView.CellParsing      += new System.Windows.Forms.DataGridViewCellParsingEventHandler(this.charsetView_CellParsing);
     this.charsetView.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.charsetView_CellValueChanged);
     this.charsetView.SelectionChanged += new System.EventHandler(this.charsetView_SelectionChanged);
     this.charsetView.KeyDown          += new System.Windows.Forms.KeyEventHandler(this.charsetView_KeyDown);
     this.charsetView.Leave            += new System.EventHandler(this.charsetView_Leave);
     //
     // codeDataGridViewTextBoxColumn
     //
     this.codeDataGridViewTextBoxColumn.DataPropertyName = "Code";
     this.codeDataGridViewTextBoxColumn.HeaderText       = "Code";
     this.codeDataGridViewTextBoxColumn.MaxInputLength   = 6;
     this.codeDataGridViewTextBoxColumn.Name             = "codeDataGridViewTextBoxColumn";
     this.codeDataGridViewTextBoxColumn.ReadOnly         = true;
     this.codeDataGridViewTextBoxColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
     this.codeDataGridViewTextBoxColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     this.codeDataGridViewTextBoxColumn.Width            = 57;
     //
     // valueDataGridViewTextBoxColumn
     //
     this.valueDataGridViewTextBoxColumn.DataPropertyName = "Value";
     this.valueDataGridViewTextBoxColumn.HeaderText       = "Value";
     this.valueDataGridViewTextBoxColumn.MaxInputLength   = 10;
     this.valueDataGridViewTextBoxColumn.Name             = "valueDataGridViewTextBoxColumn";
     this.valueDataGridViewTextBoxColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.valueDataGridViewTextBoxColumn.Width            = 40;
     //
     // cypherDictionaryBindingSource
     //
     this.cypherDictionaryBindingSource.DataSource = typeof(RodinaCrypt.CipherDictionary);
     //
     // saveFileDialog
     //
     this.saveFileDialog.DefaultExt = "txt";
     //
     // openCharsetDialog
     //
     this.openCharsetDialog.Filter = "Text Files|*.txt|All Files|*.*";
     //
     // openImageDialog
     //
     this.openImageDialog.Filter = "Image files (*.jpg, *.jpeg, *.jpe, *.jfif, *.png) | *.jpg; *.jpeg; *.jpe; *.jfif;" +
                                   " *.png";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(800, 500);
     this.Controls.Add(tableLayoutPanel1);
     this.Controls.Add(this.charsetView);
     this.Controls.Add(menuStrip1);
     this.KeyPreview    = true;
     this.MainMenuStrip = menuStrip1;
     this.Name          = "MainForm";
     this.Text          = "Rodina Decryptor";
     this.Load         += new System.EventHandler(this.MainForm_Load);
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.MainForm_KeyDown);
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textSizeBar)).EndInit();
     menuStrip1.ResumeLayout(false);
     menuStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.charsetView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cypherDictionaryBindingSource)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.GroupBox groupBoxImage;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ImageFormatDialog));
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanelImage;
     System.Windows.Forms.Label            labelResolution;
     System.Windows.Forms.Label            labelResolutionX;
     System.Windows.Forms.Label            labelResolutionY;
     System.Windows.Forms.Label            labelAlphaBits;
     System.Windows.Forms.Label            labelTextAlphaBits;
     System.Windows.Forms.Label            labelGraphicsAlphaBits;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanelGraphicsAlphaBits;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanelTextAlphaBits;
     this.numericUpDownResolutionX      = new System.Windows.Forms.NumericUpDown();
     this.numericUpDownResolutionY      = new System.Windows.Forms.NumericUpDown();
     this.radioButtonGraphicsAlphaBits1 = new System.Windows.Forms.RadioButton();
     this.radioButtonGraphicsAlphaBits4 = new System.Windows.Forms.RadioButton();
     this.radioButtonGraphicsAlphaBits2 = new System.Windows.Forms.RadioButton();
     this.radioButtonTextAlphaBits1     = new System.Windows.Forms.RadioButton();
     this.radioButtonTextAlphaBits2     = new System.Windows.Forms.RadioButton();
     this.radioButtonTextAlphaBits4     = new System.Windows.Forms.RadioButton();
     this.checkBoxLinkedResolution      = new System.Windows.Forms.CheckBox();
     groupBoxImage                     = new System.Windows.Forms.GroupBox();
     tableLayoutPanelImage             = new System.Windows.Forms.TableLayoutPanel();
     labelResolution                   = new System.Windows.Forms.Label();
     labelResolutionX                  = new System.Windows.Forms.Label();
     labelResolutionY                  = new System.Windows.Forms.Label();
     labelAlphaBits                    = new System.Windows.Forms.Label();
     labelTextAlphaBits                = new System.Windows.Forms.Label();
     labelGraphicsAlphaBits            = new System.Windows.Forms.Label();
     tableLayoutPanelGraphicsAlphaBits = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanelTextAlphaBits     = new System.Windows.Forms.TableLayoutPanel();
     groupBoxImage.SuspendLayout();
     tableLayoutPanelImage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownResolutionX)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownResolutionY)).BeginInit();
     tableLayoutPanelGraphicsAlphaBits.SuspendLayout();
     tableLayoutPanelTextAlphaBits.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBoxImage
     //
     resources.ApplyResources(groupBoxImage, "groupBoxImage");
     groupBoxImage.Controls.Add(tableLayoutPanelImage);
     groupBoxImage.Name    = "groupBoxImage";
     groupBoxImage.TabStop = false;
     //
     // tableLayoutPanelImage
     //
     resources.ApplyResources(tableLayoutPanelImage, "tableLayoutPanelImage");
     tableLayoutPanelImage.Controls.Add(labelResolution, 0, 0);
     tableLayoutPanelImage.Controls.Add(this.numericUpDownResolutionX, 2, 0);
     tableLayoutPanelImage.Controls.Add(labelResolutionX, 1, 0);
     tableLayoutPanelImage.Controls.Add(labelResolutionY, 1, 1);
     tableLayoutPanelImage.Controls.Add(this.numericUpDownResolutionY, 2, 1);
     tableLayoutPanelImage.Controls.Add(labelAlphaBits, 0, 2);
     tableLayoutPanelImage.Controls.Add(labelTextAlphaBits, 1, 2);
     tableLayoutPanelImage.Controls.Add(labelGraphicsAlphaBits, 1, 3);
     tableLayoutPanelImage.Controls.Add(tableLayoutPanelGraphicsAlphaBits, 2, 3);
     tableLayoutPanelImage.Controls.Add(tableLayoutPanelTextAlphaBits, 2, 2);
     tableLayoutPanelImage.Controls.Add(this.checkBoxLinkedResolution, 3, 0);
     tableLayoutPanelImage.Name = "tableLayoutPanelImage";
     //
     // labelResolution
     //
     resources.ApplyResources(labelResolution, "labelResolution");
     labelResolution.Name = "labelResolution";
     tableLayoutPanelImage.SetRowSpan(labelResolution, 2);
     //
     // numericUpDownResolutionX
     //
     resources.ApplyResources(this.numericUpDownResolutionX, "numericUpDownResolutionX");
     this.numericUpDownResolutionX.Maximum = new decimal(new int[] {
         1600,
         0,
         0,
         0
     });
     this.numericUpDownResolutionX.Minimum = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.numericUpDownResolutionX.Name  = "numericUpDownResolutionX";
     this.numericUpDownResolutionX.Value = new decimal(new int[] {
         300,
         0,
         0,
         0
     });
     //
     // labelResolutionX
     //
     resources.ApplyResources(labelResolutionX, "labelResolutionX");
     labelResolutionX.Name = "labelResolutionX";
     //
     // labelResolutionY
     //
     resources.ApplyResources(labelResolutionY, "labelResolutionY");
     labelResolutionY.Name = "labelResolutionY";
     //
     // numericUpDownResolutionY
     //
     resources.ApplyResources(this.numericUpDownResolutionY, "numericUpDownResolutionY");
     this.numericUpDownResolutionY.Maximum = new decimal(new int[] {
         1600,
         0,
         0,
         0
     });
     this.numericUpDownResolutionY.Minimum = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.numericUpDownResolutionY.Name  = "numericUpDownResolutionY";
     this.numericUpDownResolutionY.Value = new decimal(new int[] {
         300,
         0,
         0,
         0
     });
     //
     // labelAlphaBits
     //
     resources.ApplyResources(labelAlphaBits, "labelAlphaBits");
     labelAlphaBits.Name = "labelAlphaBits";
     tableLayoutPanelImage.SetRowSpan(labelAlphaBits, 2);
     //
     // labelTextAlphaBits
     //
     resources.ApplyResources(labelTextAlphaBits, "labelTextAlphaBits");
     labelTextAlphaBits.Name = "labelTextAlphaBits";
     //
     // labelGraphicsAlphaBits
     //
     resources.ApplyResources(labelGraphicsAlphaBits, "labelGraphicsAlphaBits");
     labelGraphicsAlphaBits.Name = "labelGraphicsAlphaBits";
     //
     // tableLayoutPanelGraphicsAlphaBits
     //
     resources.ApplyResources(tableLayoutPanelGraphicsAlphaBits, "tableLayoutPanelGraphicsAlphaBits");
     tableLayoutPanelImage.SetColumnSpan(tableLayoutPanelGraphicsAlphaBits, 2);
     tableLayoutPanelGraphicsAlphaBits.Controls.Add(this.radioButtonGraphicsAlphaBits1, 0, 0);
     tableLayoutPanelGraphicsAlphaBits.Controls.Add(this.radioButtonGraphicsAlphaBits4, 2, 0);
     tableLayoutPanelGraphicsAlphaBits.Controls.Add(this.radioButtonGraphicsAlphaBits2, 1, 0);
     tableLayoutPanelGraphicsAlphaBits.Name = "tableLayoutPanelGraphicsAlphaBits";
     //
     // radioButtonGraphicsAlphaBits1
     //
     resources.ApplyResources(this.radioButtonGraphicsAlphaBits1, "radioButtonGraphicsAlphaBits1");
     this.radioButtonGraphicsAlphaBits1.Name = "radioButtonGraphicsAlphaBits1";
     this.radioButtonGraphicsAlphaBits1.UseVisualStyleBackColor = true;
     //
     // radioButtonGraphicsAlphaBits4
     //
     resources.ApplyResources(this.radioButtonGraphicsAlphaBits4, "radioButtonGraphicsAlphaBits4");
     this.radioButtonGraphicsAlphaBits4.Checked = true;
     this.radioButtonGraphicsAlphaBits4.Name    = "radioButtonGraphicsAlphaBits4";
     this.radioButtonGraphicsAlphaBits4.TabStop = true;
     this.radioButtonGraphicsAlphaBits4.UseVisualStyleBackColor = true;
     //
     // radioButtonGraphicsAlphaBits2
     //
     resources.ApplyResources(this.radioButtonGraphicsAlphaBits2, "radioButtonGraphicsAlphaBits2");
     this.radioButtonGraphicsAlphaBits2.Name = "radioButtonGraphicsAlphaBits2";
     this.radioButtonGraphicsAlphaBits2.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanelTextAlphaBits
     //
     resources.ApplyResources(tableLayoutPanelTextAlphaBits, "tableLayoutPanelTextAlphaBits");
     tableLayoutPanelImage.SetColumnSpan(tableLayoutPanelTextAlphaBits, 2);
     tableLayoutPanelTextAlphaBits.Controls.Add(this.radioButtonTextAlphaBits1, 0, 0);
     tableLayoutPanelTextAlphaBits.Controls.Add(this.radioButtonTextAlphaBits2, 1, 0);
     tableLayoutPanelTextAlphaBits.Controls.Add(this.radioButtonTextAlphaBits4, 2, 0);
     tableLayoutPanelTextAlphaBits.Name = "tableLayoutPanelTextAlphaBits";
     //
     // radioButtonTextAlphaBits1
     //
     resources.ApplyResources(this.radioButtonTextAlphaBits1, "radioButtonTextAlphaBits1");
     this.radioButtonTextAlphaBits1.Name = "radioButtonTextAlphaBits1";
     this.radioButtonTextAlphaBits1.UseVisualStyleBackColor = true;
     //
     // radioButtonTextAlphaBits2
     //
     resources.ApplyResources(this.radioButtonTextAlphaBits2, "radioButtonTextAlphaBits2");
     this.radioButtonTextAlphaBits2.Name = "radioButtonTextAlphaBits2";
     this.radioButtonTextAlphaBits2.UseVisualStyleBackColor = true;
     //
     // radioButtonTextAlphaBits4
     //
     resources.ApplyResources(this.radioButtonTextAlphaBits4, "radioButtonTextAlphaBits4");
     this.radioButtonTextAlphaBits4.Checked = true;
     this.radioButtonTextAlphaBits4.Name    = "radioButtonTextAlphaBits4";
     this.radioButtonTextAlphaBits4.TabStop = true;
     this.radioButtonTextAlphaBits4.UseVisualStyleBackColor = true;
     //
     // checkBoxLinkedResolution
     //
     resources.ApplyResources(this.checkBoxLinkedResolution, "checkBoxLinkedResolution");
     this.checkBoxLinkedResolution.Checked    = true;
     this.checkBoxLinkedResolution.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxLinkedResolution.Name       = "checkBoxLinkedResolution";
     tableLayoutPanelImage.SetRowSpan(this.checkBoxLinkedResolution, 2);
     this.checkBoxLinkedResolution.UseVisualStyleBackColor = true;
     //
     // ImageFormatDialog
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(groupBoxImage);
     this.Name = "ImageFormatDialog";
     groupBoxImage.ResumeLayout(false);
     groupBoxImage.PerformLayout();
     tableLayoutPanelImage.ResumeLayout(false);
     tableLayoutPanelImage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownResolutionX)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownResolutionY)).EndInit();
     tableLayoutPanelGraphicsAlphaBits.ResumeLayout(false);
     tableLayoutPanelGraphicsAlphaBits.PerformLayout();
     tableLayoutPanelTextAlphaBits.ResumeLayout(false);
     tableLayoutPanelTextAlphaBits.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UpdateForm));
     this.webBrowser        = new System.Windows.Forms.WebBrowser();
     this.labelUpdate       = new System.Windows.Forms.Label();
     this.labelDescription  = new System.Windows.Forms.Label();
     this.labelReleaseNotes = new System.Windows.Forms.Label();
     this.pictureBox1       = new System.Windows.Forms.PictureBox();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.buttonSkip        = new System.Windows.Forms.Button();
     this.buttonUpdate      = new System.Windows.Forms.Button();
     this.buttonRemindLater = new System.Windows.Forms.Button();
     tableLayoutPanel1      = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tableLayoutPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.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)));
     tableLayoutPanel1.ColumnCount = 4;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.Controls.Add(this.pictureBox1, 0, 0);
     tableLayoutPanel1.Controls.Add(this.webBrowser, 1, 3);
     tableLayoutPanel1.Controls.Add(this.labelReleaseNotes, 1, 2);
     tableLayoutPanel1.Controls.Add(this.labelUpdate, 1, 0);
     tableLayoutPanel1.Controls.Add(this.labelDescription, 1, 1);
     tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 1, 4);
     tableLayoutPanel1.Location = new System.Drawing.Point(12, 12);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 5;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.Size     = new System.Drawing.Size(725, 585);
     tableLayoutPanel1.TabIndex = 9;
     //
     // webBrowser
     //
     tableLayoutPanel1.SetColumnSpan(this.webBrowser, 3);
     this.webBrowser.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.webBrowser.Location    = new System.Drawing.Point(76, 72);
     this.webBrowser.Margin      = new System.Windows.Forms.Padding(0);
     this.webBrowser.MinimumSize = new System.Drawing.Size(23, 23);
     this.webBrowser.Name        = "webBrowser";
     this.webBrowser.Size        = new System.Drawing.Size(649, 475);
     this.webBrowser.TabIndex    = 0;
     //
     // labelUpdate
     //
     this.labelUpdate.AutoSize = true;
     tableLayoutPanel1.SetColumnSpan(this.labelUpdate, 3);
     this.labelUpdate.Dock        = System.Windows.Forms.DockStyle.Top;
     this.labelUpdate.Font        = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.labelUpdate.Location    = new System.Drawing.Point(79, 6);
     this.labelUpdate.Margin      = new System.Windows.Forms.Padding(3, 6, 3, 0);
     this.labelUpdate.MaximumSize = new System.Drawing.Size(560, 0);
     this.labelUpdate.Name        = "labelUpdate";
     this.labelUpdate.Size        = new System.Drawing.Size(560, 19);
     this.labelUpdate.TabIndex    = 5;
     this.labelUpdate.Text        = "A new version of AutoUpdater.NET is available!";
     //
     // labelDescription
     //
     this.labelDescription.AutoSize = true;
     tableLayoutPanel1.SetColumnSpan(this.labelDescription, 3);
     this.labelDescription.Dock     = System.Windows.Forms.DockStyle.Top;
     this.labelDescription.Font     = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.labelDescription.Location = new System.Drawing.Point(79, 31);
     this.labelDescription.Margin   = new System.Windows.Forms.Padding(3, 6, 3, 0);
     this.labelDescription.Name     = "labelDescription";
     this.labelDescription.Size     = new System.Drawing.Size(643, 15);
     this.labelDescription.TabIndex = 6;
     this.labelDescription.Text     = "AutoUpdaterTest 1.1.1.0 is now available. You have version 1.0.0.0 installed. Wou" +
                                      "ld you like to download it now?";
     //
     // labelReleaseNotes
     //
     this.labelReleaseNotes.AutoSize = true;
     tableLayoutPanel1.SetColumnSpan(this.labelReleaseNotes, 3);
     this.labelReleaseNotes.Dock     = System.Windows.Forms.DockStyle.Top;
     this.labelReleaseNotes.Font     = new System.Drawing.Font("Segoe UI", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.labelReleaseNotes.Location = new System.Drawing.Point(79, 52);
     this.labelReleaseNotes.Margin   = new System.Windows.Forms.Padding(3, 6, 3, 0);
     this.labelReleaseNotes.Name     = "labelReleaseNotes";
     this.labelReleaseNotes.Size     = new System.Drawing.Size(643, 17);
     this.labelReleaseNotes.TabIndex = 7;
     this.labelReleaseNotes.Text     = "Release Notes :";
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = global::AutoUpdaterDotNET.Properties.Resources.update;
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name     = "pictureBox1";
     tableLayoutPanel1.SetRowSpan(this.pictureBox1, 3);
     this.pictureBox1.Size     = new System.Drawing.Size(70, 66);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBox1.TabIndex = 8;
     this.pictureBox1.TabStop  = false;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.AutoSize     = true;
     this.tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.tableLayoutPanel2.ColumnCount  = 3;
     tableLayoutPanel1.SetColumnSpan(this.tableLayoutPanel2, 3);
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel2.Controls.Add(this.buttonSkip, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.buttonUpdate, 2, 0);
     this.tableLayoutPanel2.Controls.Add(this.buttonRemindLater, 1, 0);
     this.tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(79, 550);
     this.tableLayoutPanel2.Name     = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Size     = new System.Drawing.Size(643, 32);
     this.tableLayoutPanel2.TabIndex = 9;
     //
     // buttonSkip
     //
     this.buttonSkip.DialogResult            = System.Windows.Forms.DialogResult.Abort;
     this.buttonSkip.Dock                    = System.Windows.Forms.DockStyle.Top;
     this.buttonSkip.Image                   = global::AutoUpdaterDotNET.Properties.Resources.hand_point;
     this.buttonSkip.Location                = new System.Drawing.Point(2, 2);
     this.buttonSkip.Margin                  = new System.Windows.Forms.Padding(2);
     this.buttonSkip.Name                    = "buttonSkip";
     this.buttonSkip.Size                    = new System.Drawing.Size(210, 28);
     this.buttonSkip.TabIndex                = 1;
     this.buttonSkip.Text                    = "Skip this version";
     this.buttonSkip.TextAlign               = System.Drawing.ContentAlignment.MiddleRight;
     this.buttonSkip.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.buttonSkip.UseVisualStyleBackColor = true;
     this.buttonSkip.Click                  += new System.EventHandler(this.ButtonSkipClick);
     //
     // buttonUpdate
     //
     this.buttonUpdate.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.buttonUpdate.Dock                    = System.Windows.Forms.DockStyle.Top;
     this.buttonUpdate.Image                   = global::AutoUpdaterDotNET.Properties.Resources.download;
     this.buttonUpdate.Location                = new System.Drawing.Point(430, 2);
     this.buttonUpdate.Margin                  = new System.Windows.Forms.Padding(2);
     this.buttonUpdate.Name                    = "buttonUpdate";
     this.buttonUpdate.Size                    = new System.Drawing.Size(211, 28);
     this.buttonUpdate.TabIndex                = 2;
     this.buttonUpdate.Text                    = "Update";
     this.buttonUpdate.TextAlign               = System.Drawing.ContentAlignment.MiddleRight;
     this.buttonUpdate.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.buttonUpdate.UseVisualStyleBackColor = true;
     this.buttonUpdate.Click                  += new System.EventHandler(this.ButtonUpdateClick);
     //
     // buttonRemindLater
     //
     this.buttonRemindLater.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.buttonRemindLater.Dock                    = System.Windows.Forms.DockStyle.Top;
     this.buttonRemindLater.Image                   = global::AutoUpdaterDotNET.Properties.Resources.clock_go;
     this.buttonRemindLater.Location                = new System.Drawing.Point(216, 2);
     this.buttonRemindLater.Margin                  = new System.Windows.Forms.Padding(2);
     this.buttonRemindLater.Name                    = "buttonRemindLater";
     this.buttonRemindLater.Size                    = new System.Drawing.Size(210, 28);
     this.buttonRemindLater.TabIndex                = 3;
     this.buttonRemindLater.Text                    = "Remind me later";
     this.buttonRemindLater.TextAlign               = System.Drawing.ContentAlignment.MiddleRight;
     this.buttonRemindLater.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.buttonRemindLater.UseVisualStyleBackColor = true;
     this.buttonRemindLater.Click                  += new System.EventHandler(this.ButtonRemindLaterClick);
     //
     // UpdateForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(749, 609);
     this.Controls.Add(tableLayoutPanel1);
     this.Font          = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin        = new System.Windows.Forms.Padding(2);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(765, 647);
     this.Name          = "UpdateForm";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Software Update";
     this.Load         += new System.EventHandler(this.UpdateFormLoad);
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tableLayoutPanel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 8
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.Windows.Forms.TableLayoutPanel outerLayout;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IndexesEdit));
            System.Windows.Forms.TableLayoutPanel innerLayoutPanel;
            System.Windows.Forms.Label indexNameLabel;
            System.Windows.Forms.Label indexKindLabel;
            System.Windows.Forms.Label indexTypeLabel;
            System.Windows.Forms.ImageList imageList;
            this.indexSettingsGroup = new System.Windows.Forms.GroupBox();
            this.indexNameText = new MySql.Data.VisualStudio.DocumentView.NameTextBox();
            this.indexKindSelect = new System.Windows.Forms.ComboBox();
            this.indexTypeSelect = new System.Windows.Forms.ComboBox();
            this.indexColumns = new MySql.Data.VisualStudio.DocumentView.AdvancedDataGridView();
            this.sourceColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.columnLengthColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.indexNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.positionInIndexColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.removeButton = new System.Windows.Forms.Button();
            this.addButton = new System.Windows.Forms.Button();
            this.indexesList = new System.Windows.Forms.ListBox();
            outerLayout = new System.Windows.Forms.TableLayoutPanel();
            innerLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            indexNameLabel = new System.Windows.Forms.Label();
            indexKindLabel = new System.Windows.Forms.Label();
            indexTypeLabel = new System.Windows.Forms.Label();
            imageList = new System.Windows.Forms.ImageList(this.components);
            outerLayout.SuspendLayout();
            this.indexSettingsGroup.SuspendLayout();
            innerLayoutPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.indexColumns)).BeginInit();
            this.SuspendLayout();
            // 
            // outerLayout
            // 
            resources.ApplyResources(outerLayout, "outerLayout");
            outerLayout.Controls.Add(this.indexSettingsGroup, 2, 0);
            outerLayout.Controls.Add(this.removeButton, 1, 1);
            outerLayout.Controls.Add(this.addButton, 0, 1);
            outerLayout.Controls.Add(this.indexesList, 0, 0);
            outerLayout.Name = "outerLayout";
            // 
            // indexSettingsGroup
            // 
            resources.ApplyResources(this.indexSettingsGroup, "indexSettingsGroup");
            this.indexSettingsGroup.Controls.Add(innerLayoutPanel);
            this.indexSettingsGroup.Name = "indexSettingsGroup";
            outerLayout.SetRowSpan(this.indexSettingsGroup, 2);
            this.indexSettingsGroup.TabStop = false;
            // 
            // innerLayoutPanel
            // 
            resources.ApplyResources(innerLayoutPanel, "innerLayoutPanel");
            innerLayoutPanel.Controls.Add(indexNameLabel, 0, 0);
            innerLayoutPanel.Controls.Add(indexKindLabel, 0, 1);
            innerLayoutPanel.Controls.Add(indexTypeLabel, 0, 2);
            innerLayoutPanel.Controls.Add(this.indexNameText, 1, 0);
            innerLayoutPanel.Controls.Add(this.indexKindSelect, 1, 1);
            innerLayoutPanel.Controls.Add(this.indexTypeSelect, 1, 2);
            innerLayoutPanel.Controls.Add(this.indexColumns, 2, 0);
            innerLayoutPanel.Name = "innerLayoutPanel";
            // 
            // indexNameLabel
            // 
            resources.ApplyResources(indexNameLabel, "indexNameLabel");
            indexNameLabel.Name = "indexNameLabel";
            // 
            // indexKindLabel
            // 
            resources.ApplyResources(indexKindLabel, "indexKindLabel");
            indexKindLabel.Name = "indexKindLabel";
            // 
            // indexTypeLabel
            // 
            resources.ApplyResources(indexTypeLabel, "indexTypeLabel");
            indexTypeLabel.Name = "indexTypeLabel";
            // 
            // indexNameText
            // 
            this.indexNameText.AttributeName = null;
            this.indexNameText.DataSource = null;
            resources.ApplyResources(this.indexNameText, "indexNameText");
            this.indexNameText.Name = "indexNameText";
            this.indexNameText.NameChanging += new System.EventHandler(this.OnIndexNameChanging);
            this.indexNameText.NameChanged += new System.EventHandler(this.OnIndexNameChanged);
            // 
            // indexKindSelect
            // 
            this.indexKindSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.indexKindSelect.FormattingEnabled = true;
            resources.ApplyResources(this.indexKindSelect, "indexKindSelect");
            this.indexKindSelect.Name = "indexKindSelect";
            this.indexKindSelect.SelectedIndexChanged += new System.EventHandler(this.OnKindOrTypeChanged);
            // 
            // indexTypeSelect
            // 
            this.indexTypeSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.indexTypeSelect.FormattingEnabled = true;
            resources.ApplyResources(this.indexTypeSelect, "indexTypeSelect");
            this.indexTypeSelect.Name = "indexTypeSelect";
            this.indexTypeSelect.SelectedIndexChanged += new System.EventHandler(this.OnKindOrTypeChanged);
            // 
            // indexColumns
            // 
            resources.ApplyResources(this.indexColumns, "indexColumns");
            this.indexColumns.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
            this.indexColumns.BackgroundColor = System.Drawing.Color.White;
            this.indexColumns.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.indexColumns.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.sourceColumn,
            this.columnLengthColumn,
            this.indexNameColumn,
            this.positionInIndexColumn});
            innerLayoutPanel.SetColumnSpan(this.indexColumns, 2);
            this.indexColumns.Name = "indexColumns";
            this.indexColumns.OrdinalColumn = null;
            innerLayoutPanel.SetRowSpan(this.indexColumns, 4);
            this.indexColumns.ShowEditingIcon = false;
            this.indexColumns.DefaultValuesNeeded += new System.Windows.Forms.DataGridViewRowEventHandler(this.OnIndexColumnDefaultValuesNeeded);
            this.indexColumns.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnIndexColumnsDataError);
            // 
            // sourceColumn
            // 
            this.sourceColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.sourceColumn, "sourceColumn");
            this.sourceColumn.Name = "sourceColumn";
            // 
            // columnLengthColumn
            // 
            this.columnLengthColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.columnLengthColumn, "columnLengthColumn");
            this.columnLengthColumn.Name = "columnLengthColumn";
            this.columnLengthColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            // 
            // indexNameColumn
            // 
            resources.ApplyResources(this.indexNameColumn, "indexNameColumn");
            this.indexNameColumn.Name = "indexNameColumn";
            this.indexNameColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            // 
            // positionInIndexColumn
            // 
            resources.ApplyResources(this.positionInIndexColumn, "positionInIndexColumn");
            this.positionInIndexColumn.Name = "positionInIndexColumn";
            // 
            // removeButton
            // 
            resources.ApplyResources(this.removeButton, "removeButton");
            this.removeButton.FlatAppearance.BorderSize = 0;
            this.removeButton.ImageList = imageList;
            this.removeButton.Name = "removeButton";
            this.removeButton.UseVisualStyleBackColor = true;
            this.removeButton.Click += new System.EventHandler(this.OnRemoveIndexClick);
            // 
            // imageList
            // 
            imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
            imageList.TransparentColor = System.Drawing.Color.Transparent;
            imageList.Images.SetKeyName(0, "Add_Icon.ico");
            imageList.Images.SetKeyName(1, "Remove_Icon.ico");
            // 
            // addButton
            // 
            resources.ApplyResources(this.addButton, "addButton");
            this.addButton.FlatAppearance.BorderSize = 0;
            this.addButton.ForeColor = System.Drawing.SystemColors.Control;
            this.addButton.ImageList = imageList;
            this.addButton.Name = "addButton";
            this.addButton.UseVisualStyleBackColor = true;
            this.addButton.Click += new System.EventHandler(this.OnAddIndexClick);
            // 
            // indexesList
            // 
            resources.ApplyResources(this.indexesList, "indexesList");
            outerLayout.SetColumnSpan(this.indexesList, 2);
            this.indexesList.FormattingEnabled = true;
            this.indexesList.Name = "indexesList";
            this.indexesList.SelectedIndexChanged += new System.EventHandler(this.OnSelectedIndexChanged);
            // 
            // IndexesEdit
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(outerLayout);
            this.Name = "IndexesEdit";
            outerLayout.ResumeLayout(false);
            this.indexSettingsGroup.ResumeLayout(false);
            innerLayoutPanel.ResumeLayout(false);
            innerLayoutPanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.indexColumns)).EndInit();
            this.ResumeLayout(false);

        }
Ejemplo n.º 9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBox));
     System.Windows.Forms.Button okButton;
     this.AppImage           = new System.Windows.Forms.PictureBox();
     this.labelProductName   = new System.Windows.Forms.Label();
     this.labelVersion       = new System.Windows.Forms.Label();
     this.labelCopyright     = new System.Windows.Forms.Label();
     this.labelCompanyName   = new System.Windows.Forms.Label();
     this.textBoxDescription = new System.Windows.Forms.TextBox();
     tableLayoutPanel        = new System.Windows.Forms.TableLayoutPanel();
     okButton = new System.Windows.Forms.Button();
     tableLayoutPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AppImage)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel
     //
     tableLayoutPanel.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)));
     tableLayoutPanel.ColumnCount = 2;
     tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 180F));
     tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel.Controls.Add(this.AppImage, 0, 0);
     tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
     tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
     tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
     tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
     tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
     tableLayoutPanel.Controls.Add(okButton, 1, 5);
     tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
     tableLayoutPanel.Name     = "tableLayoutPanel";
     tableLayoutPanel.RowCount = 6;
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.Size     = new System.Drawing.Size(566, 278);
     tableLayoutPanel.TabIndex = 0;
     //
     // AppImage
     //
     this.AppImage.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.AppImage.Image    = ((System.Drawing.Image)(resources.GetObject("AppImage.Image")));
     this.AppImage.Location = new System.Drawing.Point(3, 3);
     this.AppImage.Name     = "AppImage";
     tableLayoutPanel.SetRowSpan(this.AppImage, 6);
     this.AppImage.Size     = new System.Drawing.Size(174, 272);
     this.AppImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.AppImage.TabIndex = 12;
     this.AppImage.TabStop  = false;
     //
     // labelProductName
     //
     this.labelProductName.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.labelProductName.Location    = new System.Drawing.Point(186, 0);
     this.labelProductName.Margin      = new System.Windows.Forms.Padding(6, 0, 3, 0);
     this.labelProductName.MaximumSize = new System.Drawing.Size(0, 17);
     this.labelProductName.Name        = "labelProductName";
     this.labelProductName.Size        = new System.Drawing.Size(377, 17);
     this.labelProductName.TabIndex    = 19;
     this.labelProductName.Text        = "Product Name";
     this.labelProductName.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelVersion
     //
     this.labelVersion.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.labelVersion.Location    = new System.Drawing.Point(186, 17);
     this.labelVersion.Margin      = new System.Windows.Forms.Padding(6, 0, 3, 0);
     this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
     this.labelVersion.Name        = "labelVersion";
     this.labelVersion.Size        = new System.Drawing.Size(377, 17);
     this.labelVersion.TabIndex    = 0;
     this.labelVersion.Text        = "Version";
     this.labelVersion.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCopyright
     //
     this.labelCopyright.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.labelCopyright.Location    = new System.Drawing.Point(186, 34);
     this.labelCopyright.Margin      = new System.Windows.Forms.Padding(6, 0, 3, 0);
     this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 17);
     this.labelCopyright.Name        = "labelCopyright";
     this.labelCopyright.Size        = new System.Drawing.Size(377, 17);
     this.labelCopyright.TabIndex    = 21;
     this.labelCopyright.Text        = "Copyright";
     this.labelCopyright.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCompanyName
     //
     this.labelCompanyName.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.labelCompanyName.Location    = new System.Drawing.Point(186, 51);
     this.labelCompanyName.Margin      = new System.Windows.Forms.Padding(6, 0, 3, 0);
     this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 17);
     this.labelCompanyName.Name        = "labelCompanyName";
     this.labelCompanyName.Size        = new System.Drawing.Size(377, 17);
     this.labelCompanyName.TabIndex    = 22;
     this.labelCompanyName.Text        = "Company Name";
     this.labelCompanyName.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBoxDescription
     //
     this.textBoxDescription.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.textBoxDescription.Location   = new System.Drawing.Point(186, 71);
     this.textBoxDescription.Margin     = new System.Windows.Forms.Padding(6, 3, 3, 3);
     this.textBoxDescription.Multiline  = true;
     this.textBoxDescription.Name       = "textBoxDescription";
     this.textBoxDescription.ReadOnly   = true;
     this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBoxDescription.Size       = new System.Drawing.Size(377, 175);
     this.textBoxDescription.TabIndex   = 23;
     this.textBoxDescription.TabStop    = false;
     this.textBoxDescription.Text       = "Description";
     //
     // okButton
     //
     okButton.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     okButton.Location     = new System.Drawing.Point(488, 252);
     okButton.Name         = "okButton";
     okButton.Size         = new System.Drawing.Size(75, 23);
     okButton.TabIndex     = 24;
     okButton.Text         = "&OK";
     //
     // AboutBox
     //
     this.AcceptButton        = okButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = okButton;
     this.ClientSize          = new System.Drawing.Size(584, 296);
     this.Controls.Add(tableLayoutPanel);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(600, 334);
     this.Name          = "AboutBox";
     this.Padding       = new System.Windows.Forms.Padding(9);
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "About";
     tableLayoutPanel.ResumeLayout(false);
     tableLayoutPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AppImage)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TableLayoutPanel          tableLayoutOwner;
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle1  = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle2  = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle3  = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle4  = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle5  = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle6  = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle7  = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle8  = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle9  = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
     this.lbl_PortfolioOwnerLabel = new System.Windows.Forms.Label();
     this.lbl_OwnerEmail          = new System.Windows.Forms.Label();
     this.lbl_OwnerPhone          = new System.Windows.Forms.Label();
     this.lbl_OwnerName           = new System.Windows.Forms.Label();
     this.lbl_PortfolioNameLabel  = new System.Windows.Forms.Label();
     this.lbl_PortfolioName       = new System.Windows.Forms.Label();
     this.lbl_PortfolioNumber     = new System.Windows.Forms.Label();
     this.toolStripContainer1     = new System.Windows.Forms.ToolStripContainer();
     this.tableLayout             = new System.Windows.Forms.TableLayoutPanel();
     this.dgv_Positions           = new System.Windows.Forms.DataGridView();
     this.Symbol                            = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.PurchaseDate                      = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Quantity                          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.PurchasePrice                     = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Open                              = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Direction                         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CurrentPrice                      = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DailyGainLoss                     = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DayGainLoss                       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DayGainLossPercentage             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.InceptionGainLoss                 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TotalGainLoss                     = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TotalGainLossPercentage           = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dgv_PortfolioFooter               = new System.Windows.Forms.DataGridView();
     this.Dummy                             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.PortfolioDayGainLoss              = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.PortfolioDayGainLossPercent       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Spacer                            = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.PortfolioInceptionGainLoss        = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.PortfolioInceptionGainLossPercent = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.toolStrip1                        = new System.Windows.Forms.ToolStrip();
     this.tsbOpen                           = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator                = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator1               = new System.Windows.Forms.ToolStripSeparator();
     tableLayoutOwner                       = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutOwner.SuspendLayout();
     this.toolStripContainer1.ContentPanel.SuspendLayout();
     this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
     this.toolStripContainer1.SuspendLayout();
     this.tableLayout.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_Positions)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_PortfolioFooter)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutOwner
     //
     tableLayoutOwner.ColumnCount = 2;
     tableLayoutOwner.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 146F));
     tableLayoutOwner.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutOwner.Controls.Add(this.lbl_PortfolioOwnerLabel, 0, 0);
     tableLayoutOwner.Controls.Add(this.lbl_OwnerEmail, 1, 2);
     tableLayoutOwner.Controls.Add(this.lbl_OwnerPhone, 1, 1);
     tableLayoutOwner.Controls.Add(this.lbl_OwnerName, 1, 0);
     tableLayoutOwner.Controls.Add(this.lbl_PortfolioNameLabel, 0, 3);
     tableLayoutOwner.Controls.Add(this.lbl_PortfolioName, 1, 3);
     tableLayoutOwner.Controls.Add(this.lbl_PortfolioNumber, 1, 4);
     tableLayoutOwner.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutOwner.Location = new System.Drawing.Point(3, 3);
     tableLayoutOwner.Name     = "tableLayoutOwner";
     tableLayoutOwner.RowCount = 5;
     tableLayoutOwner.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     tableLayoutOwner.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     tableLayoutOwner.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     tableLayoutOwner.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutOwner.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutOwner.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutOwner.Size     = new System.Drawing.Size(842, 119);
     tableLayoutOwner.TabIndex = 0;
     //
     // lbl_PortfolioOwnerLabel
     //
     this.lbl_PortfolioOwnerLabel.AutoSize = true;
     this.lbl_PortfolioOwnerLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_PortfolioOwnerLabel.Location = new System.Drawing.Point(3, 0);
     this.lbl_PortfolioOwnerLabel.Name     = "lbl_PortfolioOwnerLabel";
     tableLayoutOwner.SetRowSpan(this.lbl_PortfolioOwnerLabel, 3);
     this.lbl_PortfolioOwnerLabel.Size     = new System.Drawing.Size(125, 17);
     this.lbl_PortfolioOwnerLabel.TabIndex = 0;
     this.lbl_PortfolioOwnerLabel.Text     = "Portfolio Owner:";
     //
     // lbl_OwnerEmail
     //
     this.lbl_OwnerEmail.AutoSize = true;
     this.lbl_OwnerEmail.Location = new System.Drawing.Point(149, 50);
     this.lbl_OwnerEmail.Name     = "lbl_OwnerEmail";
     this.lbl_OwnerEmail.Size     = new System.Drawing.Size(0, 13);
     this.lbl_OwnerEmail.TabIndex = 3;
     //
     // lbl_OwnerPhone
     //
     this.lbl_OwnerPhone.AutoSize = true;
     this.lbl_OwnerPhone.Location = new System.Drawing.Point(149, 25);
     this.lbl_OwnerPhone.Name     = "lbl_OwnerPhone";
     this.lbl_OwnerPhone.Size     = new System.Drawing.Size(0, 13);
     this.lbl_OwnerPhone.TabIndex = 1;
     //
     // lbl_OwnerName
     //
     this.lbl_OwnerName.AutoSize = true;
     this.lbl_OwnerName.Location = new System.Drawing.Point(149, 0);
     this.lbl_OwnerName.Name     = "lbl_OwnerName";
     this.lbl_OwnerName.Size     = new System.Drawing.Size(110, 13);
     this.lbl_OwnerName.TabIndex = 2;
     this.lbl_OwnerName.Text     = "Open a portfolio file....";
     //
     // lbl_PortfolioNameLabel
     //
     this.lbl_PortfolioNameLabel.AutoSize = true;
     this.lbl_PortfolioNameLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_PortfolioNameLabel.Location = new System.Drawing.Point(3, 75);
     this.lbl_PortfolioNameLabel.Name     = "lbl_PortfolioNameLabel";
     tableLayoutOwner.SetRowSpan(this.lbl_PortfolioNameLabel, 2);
     this.lbl_PortfolioNameLabel.Size     = new System.Drawing.Size(120, 17);
     this.lbl_PortfolioNameLabel.TabIndex = 4;
     this.lbl_PortfolioNameLabel.Text     = "Portfolio Name:";
     //
     // lbl_PortfolioName
     //
     this.lbl_PortfolioName.AutoSize = true;
     this.lbl_PortfolioName.Location = new System.Drawing.Point(149, 75);
     this.lbl_PortfolioName.Name     = "lbl_PortfolioName";
     this.lbl_PortfolioName.Size     = new System.Drawing.Size(0, 13);
     this.lbl_PortfolioName.TabIndex = 5;
     //
     // lbl_PortfolioNumber
     //
     this.lbl_PortfolioNumber.AutoSize = true;
     this.lbl_PortfolioNumber.Location = new System.Drawing.Point(149, 95);
     this.lbl_PortfolioNumber.Name     = "lbl_PortfolioNumber";
     this.lbl_PortfolioNumber.Size     = new System.Drawing.Size(0, 13);
     this.lbl_PortfolioNumber.TabIndex = 6;
     //
     // toolStripContainer1
     //
     this.toolStripContainer1.BottomToolStripPanelVisible = false;
     //
     // toolStripContainer1.ContentPanel
     //
     this.toolStripContainer1.ContentPanel.Controls.Add(this.tableLayout);
     this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(848, 478);
     this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.toolStripContainer1.LeftToolStripPanelVisible = false;
     this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
     this.toolStripContainer1.Name     = "toolStripContainer1";
     this.toolStripContainer1.RightToolStripPanelVisible = false;
     this.toolStripContainer1.Size     = new System.Drawing.Size(848, 503);
     this.toolStripContainer1.TabIndex = 0;
     this.toolStripContainer1.Text     = "toolStripContainer";
     //
     // toolStripContainer1.TopToolStripPanel
     //
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip1);
     //
     // tableLayout
     //
     this.tableLayout.ColumnCount = 1;
     this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayout.Controls.Add(tableLayoutOwner, 0, 0);
     this.tableLayout.Controls.Add(this.dgv_Positions, 0, 1);
     this.tableLayout.Controls.Add(this.dgv_PortfolioFooter, 0, 2);
     this.tableLayout.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayout.Location = new System.Drawing.Point(0, 0);
     this.tableLayout.Name     = "tableLayout";
     this.tableLayout.RowCount = 3;
     this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 125F));
     this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayout.Size     = new System.Drawing.Size(848, 478);
     this.tableLayout.TabIndex = 0;
     //
     // dgv_Positions
     //
     this.dgv_Positions.AllowUserToAddRows          = false;
     this.dgv_Positions.AllowUserToDeleteRows       = false;
     this.dgv_Positions.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dgv_Positions.AutoSizeRowsMode            = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells;
     this.dgv_Positions.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_Positions.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.Symbol,
         this.PurchaseDate,
         this.Quantity,
         this.PurchasePrice,
         this.Open,
         this.Direction,
         this.CurrentPrice,
         this.DailyGainLoss,
         this.DayGainLoss,
         this.DayGainLossPercentage,
         this.InceptionGainLoss,
         this.TotalGainLoss,
         this.TotalGainLossPercentage
     });
     this.dgv_Positions.Dock                 = System.Windows.Forms.DockStyle.Fill;
     this.dgv_Positions.Location             = new System.Drawing.Point(3, 128);
     this.dgv_Positions.Name                 = "dgv_Positions";
     this.dgv_Positions.ReadOnly             = true;
     this.dgv_Positions.Size                 = new System.Drawing.Size(842, 50);
     this.dgv_Positions.TabIndex             = 1;
     this.dgv_Positions.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.dgv_DataBindingComplete);
     //
     // Symbol
     //
     this.Symbol.DataPropertyName = "Symbol";
     this.Symbol.HeaderText       = "Position";
     this.Symbol.Name             = "Symbol";
     this.Symbol.ReadOnly         = true;
     this.Symbol.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
     this.Symbol.Width            = 69;
     //
     // PurchaseDate
     //
     this.PurchaseDate.DataPropertyName = "PurchaseDate";
     this.PurchaseDate.HeaderText       = "Purchase Date";
     this.PurchaseDate.Name             = "PurchaseDate";
     this.PurchaseDate.ReadOnly         = true;
     this.PurchaseDate.Width            = 95;
     //
     // Quantity
     //
     this.Quantity.DataPropertyName   = "Quantity";
     dataGridViewCellStyle1.Format    = "N3";
     dataGridViewCellStyle1.NullValue = null;
     this.Quantity.DefaultCellStyle   = dataGridViewCellStyle1;
     this.Quantity.HeaderText         = "Quantity";
     this.Quantity.Name     = "Quantity";
     this.Quantity.ReadOnly = true;
     this.Quantity.Width    = 71;
     //
     // PurchasePrice
     //
     this.PurchasePrice.DataPropertyName = "PurchasePrice";
     dataGridViewCellStyle2.Format       = "C3";
     dataGridViewCellStyle2.NullValue    = null;
     this.PurchasePrice.DefaultCellStyle = dataGridViewCellStyle2;
     this.PurchasePrice.HeaderText       = "Purchase Price";
     this.PurchasePrice.Name             = "PurchasePrice";
     this.PurchasePrice.ReadOnly         = true;
     this.PurchasePrice.Width            = 96;
     //
     // Open
     //
     this.Open.DataPropertyName    = "OpenPrice";
     dataGridViewCellStyle3.Format = "C3";
     this.Open.DefaultCellStyle    = dataGridViewCellStyle3;
     this.Open.HeaderText          = "Open";
     this.Open.Name     = "Open";
     this.Open.ReadOnly = true;
     this.Open.Width    = 58;
     //
     // Direction
     //
     this.Direction.DataPropertyName = "Direction";
     this.Direction.HeaderText       = "Direction";
     this.Direction.Name             = "Direction";
     this.Direction.ReadOnly         = true;
     this.Direction.Visible          = false;
     this.Direction.Width            = 74;
     //
     // CurrentPrice
     //
     this.CurrentPrice.DataPropertyName = "CurrentPrice";
     dataGridViewCellStyle4.Format      = "C3";
     this.CurrentPrice.DefaultCellStyle = dataGridViewCellStyle4;
     this.CurrentPrice.HeaderText       = "Last Trade";
     this.CurrentPrice.Name             = "CurrentPrice";
     this.CurrentPrice.ReadOnly         = true;
     this.CurrentPrice.Width            = 77;
     //
     // DailyGainLoss
     //
     this.DailyGainLoss.DataPropertyName = "DayGainLoss";
     dataGridViewCellStyle5.Format       = "C3";
     this.DailyGainLoss.DefaultCellStyle = dataGridViewCellStyle5;
     this.DailyGainLoss.HeaderText       = "Today\'s Gain/Loss (per share)";
     this.DailyGainLoss.Name             = "DailyGainLoss";
     this.DailyGainLoss.ReadOnly         = true;
     this.DailyGainLoss.Width            = 132;
     //
     // DayGainLoss
     //
     this.DayGainLoss.DataPropertyName = "DayGainLossTotal";
     dataGridViewCellStyle6.Format     = "C3";
     this.DayGainLoss.DefaultCellStyle = dataGridViewCellStyle6;
     this.DayGainLoss.HeaderText       = "Today\'s Total Gain/Loss";
     this.DayGainLoss.Name             = "DayGainLoss";
     this.DayGainLoss.ReadOnly         = true;
     this.DayGainLoss.Width            = 135;
     //
     // DayGainLossPercentage
     //
     this.DayGainLossPercentage.DataPropertyName = "DayGainLossPercentage";
     dataGridViewCellStyle7.Format = "P";
     this.DayGainLossPercentage.DefaultCellStyle = dataGridViewCellStyle7;
     this.DayGainLossPercentage.HeaderText       = "Today\'s Gain/Loss %";
     this.DayGainLossPercentage.Name             = "DayGainLossPercentage";
     this.DayGainLossPercentage.ReadOnly         = true;
     this.DayGainLossPercentage.Width            = 111;
     //
     // InceptionGainLoss
     //
     this.InceptionGainLoss.DataPropertyName = "InceptionGainLoss";
     dataGridViewCellStyle8.Format           = "C3";
     this.InceptionGainLoss.DefaultCellStyle = dataGridViewCellStyle8;
     this.InceptionGainLoss.HeaderText       = "Inception Gain/Loss (per share)";
     this.InceptionGainLoss.Name             = "InceptionGainLoss";
     this.InceptionGainLoss.ReadOnly         = true;
     this.InceptionGainLoss.Width            = 139;
     //
     // TotalGainLoss
     //
     this.TotalGainLoss.DataPropertyName = "InceptionGainLossTotal";
     dataGridViewCellStyle9.Format       = "C3";
     this.TotalGainLoss.DefaultCellStyle = dataGridViewCellStyle9;
     this.TotalGainLoss.HeaderText       = "Inception Total Gain/Loss";
     this.TotalGainLoss.Name             = "TotalGainLoss";
     this.TotalGainLoss.ReadOnly         = true;
     this.TotalGainLoss.Width            = 141;
     //
     // TotalGainLossPercentage
     //
     this.TotalGainLossPercentage.DataPropertyName = "InceptionGainLossPercentage";
     dataGridViewCellStyle10.Format = "P";
     this.TotalGainLossPercentage.DefaultCellStyle = dataGridViewCellStyle10;
     this.TotalGainLossPercentage.HeaderText       = "Total Gain/Loss %";
     this.TotalGainLossPercentage.Name             = "TotalGainLossPercentage";
     this.TotalGainLossPercentage.ReadOnly         = true;
     this.TotalGainLossPercentage.Width            = 99;
     //
     // dgv_PortfolioFooter
     //
     this.dgv_PortfolioFooter.AllowUserToAddRows          = false;
     this.dgv_PortfolioFooter.AllowUserToDeleteRows       = false;
     this.dgv_PortfolioFooter.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_PortfolioFooter.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.Dummy,
         this.PortfolioDayGainLoss,
         this.PortfolioDayGainLossPercent,
         this.Spacer,
         this.PortfolioInceptionGainLoss,
         this.PortfolioInceptionGainLossPercent
     });
     this.dgv_PortfolioFooter.Dock                 = System.Windows.Forms.DockStyle.Fill;
     this.dgv_PortfolioFooter.Location             = new System.Drawing.Point(3, 184);
     this.dgv_PortfolioFooter.Name                 = "dgv_PortfolioFooter";
     this.dgv_PortfolioFooter.ReadOnly             = true;
     this.dgv_PortfolioFooter.Size                 = new System.Drawing.Size(842, 291);
     this.dgv_PortfolioFooter.TabIndex             = 2;
     this.dgv_PortfolioFooter.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.dgv_DataBindingComplete);
     //
     // Dummy
     //
     this.Dummy.HeaderText = "";
     this.Dummy.Name       = "Dummy";
     this.Dummy.ReadOnly   = true;
     this.Dummy.Width      = 598;
     //
     // PortfolioDayGainLoss
     //
     this.PortfolioDayGainLoss.DataPropertyName = "PortfolioDayGainLoss";
     dataGridViewCellStyle11.Format             = "C3";
     this.PortfolioDayGainLoss.DefaultCellStyle = dataGridViewCellStyle11;
     this.PortfolioDayGainLoss.HeaderText       = "Portfoliio Daily Gain/Loss";
     this.PortfolioDayGainLoss.Name             = "PortfolioDayGainLoss";
     this.PortfolioDayGainLoss.ReadOnly         = true;
     this.PortfolioDayGainLoss.Width            = 135;
     //
     // PortfolioDayGainLossPercent
     //
     this.PortfolioDayGainLossPercent.DataPropertyName = "PortfolioDayGainLossPercent";
     dataGridViewCellStyle12.Format = "P";
     this.PortfolioDayGainLossPercent.DefaultCellStyle = dataGridViewCellStyle12;
     this.PortfolioDayGainLossPercent.HeaderText       = "Portfolio Daily Gain/Loss %";
     this.PortfolioDayGainLossPercent.Name             = "PortfolioDayGainLossPercent";
     this.PortfolioDayGainLossPercent.ReadOnly         = true;
     this.PortfolioDayGainLossPercent.Width            = 111;
     //
     // Spacer
     //
     this.Spacer.HeaderText = "";
     this.Spacer.Name       = "Spacer";
     this.Spacer.ReadOnly   = true;
     this.Spacer.Width      = 139;
     //
     // PortfolioInceptionGainLoss
     //
     this.PortfolioInceptionGainLoss.DataPropertyName = "PortfolioInceptionGainLoss";
     dataGridViewCellStyle13.Format = "C3";
     this.PortfolioInceptionGainLoss.DefaultCellStyle = dataGridViewCellStyle13;
     this.PortfolioInceptionGainLoss.HeaderText       = "Portfolio Inception Gain/Loss";
     this.PortfolioInceptionGainLoss.Name             = "PortfolioInceptionGainLoss";
     this.PortfolioInceptionGainLoss.ReadOnly         = true;
     this.PortfolioInceptionGainLoss.Width            = 141;
     //
     // PortfolioInceptionGainLossPercent
     //
     this.PortfolioInceptionGainLossPercent.DataPropertyName = "PortfolioInceptionGainLossPercent";
     dataGridViewCellStyle14.Format = "P";
     this.PortfolioInceptionGainLossPercent.DefaultCellStyle = dataGridViewCellStyle14;
     this.PortfolioInceptionGainLossPercent.HeaderText       = "Portfolio Inception Gain/Loss %";
     this.PortfolioInceptionGainLossPercent.Name             = "PortfolioInceptionGainLossPercent";
     this.PortfolioInceptionGainLossPercent.ReadOnly         = true;
     this.PortfolioInceptionGainLossPercent.Width            = 99;
     //
     // toolStrip1
     //
     this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsbOpen,
         this.toolStripSeparator,
         this.toolStripSeparator1
     });
     this.toolStrip1.Location = new System.Drawing.Point(3, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(134, 25);
     this.toolStrip1.TabIndex = 0;
     //
     // tsbOpen
     //
     this.tsbOpen.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tsbOpen.Image                 = ((System.Drawing.Image)(resources.GetObject("tsbOpen.Image")));
     this.tsbOpen.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbOpen.Name        = "tsbOpen";
     this.tsbOpen.Size        = new System.Drawing.Size(110, 22);
     this.tsbOpen.Text        = "&Open Portfolio File";
     this.tsbOpen.ToolTipText = "Open Portfolio File";
     this.tsbOpen.Click      += new System.EventHandler(this.tsbOpen_Click);
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // Main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(848, 503);
     this.Controls.Add(this.toolStripContainer1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "Main";
     this.Text        = "Farallon Code Project: Portfolio Tracker";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     tableLayoutOwner.ResumeLayout(false);
     tableLayoutOwner.PerformLayout();
     this.toolStripContainer1.ContentPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.PerformLayout();
     this.toolStripContainer1.ResumeLayout(false);
     this.toolStripContainer1.PerformLayout();
     this.tableLayout.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgv_Positions)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_PortfolioFooter)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TableLayoutPanel jobEditorTable;
     System.Windows.Forms.Label            totalLabel;
     System.Windows.Forms.Label            jpLabel;
     this.movementGroup    = new System.Windows.Forms.GroupBox();
     this.supportGroup     = new System.Windows.Forms.GroupBox();
     this.actionGroup      = new System.Windows.Forms.GroupBox();
     this.reactionGroup    = new System.Windows.Forms.GroupBox();
     this.infoPanel        = new System.Windows.Forms.Panel();
     this.levelLabel       = new System.Windows.Forms.Label();
     this.masteredCheckbox = new System.Windows.Forms.CheckBox();
     this.totalSpinner     = new System.Windows.Forms.NumericUpDown();
     this.jpSpinner        = new System.Windows.Forms.NumericUpDown();
     this.action1          = new System.Windows.Forms.CheckBox();
     this.action2          = new System.Windows.Forms.CheckBox();
     this.action3          = new System.Windows.Forms.CheckBox();
     this.action4          = new System.Windows.Forms.CheckBox();
     this.action5          = new System.Windows.Forms.CheckBox();
     this.action6          = new System.Windows.Forms.CheckBox();
     this.action7          = new System.Windows.Forms.CheckBox();
     this.action8          = new System.Windows.Forms.CheckBox();
     this.action9          = new System.Windows.Forms.CheckBox();
     this.action10         = new System.Windows.Forms.CheckBox();
     this.action11         = new System.Windows.Forms.CheckBox();
     this.action12         = new System.Windows.Forms.CheckBox();
     this.action13         = new System.Windows.Forms.CheckBox();
     this.action14         = new System.Windows.Forms.CheckBox();
     this.action15         = new System.Windows.Forms.CheckBox();
     this.action16         = new System.Windows.Forms.CheckBox();
     this.reaction1        = new System.Windows.Forms.CheckBox();
     this.reaction2        = new System.Windows.Forms.CheckBox();
     this.reaction3        = new System.Windows.Forms.CheckBox();
     this.support1         = new System.Windows.Forms.CheckBox();
     this.support2         = new System.Windows.Forms.CheckBox();
     this.support3         = new System.Windows.Forms.CheckBox();
     this.support4         = new System.Windows.Forms.CheckBox();
     this.movement1        = new System.Windows.Forms.CheckBox();
     this.movement2        = new System.Windows.Forms.CheckBox();
     jobEditorTable        = new System.Windows.Forms.TableLayoutPanel();
     totalLabel            = new System.Windows.Forms.Label();
     jpLabel = new System.Windows.Forms.Label();
     jobEditorTable.SuspendLayout();
     this.movementGroup.SuspendLayout();
     this.supportGroup.SuspendLayout();
     this.actionGroup.SuspendLayout();
     this.reactionGroup.SuspendLayout();
     this.infoPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.totalSpinner)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.jpSpinner)).BeginInit();
     this.SuspendLayout();
     //
     // jobEditorTable
     //
     jobEditorTable.ColumnCount = 2;
     jobEditorTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     jobEditorTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     jobEditorTable.Controls.Add(this.movementGroup, 1, 2);
     jobEditorTable.Controls.Add(this.supportGroup, 1, 1);
     jobEditorTable.Controls.Add(this.actionGroup, 0, 0);
     jobEditorTable.Controls.Add(this.reactionGroup, 1, 0);
     jobEditorTable.Controls.Add(this.infoPanel, 1, 3);
     jobEditorTable.Dock     = System.Windows.Forms.DockStyle.Fill;
     jobEditorTable.Location = new System.Drawing.Point(0, 0);
     jobEditorTable.Name     = "jobEditorTable";
     jobEditorTable.RowCount = 4;
     jobEditorTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 23.52941F));
     jobEditorTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 29.41176F));
     jobEditorTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17.64706F));
     jobEditorTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 29.41176F));
     jobEditorTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     jobEditorTable.Size     = new System.Drawing.Size(397, 432);
     jobEditorTable.TabIndex = 2;
     //
     // movementGroup
     //
     this.movementGroup.Controls.Add(this.movement1);
     this.movementGroup.Controls.Add(this.movement2);
     this.movementGroup.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.movementGroup.Location = new System.Drawing.Point(201, 231);
     this.movementGroup.Name     = "movementGroup";
     this.movementGroup.Size     = new System.Drawing.Size(193, 70);
     this.movementGroup.TabIndex = 5;
     this.movementGroup.TabStop  = false;
     this.movementGroup.Text     = "Movement";
     //
     // supportGroup
     //
     this.supportGroup.Controls.Add(this.support1);
     this.supportGroup.Controls.Add(this.support2);
     this.supportGroup.Controls.Add(this.support3);
     this.supportGroup.Controls.Add(this.support4);
     this.supportGroup.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.supportGroup.Location = new System.Drawing.Point(201, 104);
     this.supportGroup.Name     = "supportGroup";
     this.supportGroup.Size     = new System.Drawing.Size(193, 121);
     this.supportGroup.TabIndex = 4;
     this.supportGroup.TabStop  = false;
     this.supportGroup.Text     = "Support";
     //
     // actionGroup
     //
     this.actionGroup.Controls.Add(this.action1);
     this.actionGroup.Controls.Add(this.action2);
     this.actionGroup.Controls.Add(this.action3);
     this.actionGroup.Controls.Add(this.action4);
     this.actionGroup.Controls.Add(this.action5);
     this.actionGroup.Controls.Add(this.action6);
     this.actionGroup.Controls.Add(this.action7);
     this.actionGroup.Controls.Add(this.action8);
     this.actionGroup.Controls.Add(this.action9);
     this.actionGroup.Controls.Add(this.action10);
     this.actionGroup.Controls.Add(this.action11);
     this.actionGroup.Controls.Add(this.action12);
     this.actionGroup.Controls.Add(this.action13);
     this.actionGroup.Controls.Add(this.action14);
     this.actionGroup.Controls.Add(this.action15);
     this.actionGroup.Controls.Add(this.action16);
     this.actionGroup.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.actionGroup.Location = new System.Drawing.Point(3, 3);
     this.actionGroup.Name     = "actionGroup";
     jobEditorTable.SetRowSpan(this.actionGroup, 4);
     this.actionGroup.Size     = new System.Drawing.Size(192, 426);
     this.actionGroup.TabIndex = 1;
     this.actionGroup.TabStop  = false;
     this.actionGroup.Text     = "Action";
     //
     // reactionGroup
     //
     this.reactionGroup.Controls.Add(this.reaction1);
     this.reactionGroup.Controls.Add(this.reaction2);
     this.reactionGroup.Controls.Add(this.reaction3);
     this.reactionGroup.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.reactionGroup.Location = new System.Drawing.Point(201, 3);
     this.reactionGroup.Name     = "reactionGroup";
     this.reactionGroup.Size     = new System.Drawing.Size(193, 95);
     this.reactionGroup.TabIndex = 2;
     this.reactionGroup.TabStop  = false;
     this.reactionGroup.Text     = "Reaction";
     //
     // infoPanel
     //
     this.infoPanel.Controls.Add(this.levelLabel);
     this.infoPanel.Controls.Add(this.masteredCheckbox);
     this.infoPanel.Controls.Add(this.totalSpinner);
     this.infoPanel.Controls.Add(totalLabel);
     this.infoPanel.Controls.Add(this.jpSpinner);
     this.infoPanel.Controls.Add(jpLabel);
     this.infoPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.infoPanel.Location = new System.Drawing.Point(199, 305);
     this.infoPanel.Margin   = new System.Windows.Forms.Padding(1);
     this.infoPanel.Name     = "infoPanel";
     this.infoPanel.Size     = new System.Drawing.Size(197, 126);
     this.infoPanel.TabIndex = 8;
     //
     // levelLabel
     //
     this.levelLabel.AutoSize = true;
     this.levelLabel.Location = new System.Drawing.Point(5, 1);
     this.levelLabel.Name     = "levelLabel";
     this.levelLabel.Size     = new System.Drawing.Size(53, 13);
     this.levelLabel.TabIndex = 201;
     this.levelLabel.Text     = "Level: {0}";
     this.levelLabel.Visible  = false;
     //
     // masteredCheckbox
     //
     this.masteredCheckbox.AutoSize                = true;
     this.masteredCheckbox.Dock                    = System.Windows.Forms.DockStyle.Top;
     this.masteredCheckbox.Enabled                 = false;
     this.masteredCheckbox.Location                = new System.Drawing.Point(0, 0);
     this.masteredCheckbox.Name                    = "masteredCheckbox";
     this.masteredCheckbox.RightToLeft             = System.Windows.Forms.RightToLeft.Yes;
     this.masteredCheckbox.Size                    = new System.Drawing.Size(197, 17);
     this.masteredCheckbox.TabIndex                = 8;
     this.masteredCheckbox.Text                    = "Mastered";
     this.masteredCheckbox.UseVisualStyleBackColor = true;
     //
     // totalSpinner
     //
     this.totalSpinner.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.totalSpinner.Location = new System.Drawing.Point(127, 49);
     this.totalSpinner.Maximum  = new decimal(new int[] {
         9999,
         0,
         0,
         0
     });
     this.totalSpinner.Name      = "totalSpinner";
     this.totalSpinner.Size      = new System.Drawing.Size(68, 20);
     this.totalSpinner.TabIndex  = 200;
     this.totalSpinner.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // totalLabel
     //
     totalLabel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     totalLabel.AutoSize = true;
     totalLabel.Location = new System.Drawing.Point(87, 51);
     totalLabel.Name     = "totalLabel";
     totalLabel.Size     = new System.Drawing.Size(34, 13);
     totalLabel.TabIndex = 0;
     totalLabel.Text     = "Total:";
     //
     // jpSpinner
     //
     this.jpSpinner.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.jpSpinner.Location = new System.Drawing.Point(127, 22);
     this.jpSpinner.Maximum  = new decimal(new int[] {
         9999,
         0,
         0,
         0
     });
     this.jpSpinner.Name      = "jpSpinner";
     this.jpSpinner.Size      = new System.Drawing.Size(68, 20);
     this.jpSpinner.TabIndex  = 100;
     this.jpSpinner.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // jpLabel
     //
     jpLabel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     jpLabel.AutoSize = true;
     jpLabel.Location = new System.Drawing.Point(99, 24);
     jpLabel.Name     = "jpLabel";
     jpLabel.Size     = new System.Drawing.Size(22, 13);
     jpLabel.TabIndex = 0;
     jpLabel.Text     = "JP:";
     //
     // action1
     //
     this.action1.AutoSize = true;
     this.action1.Location = new System.Drawing.Point(6, 19);
     this.action1.Name     = "action1";
     this.action1.Size     = new System.Drawing.Size(61, 17);
     this.action1.TabIndex = 1801;
     this.action1.Text     = "action1";
     this.action1.UseVisualStyleBackColor = true;
     //
     // action2
     //
     this.action2.AutoSize = true;
     this.action2.Location = new System.Drawing.Point(6, 42);
     this.action2.Name     = "action2";
     this.action2.Size     = new System.Drawing.Size(61, 17);
     this.action2.TabIndex = 1802;
     this.action2.Text     = "action2";
     this.action2.UseVisualStyleBackColor = true;
     //
     // action3
     //
     this.action3.AutoSize = true;
     this.action3.Location = new System.Drawing.Point(6, 65);
     this.action3.Name     = "action3";
     this.action3.Size     = new System.Drawing.Size(61, 17);
     this.action3.TabIndex = 1803;
     this.action3.Text     = "action3";
     this.action3.UseVisualStyleBackColor = true;
     //
     // action4
     //
     this.action4.AutoSize = true;
     this.action4.Location = new System.Drawing.Point(6, 88);
     this.action4.Name     = "action4";
     this.action4.Size     = new System.Drawing.Size(61, 17);
     this.action4.TabIndex = 1804;
     this.action4.Text     = "action4";
     this.action4.UseVisualStyleBackColor = true;
     //
     // action5
     //
     this.action5.AutoSize = true;
     this.action5.Location = new System.Drawing.Point(6, 111);
     this.action5.Name     = "action5";
     this.action5.Size     = new System.Drawing.Size(61, 17);
     this.action5.TabIndex = 1805;
     this.action5.Text     = "action5";
     this.action5.UseVisualStyleBackColor = true;
     //
     // action6
     //
     this.action6.AutoSize = true;
     this.action6.Location = new System.Drawing.Point(6, 134);
     this.action6.Name     = "action6";
     this.action6.Size     = new System.Drawing.Size(61, 17);
     this.action6.TabIndex = 1806;
     this.action6.Text     = "action6";
     this.action6.UseVisualStyleBackColor = true;
     //
     // action7
     //
     this.action7.AutoSize = true;
     this.action7.Location = new System.Drawing.Point(6, 157);
     this.action7.Name     = "action7";
     this.action7.Size     = new System.Drawing.Size(61, 17);
     this.action7.TabIndex = 1807;
     this.action7.Text     = "action7";
     this.action7.UseVisualStyleBackColor = true;
     //
     // action8
     //
     this.action8.AutoSize = true;
     this.action8.Location = new System.Drawing.Point(6, 180);
     this.action8.Name     = "action8";
     this.action8.Size     = new System.Drawing.Size(61, 17);
     this.action8.TabIndex = 1808;
     this.action8.Text     = "action8";
     this.action8.UseVisualStyleBackColor = true;
     //
     // action9
     //
     this.action9.AutoSize = true;
     this.action9.Location = new System.Drawing.Point(6, 203);
     this.action9.Name     = "action9";
     this.action9.Size     = new System.Drawing.Size(61, 17);
     this.action9.TabIndex = 1809;
     this.action9.Text     = "action9";
     this.action9.UseVisualStyleBackColor = true;
     //
     // action10
     //
     this.action10.AutoSize = true;
     this.action10.Location = new System.Drawing.Point(6, 226);
     this.action10.Name     = "action10";
     this.action10.Size     = new System.Drawing.Size(67, 17);
     this.action10.TabIndex = 1810;
     this.action10.Text     = "action10";
     this.action10.UseVisualStyleBackColor = true;
     //
     // action11
     //
     this.action11.AutoSize = true;
     this.action11.Location = new System.Drawing.Point(6, 249);
     this.action11.Name     = "action11";
     this.action11.Size     = new System.Drawing.Size(67, 17);
     this.action11.TabIndex = 1811;
     this.action11.Text     = "action11";
     this.action11.UseVisualStyleBackColor = true;
     //
     // action12
     //
     this.action12.AutoSize = true;
     this.action12.Location = new System.Drawing.Point(6, 272);
     this.action12.Name     = "action12";
     this.action12.Size     = new System.Drawing.Size(67, 17);
     this.action12.TabIndex = 1812;
     this.action12.Text     = "action12";
     this.action12.UseVisualStyleBackColor = true;
     //
     // action13
     //
     this.action13.AutoSize = true;
     this.action13.Location = new System.Drawing.Point(6, 295);
     this.action13.Name     = "action13";
     this.action13.Size     = new System.Drawing.Size(67, 17);
     this.action13.TabIndex = 1813;
     this.action13.Text     = "action13";
     this.action13.UseVisualStyleBackColor = true;
     //
     // action14
     //
     this.action14.AutoSize = true;
     this.action14.Location = new System.Drawing.Point(6, 318);
     this.action14.Name     = "action14";
     this.action14.Size     = new System.Drawing.Size(67, 17);
     this.action14.TabIndex = 1814;
     this.action14.Text     = "action14";
     this.action14.UseVisualStyleBackColor = true;
     //
     // action15
     //
     this.action15.AutoSize = true;
     this.action15.Location = new System.Drawing.Point(6, 341);
     this.action15.Name     = "action15";
     this.action15.Size     = new System.Drawing.Size(67, 17);
     this.action15.TabIndex = 1815;
     this.action15.Text     = "action15";
     this.action15.UseVisualStyleBackColor = true;
     //
     // action16
     //
     this.action16.AutoSize = true;
     this.action16.Location = new System.Drawing.Point(6, 364);
     this.action16.Name     = "action16";
     this.action16.Size     = new System.Drawing.Size(67, 17);
     this.action16.TabIndex = 1816;
     this.action16.Text     = "action16";
     this.action16.UseVisualStyleBackColor = true;
     //
     // reaction1
     //
     this.reaction1.AutoSize = true;
     this.reaction1.Location = new System.Drawing.Point(6, 19);
     this.reaction1.Name     = "reaction1";
     this.reaction1.Size     = new System.Drawing.Size(70, 17);
     this.reaction1.TabIndex = 2101;
     this.reaction1.Text     = "reaction1";
     this.reaction1.UseVisualStyleBackColor = true;
     //
     // reaction2
     //
     this.reaction2.AutoSize = true;
     this.reaction2.Location = new System.Drawing.Point(6, 42);
     this.reaction2.Name     = "reaction2";
     this.reaction2.Size     = new System.Drawing.Size(70, 17);
     this.reaction2.TabIndex = 2102;
     this.reaction2.Text     = "reaction2";
     this.reaction2.UseVisualStyleBackColor = true;
     //
     // reaction3
     //
     this.reaction3.AutoSize = true;
     this.reaction3.Location = new System.Drawing.Point(6, 65);
     this.reaction3.Name     = "reaction3";
     this.reaction3.Size     = new System.Drawing.Size(70, 17);
     this.reaction3.TabIndex = 2103;
     this.reaction3.Text     = "reaction3";
     this.reaction3.UseVisualStyleBackColor = true;
     //
     // support1
     //
     this.support1.AutoSize = true;
     this.support1.Location = new System.Drawing.Point(6, 19);
     this.support1.Name     = "support1";
     this.support1.Size     = new System.Drawing.Size(67, 17);
     this.support1.TabIndex = 2501;
     this.support1.Text     = "support1";
     this.support1.UseVisualStyleBackColor = true;
     //
     // support2
     //
     this.support2.AutoSize = true;
     this.support2.Location = new System.Drawing.Point(6, 42);
     this.support2.Name     = "support2";
     this.support2.Size     = new System.Drawing.Size(67, 17);
     this.support2.TabIndex = 2502;
     this.support2.Text     = "support2";
     this.support2.UseVisualStyleBackColor = true;
     //
     // support3
     //
     this.support3.AutoSize = true;
     this.support3.Location = new System.Drawing.Point(6, 65);
     this.support3.Name     = "support3";
     this.support3.Size     = new System.Drawing.Size(67, 17);
     this.support3.TabIndex = 2503;
     this.support3.Text     = "support3";
     this.support3.UseVisualStyleBackColor = true;
     //
     // support4
     //
     this.support4.AutoSize = true;
     this.support4.Location = new System.Drawing.Point(6, 88);
     this.support4.Name     = "support4";
     this.support4.Size     = new System.Drawing.Size(67, 17);
     this.support4.TabIndex = 2504;
     this.support4.Text     = "support4";
     this.support4.UseVisualStyleBackColor = true;
     //
     // movement1
     //
     this.movement1.AutoSize = true;
     this.movement1.Location = new System.Drawing.Point(6, 19);
     this.movement1.Name     = "movement1";
     this.movement1.Size     = new System.Drawing.Size(81, 17);
     this.movement1.TabIndex = 2701;
     this.movement1.Text     = "movement1";
     this.movement1.UseVisualStyleBackColor = true;
     //
     // movement2
     //
     this.movement2.AutoSize = true;
     this.movement2.Location = new System.Drawing.Point(6, 42);
     this.movement2.Name     = "movement2";
     this.movement2.Size     = new System.Drawing.Size(81, 17);
     this.movement2.TabIndex = 2702;
     this.movement2.Text     = "movement2";
     this.movement2.UseVisualStyleBackColor = true;
     //
     // JobEditor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(jobEditorTable);
     this.Name = "JobEditor";
     this.Size = new System.Drawing.Size(397, 432);
     jobEditorTable.ResumeLayout(false);
     this.movementGroup.ResumeLayout(false);
     this.movementGroup.PerformLayout();
     this.supportGroup.ResumeLayout(false);
     this.supportGroup.PerformLayout();
     this.actionGroup.ResumeLayout(false);
     this.actionGroup.PerformLayout();
     this.reactionGroup.ResumeLayout(false);
     this.reactionGroup.PerformLayout();
     this.infoPanel.ResumeLayout(false);
     this.infoPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.totalSpinner)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.jpSpinner)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TableLayoutPanel HistoryReportOfCalls_TLP;
     System.Windows.Forms.Panel            panel1;
     this._LblTextLastCall    = new System.Windows.Forms.Label();
     this._LblTitleLastCall   = new System.Windows.Forms.Label();
     this._LVCalls            = new System.Windows.Forms.ListView();
     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._TitleLB            = new System.Windows.Forms.Label();
     this._BtnDependencesView = new System.Windows.Forms.Button();
     this._CloseBT            = new HMI.Model.Module.UI.HMIButton();
     this._RBNotAnswered      = new System.Windows.Forms.RadioButton();
     this._RBOutgoing         = new System.Windows.Forms.RadioButton();
     this._RBIncomming        = new System.Windows.Forms.RadioButton();
     HistoryReportOfCalls_TLP = new System.Windows.Forms.TableLayoutPanel();
     panel1 = new System.Windows.Forms.Panel();
     HistoryReportOfCalls_TLP.SuspendLayout();
     panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // HistoryReportOfCalls_TLP
     //
     HistoryReportOfCalls_TLP.BackColor   = System.Drawing.SystemColors.Control;
     HistoryReportOfCalls_TLP.ColumnCount = 2;
     HistoryReportOfCalls_TLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     HistoryReportOfCalls_TLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     HistoryReportOfCalls_TLP.Controls.Add(this._LblTextLastCall, 0, 4);
     HistoryReportOfCalls_TLP.Controls.Add(this._LblTitleLastCall, 0, 3);
     HistoryReportOfCalls_TLP.Controls.Add(this._LVCalls, 0, 2);
     HistoryReportOfCalls_TLP.Controls.Add(this._TitleLB, 1, 0);
     HistoryReportOfCalls_TLP.Controls.Add(this._BtnDependencesView, 0, 0);
     HistoryReportOfCalls_TLP.Controls.Add(this._CloseBT, 1, 3);
     HistoryReportOfCalls_TLP.Controls.Add(panel1, 0, 1);
     HistoryReportOfCalls_TLP.Dock     = System.Windows.Forms.DockStyle.Fill;
     HistoryReportOfCalls_TLP.Location = new System.Drawing.Point(0, 0);
     HistoryReportOfCalls_TLP.Margin   = new System.Windows.Forms.Padding(0);
     HistoryReportOfCalls_TLP.Name     = "HistoryReportOfCalls_TLP";
     HistoryReportOfCalls_TLP.RowCount = 5;
     HistoryReportOfCalls_TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 8F));
     HistoryReportOfCalls_TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
     HistoryReportOfCalls_TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 75F));
     HistoryReportOfCalls_TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 6F));
     HistoryReportOfCalls_TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 6F));
     HistoryReportOfCalls_TLP.Size     = new System.Drawing.Size(440, 462);
     HistoryReportOfCalls_TLP.TabIndex = 0;
     //
     // _LblTextLastCall
     //
     this._LblTextLastCall.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this._LblTextLastCall.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this._LblTextLastCall.Dock        = System.Windows.Forms.DockStyle.Fill;
     this._LblTextLastCall.Font        = new System.Drawing.Font("Microsoft Sans Serif", 10.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._LblTextLastCall.Location    = new System.Drawing.Point(5, 435);
     this._LblTextLastCall.Margin      = new System.Windows.Forms.Padding(5, 3, 5, 3);
     this._LblTextLastCall.Name        = "_LblTextLastCall";
     this._LblTextLastCall.Size        = new System.Drawing.Size(210, 24);
     this._LblTextLastCall.TabIndex    = 14;
     this._LblTextLastCall.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // _LblTitleLastCall
     //
     this._LblTitleLastCall.BackColor   = System.Drawing.Color.Lime;
     this._LblTitleLastCall.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this._LblTitleLastCall.Dock        = System.Windows.Forms.DockStyle.Fill;
     this._LblTitleLastCall.Font        = new System.Drawing.Font("Microsoft Sans Serif", 10.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._LblTitleLastCall.Location    = new System.Drawing.Point(5, 408);
     this._LblTitleLastCall.Margin      = new System.Windows.Forms.Padding(5, 3, 5, 3);
     this._LblTitleLastCall.Name        = "_LblTitleLastCall";
     this._LblTitleLastCall.Size        = new System.Drawing.Size(210, 21);
     this._LblTitleLastCall.TabIndex    = 13;
     this._LblTitleLastCall.Text        = "Ultima llamada";
     this._LblTitleLastCall.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // _LVCalls
     //
     this._LVCalls.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3
     });
     HistoryReportOfCalls_TLP.SetColumnSpan(this._LVCalls, 2);
     this._LVCalls.Dock          = System.Windows.Forms.DockStyle.Fill;
     this._LVCalls.Font          = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._LVCalls.FullRowSelect = true;
     this._LVCalls.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this._LVCalls.HideSelection = false;
     this._LVCalls.Location      = new System.Drawing.Point(3, 62);
     this._LVCalls.MultiSelect   = false;
     this._LVCalls.Name          = "_LVCalls";
     this._LVCalls.Size          = new System.Drawing.Size(434, 340);
     this._LVCalls.TabIndex      = 12;
     this._LVCalls.UseCompatibleStateImageBehavior = false;
     this._LVCalls.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "DateTime";
     this.columnHeader1.Width = 115;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Source";
     this.columnHeader2.Width = 80;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "Colateral";
     this.columnHeader3.Width = 120;
     //
     // _TitleLB
     //
     this._TitleLB.BackColor   = System.Drawing.Color.Lime;
     this._TitleLB.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this._TitleLB.Dock        = System.Windows.Forms.DockStyle.Fill;
     this._TitleLB.Font        = new System.Drawing.Font("Microsoft Sans Serif", 10.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._TitleLB.Location    = new System.Drawing.Point(225, 3);
     this._TitleLB.Margin      = new System.Windows.Forms.Padding(5, 3, 5, 3);
     this._TitleLB.Name        = "_TitleLB";
     this._TitleLB.Size        = new System.Drawing.Size(210, 30);
     this._TitleLB.TabIndex    = 10;
     this._TitleLB.Text        = "Histórico de llamadas";
     this._TitleLB.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // _BtnDependencesView
     //
     this._BtnDependencesView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this._BtnDependencesView.Dock      = System.Windows.Forms.DockStyle.Fill;
     this._BtnDependencesView.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._BtnDependencesView.Location  = new System.Drawing.Point(3, 3);
     this._BtnDependencesView.Name      = "_BtnDependencesView";
     this._BtnDependencesView.Size      = new System.Drawing.Size(214, 30);
     this._BtnDependencesView.TabIndex  = 4;
     this._BtnDependencesView.Text      = "Dependencias-usuario";
     this._BtnDependencesView.UseVisualStyleBackColor = false;
     this._BtnDependencesView.Click += new System.EventHandler(this._BtnDependencesView_Click);
     //
     // _CloseBT
     //
     this._CloseBT.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this._CloseBT.Location = new System.Drawing.Point(367, 421);
     this._CloseBT.Name     = "_CloseBT";
     HistoryReportOfCalls_TLP.SetRowSpan(this._CloseBT, 2);
     this._CloseBT.Size     = new System.Drawing.Size(70, 38);
     this._CloseBT.TabIndex = 9;
     this._CloseBT.Text     = "Cerrar";
     this._CloseBT.Click   += new System.EventHandler(this._CloseBT_Click);
     //
     // panel1
     //
     HistoryReportOfCalls_TLP.SetColumnSpan(panel1, 2);
     panel1.Controls.Add(this._RBNotAnswered);
     panel1.Controls.Add(this._RBOutgoing);
     panel1.Controls.Add(this._RBIncomming);
     panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     panel1.Location = new System.Drawing.Point(3, 39);
     panel1.Name     = "panel1";
     panel1.Size     = new System.Drawing.Size(434, 17);
     panel1.TabIndex = 11;
     //
     // _RBNotAnswered
     //
     this._RBNotAnswered.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this._RBNotAnswered.AutoSize = true;
     this._RBNotAnswered.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._RBNotAnswered.Location = new System.Drawing.Point(234, -3);
     this._RBNotAnswered.Name     = "_RBNotAnswered";
     this._RBNotAnswered.Size     = new System.Drawing.Size(110, 21);
     this._RBNotAnswered.TabIndex = 2;
     this._RBNotAnswered.Text     = "No atendidas";
     this._RBNotAnswered.UseVisualStyleBackColor = true;
     this._RBNotAnswered.CheckedChanged         += new System.EventHandler(this.CallType_CheckedChanged);
     //
     // _RBOutgoing
     //
     this._RBOutgoing.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this._RBOutgoing.AutoSize = true;
     this._RBOutgoing.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._RBOutgoing.Location = new System.Drawing.Point(128, -2);
     this._RBOutgoing.Name     = "_RBOutgoing";
     this._RBOutgoing.Size     = new System.Drawing.Size(84, 21);
     this._RBOutgoing.TabIndex = 1;
     this._RBOutgoing.Text     = "Salientes";
     this._RBOutgoing.UseVisualStyleBackColor = true;
     this._RBOutgoing.CheckedChanged         += new System.EventHandler(this.CallType_CheckedChanged);
     //
     // _RBIncomming
     //
     this._RBIncomming.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this._RBIncomming.AutoSize = true;
     this._RBIncomming.Checked  = true;
     this._RBIncomming.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._RBIncomming.Location = new System.Drawing.Point(3, -2);
     this._RBIncomming.Name     = "_RBIncomming";
     this._RBIncomming.Size     = new System.Drawing.Size(87, 21);
     this._RBIncomming.TabIndex = 0;
     this._RBIncomming.TabStop  = true;
     this._RBIncomming.Text     = "Entrantes";
     this._RBIncomming.UseVisualStyleBackColor = true;
     this._RBIncomming.CheckedChanged         += new System.EventHandler(this.CallType_CheckedChanged);
     //
     // HistoryReportOfCalls
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.Controls.Add(HistoryReportOfCalls_TLP);
     this.Name              = "HistoryReportOfCalls";
     this.Size              = new System.Drawing.Size(440, 462);
     this.BackColorChanged += new System.EventHandler(this.HistoryReportOfCalls_BackColorChanged);
     HistoryReportOfCalls_TLP.ResumeLayout(false);
     panel1.ResumeLayout(false);
     panel1.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 13
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(FormatControl));
     formatGroupBox         = new System.Windows.Forms.GroupBox();
     tableLayoutPanel3      = new System.Windows.Forms.TableLayoutPanel();
     explanationLabel       = new System.Windows.Forms.Label();
     tableLayoutPanel2      = new System.Windows.Forms.TableLayoutPanel();
     sampleGroupBox         = new System.Windows.Forms.GroupBox();
     sampleLabel            = new System.Windows.Forms.Label();
     tableLayoutPanel1      = new System.Windows.Forms.TableLayoutPanel();
     secondRowLabel         = new System.Windows.Forms.Label();
     nullValueLabel         = new System.Windows.Forms.Label();
     nullValueTextBox       = new System.Windows.Forms.TextBox();
     decimalPlacesUpDown    = new System.Windows.Forms.NumericUpDown();
     thirdRowLabel          = new System.Windows.Forms.Label();
     dateTimeFormatsListBox = new System.Windows.Forms.ListBox();
     formatTypeLabel        = new System.Windows.Forms.Label();
     formatTypeListBox      = new System.Windows.Forms.ListBox();
     formatGroupBox.SuspendLayout();
     tableLayoutPanel3.SuspendLayout();
     tableLayoutPanel2.SuspendLayout();
     sampleGroupBox.SuspendLayout();
     tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.decimalPlacesUpDown)).BeginInit();
     SuspendLayout();
     //
     // formatGroupBox
     //
     resources.ApplyResources(this.formatGroupBox, "formatGroupBox");
     formatGroupBox.Controls.Add(this.tableLayoutPanel3);
     formatGroupBox.Dock    = DockStyle.Fill;
     formatGroupBox.Name    = "formatGroupBox";
     formatGroupBox.TabStop = false;
     formatGroupBox.Enter  += new System.EventHandler(this.formatGroupBox_Enter);
     //
     // tableLayoutPanel3
     //
     resources.ApplyResources(this.tableLayoutPanel3, "tableLayoutPanel3");
     tableLayoutPanel3.Controls.Add(this.explanationLabel, 0, 0);
     tableLayoutPanel3.Controls.Add(this.tableLayoutPanel2, 1, 1);
     tableLayoutPanel3.Controls.Add(this.formatTypeLabel, 0, 1);
     tableLayoutPanel3.Controls.Add(this.formatTypeListBox, 0, 2);
     tableLayoutPanel3.Name = "tableLayoutPanel3";
     //
     // explanationLabel
     //
     resources.ApplyResources(this.explanationLabel, "explanationLabel");
     tableLayoutPanel3.SetColumnSpan(this.explanationLabel, 2);
     explanationLabel.Name = "explanationLabel";
     //
     // tableLayoutPanel2
     //
     resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2");
     tableLayoutPanel2.Controls.Add(this.sampleGroupBox, 0, 0);
     tableLayoutPanel2.Controls.Add(this.tableLayoutPanel1, 0, 1);
     tableLayoutPanel2.Name = "tableLayoutPanel2";
     tableLayoutPanel3.SetRowSpan(this.tableLayoutPanel2, 2);
     //
     // sampleGroupBox
     //
     resources.ApplyResources(this.sampleGroupBox, "sampleGroupBox");
     sampleGroupBox.Controls.Add(this.sampleLabel);
     sampleGroupBox.MinimumSize = new System.Drawing.Size(250, 38);
     sampleGroupBox.Name        = "sampleGroupBox";
     sampleGroupBox.TabStop     = false;
     //
     // sampleLabel
     //
     resources.ApplyResources(this.sampleLabel, "sampleLabel");
     sampleLabel.Name = "sampleLabel";
     //
     // tableLayoutPanel1
     //
     resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
     tableLayoutPanel1.Controls.Add(this.nullValueLabel, 0, 0);
     tableLayoutPanel1.Controls.Add(this.nullValueTextBox, 1, 0);
     tableLayoutPanel1.Controls.Add(this.secondRowLabel, 0, 1);
     tableLayoutPanel1.Controls.Add(this.decimalPlacesUpDown, 1, 1);
     tableLayoutPanel1.Controls.Add(this.dateTimeFormatsListBox, 0, 2);
     tableLayoutPanel1.Controls.Add(this.thirdRowLabel, 1, 2);
     tableLayoutPanel1.Name           = "tableLayoutPanel1";
     tableLayoutPanel1.AccessibleName = "";
     //
     // secondRowLabel
     //
     resources.ApplyResources(this.secondRowLabel, "secondRowLabel");
     secondRowLabel.MinimumSize = new System.Drawing.Size(81, 14);
     secondRowLabel.Name        = "secondRowLabel";
     //
     // nullValueLabel
     //
     resources.ApplyResources(this.nullValueLabel, "nullValueLabel");
     nullValueLabel.MinimumSize = new System.Drawing.Size(81, 14);
     nullValueLabel.Name        = "nullValueLabel";
     //
     // nullValueTextBox
     //
     resources.ApplyResources(this.nullValueTextBox, "nullValueTextBox");
     nullValueTextBox.Name         = "nullValueTextBox";
     nullValueTextBox.TextChanged += new System.EventHandler(this.nullValueTextBox_TextChanged);
     //
     // decimalPlacesUpDown
     //
     resources.ApplyResources(this.decimalPlacesUpDown, "decimalPlacesUpDown");
     decimalPlacesUpDown.Maximum = new decimal(new int[] {
         6,
         0,
         0,
         0
     });
     decimalPlacesUpDown.Name  = "decimalPlacesUpDown";
     decimalPlacesUpDown.Value = new decimal(new int[] {
         2,
         0,
         0,
         0
     });
     decimalPlacesUpDown.ValueChanged += new System.EventHandler(this.decimalPlacesUpDown_ValueChanged);
     //
     // thirdRowLabel
     //
     resources.ApplyResources(this.thirdRowLabel, "thirdRowLabel");
     thirdRowLabel.Name = "thirdRowLabel";
     //
     // dateTimeFormatsListBox
     //
     resources.ApplyResources(this.dateTimeFormatsListBox, "dateTimeFormatsListBox");
     dateTimeFormatsListBox.FormattingEnabled = true;
     dateTimeFormatsListBox.Name = "dateTimeFormatsListBox";
     //
     // formatTypeLabel
     //
     resources.ApplyResources(this.formatTypeLabel, "formatTypeLabel");
     formatTypeLabel.Name = "formatTypeLabel";
     //
     // formatTypeListBox
     //
     resources.ApplyResources(this.formatTypeListBox, "formatTypeListBox");
     formatTypeListBox.FormattingEnabled = true;
     formatTypeListBox.Name = "formatTypeListBox";
     formatTypeListBox.SelectedIndexChanged += new System.EventHandler(this.formatTypeListBox_SelectedIndexChanged);
     //
     // FormatControl
     //
     resources.ApplyResources(this, "$this");
     AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     Controls.Add(formatGroupBox);
     MinimumSize = new System.Drawing.Size(390, 237);
     Name        = "FormatControl";
     Load       += new System.EventHandler(this.FormatControl_Load);
     formatGroupBox.ResumeLayout(false);
     tableLayoutPanel3.ResumeLayout(false);
     tableLayoutPanel3.PerformLayout();
     tableLayoutPanel2.ResumeLayout(false);
     tableLayoutPanel2.PerformLayout();
     sampleGroupBox.ResumeLayout(false);
     sampleGroupBox.PerformLayout();
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(decimalPlacesUpDown)).EndInit();
     ResumeLayout(false);
     PerformLayout();
 }
Ejemplo n.º 14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
     this.menuStrip2               = 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.saveToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1      = new System.Windows.Forms.ToolStripSeparator();
     this.closeToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.replaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.TV           = new System.Windows.Forms.TreeView();
     this.PG           = new System.Windows.Forms.PropertyGrid();
     this.TB           = new System.Windows.Forms.RichTextBox();
     tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanel1.SuspendLayout();
     this.menuStrip2.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.ColumnCount = 3;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.57143F));
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.85714F));
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.57143F));
     tableLayoutPanel1.Controls.Add(this.menuStrip2, 0, 0);
     tableLayoutPanel1.Controls.Add(this.TV, 0, 1);
     tableLayoutPanel1.Controls.Add(this.PG, 1, 0);
     tableLayoutPanel1.Controls.Add(this.TB, 2, 0);
     tableLayoutPanel1.Dock      = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel1.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize;
     tableLayoutPanel1.Location  = new System.Drawing.Point(0, 0);
     tableLayoutPanel1.Name      = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount  = 2;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 24F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.Size     = new System.Drawing.Size(749, 441);
     tableLayoutPanel1.TabIndex = 1;
     //
     // menuStrip2
     //
     this.menuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem,
         this.editToolStripMenuItem,
         this.helpToolStripMenuItem
     });
     this.menuStrip2.Location     = new System.Drawing.Point(0, 0);
     this.menuStrip2.Name         = "menuStrip2";
     this.menuStrip2.Size         = new System.Drawing.Size(214, 24);
     this.menuStrip2.TabIndex     = 0;
     this.menuStrip2.Text         = "menuStrip2";
     this.menuStrip2.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.menuStrip2_ItemClicked);
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.newToolStripMenuItem,
         this.openToolStripMenuItem,
         this.saveToolStripMenuItem,
         this.toolStripSeparator1,
         this.closeToolStripMenuItem
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // newToolStripMenuItem
     //
     this.newToolStripMenuItem.Name   = "newToolStripMenuItem";
     this.newToolStripMenuItem.Size   = new System.Drawing.Size(103, 22);
     this.newToolStripMenuItem.Text   = "New";
     this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Name   = "openToolStripMenuItem";
     this.openToolStripMenuItem.Size   = new System.Drawing.Size(103, 22);
     this.openToolStripMenuItem.Text   = "Open";
     this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
     //
     // saveToolStripMenuItem
     //
     this.saveToolStripMenuItem.Name   = "saveToolStripMenuItem";
     this.saveToolStripMenuItem.Size   = new System.Drawing.Size(180, 22);
     this.saveToolStripMenuItem.Text   = "Save";
     this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(100, 6);
     //
     // closeToolStripMenuItem
     //
     this.closeToolStripMenuItem.Name   = "closeToolStripMenuItem";
     this.closeToolStripMenuItem.Size   = new System.Drawing.Size(180, 22);
     this.closeToolStripMenuItem.Text   = "Close";
     this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.exportToolStripMenuItem,
         this.replaceToolStripMenuItem
     });
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
     this.editToolStripMenuItem.Text = "Edit";
     //
     // exportToolStripMenuItem
     //
     this.exportToolStripMenuItem.Name   = "exportToolStripMenuItem";
     this.exportToolStripMenuItem.Size   = new System.Drawing.Size(115, 22);
     this.exportToolStripMenuItem.Text   = "Export";
     this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
     //
     // replaceToolStripMenuItem
     //
     this.replaceToolStripMenuItem.Name   = "replaceToolStripMenuItem";
     this.replaceToolStripMenuItem.Size   = new System.Drawing.Size(115, 22);
     this.replaceToolStripMenuItem.Text   = "Replace";
     this.replaceToolStripMenuItem.Click += new System.EventHandler(this.replaceToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.aboutToolStripMenuItem
     });
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "Help";
     //
     // 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_1);
     //
     // TV
     //
     this.TV.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.TV.Location     = new System.Drawing.Point(3, 27);
     this.TV.Name         = "TV";
     this.TV.Size         = new System.Drawing.Size(208, 411);
     this.TV.TabIndex     = 1;
     this.TV.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TV_AfterSelect);
     this.TV.Click       += new System.EventHandler(this.TV_Click);
     //
     // PG
     //
     this.PG.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.PG.Location     = new System.Drawing.Point(217, 3);
     this.PG.Name         = "PG";
     this.PG.PropertySort = System.Windows.Forms.PropertySort.Categorized;
     tableLayoutPanel1.SetRowSpan(this.PG, 2);
     this.PG.Size     = new System.Drawing.Size(314, 435);
     this.PG.TabIndex = 2;
     //
     // TB
     //
     this.TB.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.TB.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.TB.Location    = new System.Drawing.Point(537, 3);
     this.TB.Name        = "TB";
     this.TB.ReadOnly    = true;
     tableLayoutPanel1.SetRowSpan(this.TB, 2);
     this.TB.Size     = new System.Drawing.Size(209, 435);
     this.TB.TabIndex = 3;
     this.TB.Text     = "";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(749, 441);
     this.Controls.Add(tableLayoutPanel1);
     this.Name  = "MainForm";
     this.Text  = "John10v10\'s Resource Modifier";
     this.Load += new System.EventHandler(this.MainForm_Load);
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     this.menuStrip2.ResumeLayout(false);
     this.menuStrip2.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 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.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.gyroscopeUserControl1 = new BIT.PilotlessPlane.Client.Views.GyroscopeUserControl();
            this.dashboardUserControl1 = new BIT.PilotlessPlane.Client.Views.DashboardUserControl();
            this.dashboardUserControl2 = new BIT.PilotlessPlane.Client.Views.DashboardUserControl();
            this.dashboardUserControl3 = new BIT.PilotlessPlane.Client.Views.DashboardUserControl();
            this.directionDashboardUserControl1 = new BIT.PilotlessPlane.Client.Views.DirectionDashboardUserControl();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.backgroundWorker_Binding = new System.ComponentModel.BackgroundWorker();
            this.timer_UpdateUI = new System.Windows.Forms.Timer(this.components);
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            tableLayoutPanel1.SuspendLayout();
            tableLayoutPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            this.menuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.ColumnCount = 2;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 60F));
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40F));
            tableLayoutPanel1.Controls.Add(tableLayoutPanel2, 0, 0);
            tableLayoutPanel1.Controls.Add(this.pictureBox1, 1, 0);
            tableLayoutPanel1.Controls.Add(this.pictureBox2, 1, 1);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(0, 24);
            tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 2;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 60F));
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 40F));
            tableLayoutPanel1.Size = new System.Drawing.Size(800, 600);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // tableLayoutPanel2
            // 
            tableLayoutPanel2.ColumnCount = 4;
            tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            tableLayoutPanel2.Controls.Add(this.gyroscopeUserControl1, 0, 0);
            tableLayoutPanel2.Controls.Add(this.dashboardUserControl1, 0, 4);
            tableLayoutPanel2.Controls.Add(this.dashboardUserControl2, 1, 4);
            tableLayoutPanel2.Controls.Add(this.dashboardUserControl3, 2, 4);
            tableLayoutPanel2.Controls.Add(this.directionDashboardUserControl1, 3, 4);
            tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
            tableLayoutPanel2.Name = "tableLayoutPanel2";
            tableLayoutPanel2.RowCount = 5;
            tableLayoutPanel1.SetRowSpan(tableLayoutPanel2, 2);
            tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            tableLayoutPanel2.Size = new System.Drawing.Size(480, 600);
            tableLayoutPanel2.TabIndex = 2;
            // 
            // gyroscopeUserControl1
            // 
            tableLayoutPanel2.SetColumnSpan(this.gyroscopeUserControl1, 4);
            this.gyroscopeUserControl1.c磁航向 = 0D;
            this.gyroscopeUserControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gyroscopeUserControl1.f俯仰角 = 0D;
            this.gyroscopeUserControl1.f俯仰角速率 = 0D;
            this.gyroscopeUserControl1.GPS高度 = 0D;
            this.gyroscopeUserControl1.g滚转角 = 0D;
            this.gyroscopeUserControl1.g滚转角速率 = 0D;
            this.gyroscopeUserControl1.Location = new System.Drawing.Point(0, 0);
            this.gyroscopeUserControl1.Margin = new System.Windows.Forms.Padding(0);
            this.gyroscopeUserControl1.Name = "gyroscopeUserControl1";
            this.gyroscopeUserControl1.p偏航角速率 = 0D;
            tableLayoutPanel2.SetRowSpan(this.gyroscopeUserControl1, 4);
            this.gyroscopeUserControl1.Size = new System.Drawing.Size(480, 480);
            this.gyroscopeUserControl1.TabIndex = 0;
            // 
            // dashboardUserControl1
            // 
            this.dashboardUserControl1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("dashboardUserControl1.BackgroundImage")));
            this.dashboardUserControl1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.dashboardUserControl1.CurrentValue = 0D;
            this.dashboardUserControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dashboardUserControl1.Location = new System.Drawing.Point(0, 480);
            this.dashboardUserControl1.Margin = new System.Windows.Forms.Padding(0);
            this.dashboardUserControl1.Max = 10D;
            this.dashboardUserControl1.Min = 0D;
            this.dashboardUserControl1.Name = "dashboardUserControl1";
            this.dashboardUserControl1.PointerColor = System.Drawing.Color.LightSkyBlue;
            this.dashboardUserControl1.Size = new System.Drawing.Size(120, 120);
            this.dashboardUserControl1.TabIndex = 1;
            this.dashboardUserControl1.Title = "油门";
            this.dashboardUserControl1.Unit = "";
            this.dashboardUserControl1.UnitFormat = "F0";
            // 
            // dashboardUserControl2
            // 
            this.dashboardUserControl2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("dashboardUserControl2.BackgroundImage")));
            this.dashboardUserControl2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.dashboardUserControl2.CurrentValue = 0D;
            this.dashboardUserControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dashboardUserControl2.Location = new System.Drawing.Point(120, 480);
            this.dashboardUserControl2.Margin = new System.Windows.Forms.Padding(0);
            this.dashboardUserControl2.Max = 100D;
            this.dashboardUserControl2.Min = 0D;
            this.dashboardUserControl2.Name = "dashboardUserControl2";
            this.dashboardUserControl2.PointerColor = System.Drawing.Color.Green;
            this.dashboardUserControl2.Size = new System.Drawing.Size(120, 120);
            this.dashboardUserControl2.TabIndex = 2;
            this.dashboardUserControl2.Title = "高度";
            this.dashboardUserControl2.Unit = "m";
            this.dashboardUserControl2.UnitFormat = "F0";
            // 
            // dashboardUserControl3
            // 
            this.dashboardUserControl3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("dashboardUserControl3.BackgroundImage")));
            this.dashboardUserControl3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.dashboardUserControl3.CurrentValue = 0D;
            this.dashboardUserControl3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dashboardUserControl3.Location = new System.Drawing.Point(240, 480);
            this.dashboardUserControl3.Margin = new System.Windows.Forms.Padding(0);
            this.dashboardUserControl3.Max = 100D;
            this.dashboardUserControl3.Min = 0D;
            this.dashboardUserControl3.Name = "dashboardUserControl3";
            this.dashboardUserControl3.PointerColor = System.Drawing.Color.Red;
            this.dashboardUserControl3.Size = new System.Drawing.Size(120, 120);
            this.dashboardUserControl3.TabIndex = 3;
            this.dashboardUserControl3.Title = "地速";
            this.dashboardUserControl3.Unit = "km/h";
            this.dashboardUserControl3.UnitFormat = "F0";
            // 
            // directionDashboardUserControl1
            // 
            this.directionDashboardUserControl1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("directionDashboardUserControl1.BackgroundImage")));
            this.directionDashboardUserControl1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.directionDashboardUserControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.directionDashboardUserControl1.d地速方向 = 0D;
            this.directionDashboardUserControl1.k空速方向 = 0D;
            this.directionDashboardUserControl1.Location = new System.Drawing.Point(360, 480);
            this.directionDashboardUserControl1.Margin = new System.Windows.Forms.Padding(0);
            this.directionDashboardUserControl1.Name = "directionDashboardUserControl1";
            this.directionDashboardUserControl1.Size = new System.Drawing.Size(120, 120);
            this.directionDashboardUserControl1.TabIndex = 4;
            // 
            // pictureBox1
            // 
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox1.Image = global::BIT.PilotlessPlane.Client.Properties.Resources.地图区;
            this.pictureBox1.Location = new System.Drawing.Point(480, 0);
            this.pictureBox1.Margin = new System.Windows.Forms.Padding(0);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(320, 360);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex = 3;
            this.pictureBox1.TabStop = false;
            // 
            // pictureBox2
            // 
            this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox2.Image = global::BIT.PilotlessPlane.Client.Properties.Resources.指示灯区;
            this.pictureBox2.Location = new System.Drawing.Point(480, 360);
            this.pictureBox2.Margin = new System.Windows.Forms.Padding(0);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(320, 240);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox2.TabIndex = 4;
            this.pictureBox2.TabStop = false;
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem1});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(800, 24);
            this.menuStrip1.TabIndex = 4;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.Size = new System.Drawing.Size(58, 20);
            this.toolStripMenuItem1.Text = "查看帧";
            this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
            // 
            // backgroundWorker_Binding
            // 
            this.backgroundWorker_Binding.WorkerReportsProgress = true;
            this.backgroundWorker_Binding.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker_Binding_DoWork);
            this.backgroundWorker_Binding.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker_Binding_ProgressChanged);
            this.backgroundWorker_Binding.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker_Binding_RunWorkerCompleted);
            // 
            // timer_UpdateUI
            // 
            this.timer_UpdateUI.Enabled = true;
            this.timer_UpdateUI.Interval = 33;
            this.timer_UpdateUI.Tick += new System.EventHandler(this.timer_UpdateUI_Tick);
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.ClientSize = new System.Drawing.Size(800, 624);
            this.Controls.Add(tableLayoutPanel1);
            this.Controls.Add(this.menuStrip1);
            this.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "MainForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "地面站";
            this.Load += new System.EventHandler(this.MainForm_Load);
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Ejemplo n.º 16
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.Windows.Forms.ToolStripSeparator        sep1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.ToolStripSeparator        sep3;
     System.Windows.Forms.Panel              mainPanel;
     System.Windows.Forms.TableLayoutPanel   mainTableLayoutPanel;
     System.Windows.Forms.ToolStripSeparator sep2;
     this.copyButton                         = new System.Windows.Forms.Button();
     this.exitButton                         = new System.Windows.Forms.Button();
     this.resultGroupBox                     = new System.Windows.Forms.GroupBox();
     this.resultTextBox                      = new System.Windows.Forms.TextBox();
     this.mainMenu                           = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.wMKeeperClassicToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.wMLightToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.wMRootCertificateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2                 = new System.Windows.Forms.ToolStripMenuItem();
     this.base64ToolStripMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.base64XmlToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.hexToolStripMenuItem               = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1                 = new System.Windows.Forms.ToolStripMenuItem();
     this.mD4HashToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.mD5HashToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.sHA1HashToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1                = new System.Windows.Forms.ToolStripSeparator();
     this.signStringToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.settingsToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.englishToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.russianToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem              = new System.Windows.Forms.ToolStripMenuItem();
     this.contentsToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     this.mainStatus                         = new System.Windows.Forms.StatusStrip();
     this.infoStatusLabel                    = new System.Windows.Forms.ToolStripStatusLabel();
     this.openFileDialog                     = new System.Windows.Forms.OpenFileDialog();
     this.mainTimer                          = new System.Windows.Forms.Timer(this.components);
     sep1                 = new System.Windows.Forms.ToolStripSeparator();
     sep3                 = new System.Windows.Forms.ToolStripSeparator();
     mainPanel            = new System.Windows.Forms.Panel();
     mainTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     sep2                 = new System.Windows.Forms.ToolStripSeparator();
     mainPanel.SuspendLayout();
     mainTableLayoutPanel.SuspendLayout();
     this.resultGroupBox.SuspendLayout();
     this.mainMenu.SuspendLayout();
     this.mainStatus.SuspendLayout();
     this.SuspendLayout();
     //
     // sep1
     //
     sep1.Name = "sep1";
     resources.ApplyResources(sep1, "sep1");
     //
     // sep3
     //
     sep3.Name = "sep3";
     resources.ApplyResources(sep3, "sep3");
     //
     // mainPanel
     //
     mainPanel.Controls.Add(mainTableLayoutPanel);
     resources.ApplyResources(mainPanel, "mainPanel");
     mainPanel.Name = "mainPanel";
     //
     // mainTableLayoutPanel
     //
     resources.ApplyResources(mainTableLayoutPanel, "mainTableLayoutPanel");
     mainTableLayoutPanel.Controls.Add(this.copyButton, 1, 0);
     mainTableLayoutPanel.Controls.Add(this.exitButton, 1, 1);
     mainTableLayoutPanel.Controls.Add(this.resultGroupBox, 0, 0);
     mainTableLayoutPanel.Name = "mainTableLayoutPanel";
     //
     // copyButton
     //
     resources.ApplyResources(this.copyButton, "copyButton");
     this.copyButton.Name = "copyButton";
     this.copyButton.UseVisualStyleBackColor = true;
     this.copyButton.Click += new System.EventHandler(this.copyButton_Click);
     //
     // exitButton
     //
     resources.ApplyResources(this.exitButton, "exitButton");
     this.exitButton.Name = "exitButton";
     this.exitButton.UseVisualStyleBackColor = true;
     this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
     //
     // resultGroupBox
     //
     this.resultGroupBox.Controls.Add(this.resultTextBox);
     resources.ApplyResources(this.resultGroupBox, "resultGroupBox");
     this.resultGroupBox.Name = "resultGroupBox";
     mainTableLayoutPanel.SetRowSpan(this.resultGroupBox, 3);
     this.resultGroupBox.TabStop = false;
     //
     // resultTextBox
     //
     this.resultTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.resultTextBox.Cursor      = System.Windows.Forms.Cursors.Arrow;
     resources.ApplyResources(this.resultTextBox, "resultTextBox");
     this.resultTextBox.Name     = "resultTextBox";
     this.resultTextBox.ReadOnly = true;
     //
     // sep2
     //
     sep2.Name = "sep2";
     resources.ApplyResources(sep2, "sep2");
     //
     // mainMenu
     //
     this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem,
         this.editToolStripMenuItem,
         this.toolStripMenuItem2,
         this.toolStripMenuItem1,
         this.settingsToolStripMenuItem,
         this.helpToolStripMenuItem
     });
     resources.ApplyResources(this.mainMenu, "mainMenu");
     this.mainMenu.Name       = "mainMenu";
     this.mainMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.openToolStripMenuItem,
         sep1,
         this.exitToolStripMenuItem
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     resources.ApplyResources(this.fileToolStripMenuItem, "fileToolStripMenuItem");
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.wMKeeperClassicToolStripMenuItem,
         sep2,
         this.wMLightToolStripMenuItem,
         this.wMRootCertificateToolStripMenuItem
     });
     resources.ApplyResources(this.openToolStripMenuItem, "openToolStripMenuItem");
     this.openToolStripMenuItem.Name = "openToolStripMenuItem";
     //
     // wMKeeperClassicToolStripMenuItem
     //
     this.wMKeeperClassicToolStripMenuItem.Name = "wMKeeperClassicToolStripMenuItem";
     resources.ApplyResources(this.wMKeeperClassicToolStripMenuItem, "wMKeeperClassicToolStripMenuItem");
     this.wMKeeperClassicToolStripMenuItem.Click += new System.EventHandler(this.wMKeeperClassicToolStripMenuItem_Click);
     //
     // wMLightToolStripMenuItem
     //
     this.wMLightToolStripMenuItem.Name = "wMLightToolStripMenuItem";
     resources.ApplyResources(this.wMLightToolStripMenuItem, "wMLightToolStripMenuItem");
     this.wMLightToolStripMenuItem.Click += new System.EventHandler(this.wMLightToolStripMenuItem_Click);
     //
     // wMRootCertificateToolStripMenuItem
     //
     this.wMRootCertificateToolStripMenuItem.Name = "wMRootCertificateToolStripMenuItem";
     resources.ApplyResources(this.wMRootCertificateToolStripMenuItem, "wMRootCertificateToolStripMenuItem");
     this.wMRootCertificateToolStripMenuItem.Click += new System.EventHandler(this.wMRootCertificateToolStripMenuItem_Click);
     //
     // 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.copyToolStripMenuItem
     });
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     resources.ApplyResources(this.editToolStripMenuItem, "editToolStripMenuItem");
     //
     // copyToolStripMenuItem
     //
     resources.ApplyResources(this.copyToolStripMenuItem, "copyToolStripMenuItem");
     this.copyToolStripMenuItem.Name   = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.base64ToolStripMenuItem,
         this.base64XmlToolStripMenuItem,
         this.hexToolStripMenuItem
     });
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     resources.ApplyResources(this.toolStripMenuItem2, "toolStripMenuItem2");
     //
     // base64ToolStripMenuItem
     //
     this.base64ToolStripMenuItem.Checked    = true;
     this.base64ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     resources.ApplyResources(this.base64ToolStripMenuItem, "base64ToolStripMenuItem");
     this.base64ToolStripMenuItem.Name   = "base64ToolStripMenuItem";
     this.base64ToolStripMenuItem.Click += new System.EventHandler(this.base64ToolStripMenuItem_Click);
     //
     // base64XmlToolStripMenuItem
     //
     resources.ApplyResources(this.base64XmlToolStripMenuItem, "base64XmlToolStripMenuItem");
     this.base64XmlToolStripMenuItem.Name   = "base64XmlToolStripMenuItem";
     this.base64XmlToolStripMenuItem.Click += new System.EventHandler(this.base64XmlToolStripMenuItem_Click);
     //
     // hexToolStripMenuItem
     //
     resources.ApplyResources(this.hexToolStripMenuItem, "hexToolStripMenuItem");
     this.hexToolStripMenuItem.Name   = "hexToolStripMenuItem";
     this.hexToolStripMenuItem.Click += new System.EventHandler(this.hexToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mD4HashToolStripMenuItem,
         this.mD5HashToolStripMenuItem,
         this.sHA1HashToolStripMenuItem,
         this.toolStripSeparator1,
         this.signStringToolStripMenuItem
     });
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     resources.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1");
     //
     // mD4HashToolStripMenuItem
     //
     this.mD4HashToolStripMenuItem.Name = "mD4HashToolStripMenuItem";
     resources.ApplyResources(this.mD4HashToolStripMenuItem, "mD4HashToolStripMenuItem");
     this.mD4HashToolStripMenuItem.Click += new System.EventHandler(this.md4HashToolStripMenuItem_Click);
     //
     // mD5HashToolStripMenuItem
     //
     this.mD5HashToolStripMenuItem.Name = "mD5HashToolStripMenuItem";
     resources.ApplyResources(this.mD5HashToolStripMenuItem, "mD5HashToolStripMenuItem");
     this.mD5HashToolStripMenuItem.Click += new System.EventHandler(this.md5HashToolStripMenuItem_Click);
     //
     // sHA1HashToolStripMenuItem
     //
     this.sHA1HashToolStripMenuItem.Name = "sHA1HashToolStripMenuItem";
     resources.ApplyResources(this.sHA1HashToolStripMenuItem, "sHA1HashToolStripMenuItem");
     this.sHA1HashToolStripMenuItem.Click += new System.EventHandler(this.sha1HashToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
     //
     // signStringToolStripMenuItem
     //
     resources.ApplyResources(this.signStringToolStripMenuItem, "signStringToolStripMenuItem");
     this.signStringToolStripMenuItem.Name   = "signStringToolStripMenuItem";
     this.signStringToolStripMenuItem.Click += new System.EventHandler(this.signStringToolStripMenuItem_Click);
     //
     // settingsToolStripMenuItem
     //
     this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.englishToolStripMenuItem,
         this.russianToolStripMenuItem
     });
     this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
     resources.ApplyResources(this.settingsToolStripMenuItem, "settingsToolStripMenuItem");
     //
     // englishToolStripMenuItem
     //
     this.englishToolStripMenuItem.Checked    = true;
     this.englishToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.englishToolStripMenuItem.Name       = "englishToolStripMenuItem";
     resources.ApplyResources(this.englishToolStripMenuItem, "englishToolStripMenuItem");
     this.englishToolStripMenuItem.Click += new System.EventHandler(this.englishToolStripMenuItem_Click);
     //
     // russianToolStripMenuItem
     //
     this.russianToolStripMenuItem.Name = "russianToolStripMenuItem";
     resources.ApplyResources(this.russianToolStripMenuItem, "russianToolStripMenuItem");
     this.russianToolStripMenuItem.Click += new System.EventHandler(this.russianToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.contentsToolStripMenuItem,
         sep3,
         this.aboutToolStripMenuItem
     });
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem");
     //
     // contentsToolStripMenuItem
     //
     resources.ApplyResources(this.contentsToolStripMenuItem, "contentsToolStripMenuItem");
     this.contentsToolStripMenuItem.Name   = "contentsToolStripMenuItem";
     this.contentsToolStripMenuItem.Click += new System.EventHandler(this.helpTopicsToolStripMenuItem_Click);
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     resources.ApplyResources(this.aboutToolStripMenuItem, "aboutToolStripMenuItem");
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // mainStatus
     //
     this.mainStatus.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.infoStatusLabel
     });
     resources.ApplyResources(this.mainStatus, "mainStatus");
     this.mainStatus.Name             = "mainStatus";
     this.mainStatus.ShowItemToolTips = true;
     this.mainStatus.SizingGrip       = false;
     //
     // infoStatusLabel
     //
     this.infoStatusLabel.Name = "infoStatusLabel";
     resources.ApplyResources(this.infoStatusLabel, "infoStatusLabel");
     //
     // mainTimer
     //
     this.mainTimer.Interval = 3000;
     this.mainTimer.Tick    += new System.EventHandler(this.mainTimer_Tick);
     //
     // MainForm
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor     = System.Drawing.SystemColors.Control;
     this.Controls.Add(mainPanel);
     this.Controls.Add(this.mainStatus);
     this.Controls.Add(this.mainMenu);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.Name            = "MainForm";
     this.Load           += new System.EventHandler(this.MainForm_Load);
     mainPanel.ResumeLayout(false);
     mainTableLayoutPanel.ResumeLayout(false);
     this.resultGroupBox.ResumeLayout(false);
     this.resultGroupBox.PerformLayout();
     this.mainMenu.ResumeLayout(false);
     this.mainMenu.PerformLayout();
     this.mainStatus.ResumeLayout(false);
     this.mainStatus.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
     System.Windows.Forms.GroupBox         groupBox3;
     System.Windows.Forms.GroupBox         groupBox2;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
     System.Windows.Forms.GroupBox         groupBox1;
     this.tableLayoutPanel6      = new System.Windows.Forms.TableLayoutPanel();
     this.AddPostLabel           = new System.Windows.Forms.LinkLabel();
     this.PostsLayout            = new System.Windows.Forms.FlowLayoutPanel();
     this.tableLayoutPanel5      = new System.Windows.Forms.TableLayoutPanel();
     this.AddPictureLabel        = new System.Windows.Forms.LinkLabel();
     this.PicturesLayout         = new System.Windows.Forms.FlowLayoutPanel();
     this.GenderComboBox         = new System.Windows.Forms.ComboBox();
     this.UniversityTextBox      = new System.Windows.Forms.TextBox();
     this.InitialsTextBox        = new System.Windows.Forms.TextBox();
     this.UniversityLabel        = new System.Windows.Forms.Label();
     this.SchoolLabel            = new System.Windows.Forms.Label();
     this.MaritalStatusLabel     = new System.Windows.Forms.Label();
     this.GenderLabel            = new System.Windows.Forms.Label();
     this.BirthdayLabel          = new System.Windows.Forms.Label();
     this.NameLabel              = new System.Windows.Forms.Label();
     this.BirthdayDateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.SchoolTextBox          = new System.Windows.Forms.TextBox();
     this.MaritalStatusComboBox  = new System.Windows.Forms.ComboBox();
     this.ApplyButton            = new System.Windows.Forms.Button();
     this.tableLayoutPanel4      = new System.Windows.Forms.TableLayoutPanel();
     this.FriendsLayout          = new System.Windows.Forms.FlowLayoutPanel();
     this.AddFriendLabel         = new System.Windows.Forms.LinkLabel();
     this.tableLayoutPanel7      = new System.Windows.Forms.TableLayoutPanel();
     this.UpdatesListBox         = new System.Windows.Forms.ListBox();
     this.label1        = new System.Windows.Forms.Label();
     this.ExitLinkLabel = new System.Windows.Forms.LinkLabel();
     tableLayoutPanel1  = new System.Windows.Forms.TableLayoutPanel();
     groupBox3          = new System.Windows.Forms.GroupBox();
     groupBox2          = new System.Windows.Forms.GroupBox();
     tableLayoutPanel2  = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanel3  = new System.Windows.Forms.TableLayoutPanel();
     groupBox1          = new System.Windows.Forms.GroupBox();
     tableLayoutPanel1.SuspendLayout();
     groupBox3.SuspendLayout();
     this.tableLayoutPanel6.SuspendLayout();
     groupBox2.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     tableLayoutPanel2.SuspendLayout();
     tableLayoutPanel3.SuspendLayout();
     groupBox1.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.tableLayoutPanel7.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.ColumnCount = 2;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40F));
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 60F));
     tableLayoutPanel1.Controls.Add(groupBox3, 1, 3);
     tableLayoutPanel1.Controls.Add(groupBox2, 1, 2);
     tableLayoutPanel1.Controls.Add(tableLayoutPanel2, 1, 0);
     tableLayoutPanel1.Controls.Add(groupBox1, 1, 1);
     tableLayoutPanel1.Controls.Add(this.tableLayoutPanel7, 0, 0);
     tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel1.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 4;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     tableLayoutPanel1.Size     = new System.Drawing.Size(1084, 762);
     tableLayoutPanel1.TabIndex = 0;
     //
     // groupBox3
     //
     groupBox3.Controls.Add(this.tableLayoutPanel6);
     groupBox3.Dock     = System.Windows.Forms.DockStyle.Fill;
     groupBox3.Location = new System.Drawing.Point(436, 573);
     groupBox3.Name     = "groupBox3";
     groupBox3.Size     = new System.Drawing.Size(645, 186);
     groupBox3.TabIndex = 3;
     groupBox3.TabStop  = false;
     groupBox3.Text     = "Новости";
     //
     // tableLayoutPanel6
     //
     this.tableLayoutPanel6.ColumnCount = 1;
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel6.Controls.Add(this.AddPostLabel, 0, 0);
     this.tableLayoutPanel6.Controls.Add(this.PostsLayout, 0, 1);
     this.tableLayoutPanel6.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel6.Location = new System.Drawing.Point(3, 17);
     this.tableLayoutPanel6.Name     = "tableLayoutPanel6";
     this.tableLayoutPanel6.RowCount = 2;
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel6.Size     = new System.Drawing.Size(639, 166);
     this.tableLayoutPanel6.TabIndex = 1;
     //
     // AddPostLabel
     //
     this.AddPostLabel.AutoSize     = true;
     this.AddPostLabel.Location     = new System.Drawing.Point(3, 3);
     this.AddPostLabel.Margin       = new System.Windows.Forms.Padding(3);
     this.AddPostLabel.Name         = "AddPostLabel";
     this.AddPostLabel.Size         = new System.Drawing.Size(124, 13);
     this.AddPostLabel.TabIndex     = 0;
     this.AddPostLabel.TabStop      = true;
     this.AddPostLabel.Text         = "Добавить новость...";
     this.AddPostLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.AddPostLabel_LinkClicked);
     //
     // PostsLayout
     //
     this.PostsLayout.AutoScroll = true;
     this.PostsLayout.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.PostsLayout.Location   = new System.Drawing.Point(3, 22);
     this.PostsLayout.Name       = "PostsLayout";
     this.PostsLayout.Size       = new System.Drawing.Size(633, 141);
     this.PostsLayout.TabIndex   = 0;
     //
     // groupBox2
     //
     groupBox2.Controls.Add(this.tableLayoutPanel5);
     groupBox2.Dock     = System.Windows.Forms.DockStyle.Fill;
     groupBox2.Location = new System.Drawing.Point(436, 383);
     groupBox2.Name     = "groupBox2";
     groupBox2.Size     = new System.Drawing.Size(645, 184);
     groupBox2.TabIndex = 2;
     groupBox2.TabStop  = false;
     groupBox2.Text     = "Изображения";
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.ColumnCount = 1;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel5.Controls.Add(this.AddPictureLabel, 0, 0);
     this.tableLayoutPanel5.Controls.Add(this.PicturesLayout, 0, 1);
     this.tableLayoutPanel5.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(3, 17);
     this.tableLayoutPanel5.Name     = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 2;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel5.Size     = new System.Drawing.Size(639, 164);
     this.tableLayoutPanel5.TabIndex = 1;
     //
     // AddPictureLabel
     //
     this.AddPictureLabel.AutoSize     = true;
     this.AddPictureLabel.Location     = new System.Drawing.Point(3, 3);
     this.AddPictureLabel.Margin       = new System.Windows.Forms.Padding(3);
     this.AddPictureLabel.Name         = "AddPictureLabel";
     this.AddPictureLabel.Size         = new System.Drawing.Size(156, 13);
     this.AddPictureLabel.TabIndex     = 0;
     this.AddPictureLabel.TabStop      = true;
     this.AddPictureLabel.Text         = "Добавить изображение...";
     this.AddPictureLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.AddPictureLabel_LinkClicked);
     //
     // PicturesLayout
     //
     this.PicturesLayout.AutoScroll = true;
     this.PicturesLayout.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.PicturesLayout.Location   = new System.Drawing.Point(3, 22);
     this.PicturesLayout.Name       = "PicturesLayout";
     this.PicturesLayout.Size       = new System.Drawing.Size(633, 139);
     this.PicturesLayout.TabIndex   = 0;
     //
     // tableLayoutPanel2
     //
     tableLayoutPanel2.ColumnCount = 1;
     tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutPanel2.Controls.Add(tableLayoutPanel3, 0, 0);
     tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel2.Location = new System.Drawing.Point(436, 3);
     tableLayoutPanel2.Name     = "tableLayoutPanel2";
     tableLayoutPanel2.RowCount = 1;
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel2.Size     = new System.Drawing.Size(645, 184);
     tableLayoutPanel2.TabIndex = 0;
     //
     // tableLayoutPanel3
     //
     tableLayoutPanel3.ColumnCount = 2;
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel3.Controls.Add(this.GenderComboBox, 1, 2);
     tableLayoutPanel3.Controls.Add(this.UniversityTextBox, 1, 5);
     tableLayoutPanel3.Controls.Add(this.InitialsTextBox, 1, 0);
     tableLayoutPanel3.Controls.Add(this.UniversityLabel, 0, 5);
     tableLayoutPanel3.Controls.Add(this.SchoolLabel, 0, 4);
     tableLayoutPanel3.Controls.Add(this.MaritalStatusLabel, 0, 3);
     tableLayoutPanel3.Controls.Add(this.GenderLabel, 0, 2);
     tableLayoutPanel3.Controls.Add(this.BirthdayLabel, 0, 1);
     tableLayoutPanel3.Controls.Add(this.NameLabel, 0, 0);
     tableLayoutPanel3.Controls.Add(this.BirthdayDateTimePicker, 1, 1);
     tableLayoutPanel3.Controls.Add(this.SchoolTextBox, 1, 4);
     tableLayoutPanel3.Controls.Add(this.MaritalStatusComboBox, 1, 3);
     tableLayoutPanel3.Controls.Add(this.ApplyButton, 0, 6);
     tableLayoutPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel3.Location = new System.Drawing.Point(3, 3);
     tableLayoutPanel3.Name     = "tableLayoutPanel3";
     tableLayoutPanel3.RowCount = 7;
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28531F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28531F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28531F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28531F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28531F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28531F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28816F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutPanel3.Size     = new System.Drawing.Size(639, 178);
     tableLayoutPanel3.TabIndex = 0;
     //
     // GenderComboBox
     //
     this.GenderComboBox.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.GenderComboBox.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.GenderComboBox.FormattingEnabled = true;
     this.GenderComboBox.Items.AddRange(new object[] {
         "Не указано",
         "Мужчина",
         "Женщина"
     });
     this.GenderComboBox.Location = new System.Drawing.Point(148, 53);
     this.GenderComboBox.Name     = "GenderComboBox";
     this.GenderComboBox.Size     = new System.Drawing.Size(488, 21);
     this.GenderComboBox.TabIndex = 14;
     //
     // UniversityTextBox
     //
     this.UniversityTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.UniversityTextBox.Location = new System.Drawing.Point(148, 128);
     this.UniversityTextBox.Name     = "UniversityTextBox";
     this.UniversityTextBox.Size     = new System.Drawing.Size(488, 21);
     this.UniversityTextBox.TabIndex = 13;
     //
     // InitialsTextBox
     //
     this.InitialsTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.InitialsTextBox.Location = new System.Drawing.Point(148, 3);
     this.InitialsTextBox.Name     = "InitialsTextBox";
     this.InitialsTextBox.Size     = new System.Drawing.Size(488, 21);
     this.InitialsTextBox.TabIndex = 11;
     //
     // UniversityLabel
     //
     this.UniversityLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.UniversityLabel.AutoSize = true;
     this.UniversityLabel.Location = new System.Drawing.Point(3, 131);
     this.UniversityLabel.Margin   = new System.Windows.Forms.Padding(3);
     this.UniversityLabel.Name     = "UniversityLabel";
     this.UniversityLabel.Size     = new System.Drawing.Size(85, 13);
     this.UniversityLabel.TabIndex = 5;
     this.UniversityLabel.Text     = "Университет:";
     //
     // SchoolLabel
     //
     this.SchoolLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.SchoolLabel.AutoSize = true;
     this.SchoolLabel.Location = new System.Drawing.Point(3, 106);
     this.SchoolLabel.Margin   = new System.Windows.Forms.Padding(3);
     this.SchoolLabel.Name     = "SchoolLabel";
     this.SchoolLabel.Size     = new System.Drawing.Size(51, 13);
     this.SchoolLabel.TabIndex = 4;
     this.SchoolLabel.Text     = "Школа:";
     //
     // MaritalStatusLabel
     //
     this.MaritalStatusLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.MaritalStatusLabel.AutoSize = true;
     this.MaritalStatusLabel.Location = new System.Drawing.Point(3, 81);
     this.MaritalStatusLabel.Margin   = new System.Windows.Forms.Padding(3);
     this.MaritalStatusLabel.Name     = "MaritalStatusLabel";
     this.MaritalStatusLabel.Size     = new System.Drawing.Size(139, 13);
     this.MaritalStatusLabel.TabIndex = 3;
     this.MaritalStatusLabel.Text     = "Семейное положение:";
     //
     // GenderLabel
     //
     this.GenderLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.GenderLabel.AutoSize = true;
     this.GenderLabel.Location = new System.Drawing.Point(3, 56);
     this.GenderLabel.Margin   = new System.Windows.Forms.Padding(3);
     this.GenderLabel.Name     = "GenderLabel";
     this.GenderLabel.Size     = new System.Drawing.Size(34, 13);
     this.GenderLabel.TabIndex = 2;
     this.GenderLabel.Text     = "Пол:";
     //
     // BirthdayLabel
     //
     this.BirthdayLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.BirthdayLabel.AutoSize = true;
     this.BirthdayLabel.Location = new System.Drawing.Point(3, 31);
     this.BirthdayLabel.Margin   = new System.Windows.Forms.Padding(3);
     this.BirthdayLabel.Name     = "BirthdayLabel";
     this.BirthdayLabel.Size     = new System.Drawing.Size(104, 13);
     this.BirthdayLabel.TabIndex = 1;
     this.BirthdayLabel.Text     = "День рождения:";
     //
     // NameLabel
     //
     this.NameLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.NameLabel.AutoSize = true;
     this.NameLabel.Location = new System.Drawing.Point(3, 6);
     this.NameLabel.Margin   = new System.Windows.Forms.Padding(3);
     this.NameLabel.Name     = "NameLabel";
     this.NameLabel.Size     = new System.Drawing.Size(34, 13);
     this.NameLabel.TabIndex = 0;
     this.NameLabel.Text     = "Имя:";
     //
     // BirthdayDateTimePicker
     //
     this.BirthdayDateTimePicker.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.BirthdayDateTimePicker.Location = new System.Drawing.Point(148, 28);
     this.BirthdayDateTimePicker.Name     = "BirthdayDateTimePicker";
     this.BirthdayDateTimePicker.Size     = new System.Drawing.Size(488, 21);
     this.BirthdayDateTimePicker.TabIndex = 10;
     this.BirthdayDateTimePicker.Value    = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
     //
     // SchoolTextBox
     //
     this.SchoolTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.SchoolTextBox.Location = new System.Drawing.Point(148, 103);
     this.SchoolTextBox.Name     = "SchoolTextBox";
     this.SchoolTextBox.Size     = new System.Drawing.Size(488, 21);
     this.SchoolTextBox.TabIndex = 9;
     //
     // MaritalStatusComboBox
     //
     this.MaritalStatusComboBox.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.MaritalStatusComboBox.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.MaritalStatusComboBox.FormattingEnabled = true;
     this.MaritalStatusComboBox.Items.AddRange(new object[] {
         "Не указано",
         "Не женат/не замужем",
         "Женат/замужем"
     });
     this.MaritalStatusComboBox.Location = new System.Drawing.Point(148, 78);
     this.MaritalStatusComboBox.Name     = "MaritalStatusComboBox";
     this.MaritalStatusComboBox.Size     = new System.Drawing.Size(488, 21);
     this.MaritalStatusComboBox.TabIndex = 8;
     //
     // ApplyButton
     //
     tableLayoutPanel3.SetColumnSpan(this.ApplyButton, 2);
     this.ApplyButton.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ApplyButton.Location = new System.Drawing.Point(3, 153);
     this.ApplyButton.Name     = "ApplyButton";
     this.ApplyButton.Size     = new System.Drawing.Size(633, 22);
     this.ApplyButton.TabIndex = 15;
     this.ApplyButton.Text     = "Применить";
     this.ApplyButton.UseVisualStyleBackColor = true;
     this.ApplyButton.Click += new System.EventHandler(this.ApplyButton_Click);
     //
     // groupBox1
     //
     groupBox1.Controls.Add(this.tableLayoutPanel4);
     groupBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     groupBox1.Location = new System.Drawing.Point(436, 193);
     groupBox1.Name     = "groupBox1";
     groupBox1.Size     = new System.Drawing.Size(645, 184);
     groupBox1.TabIndex = 1;
     groupBox1.TabStop  = false;
     groupBox1.Text     = "Друзья";
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 1;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel4.Controls.Add(this.FriendsLayout, 0, 1);
     this.tableLayoutPanel4.Controls.Add(this.AddFriendLabel, 0, 0);
     this.tableLayoutPanel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 17);
     this.tableLayoutPanel4.Name     = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 2;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel4.Size     = new System.Drawing.Size(639, 164);
     this.tableLayoutPanel4.TabIndex = 1;
     //
     // FriendsLayout
     //
     this.FriendsLayout.AutoScroll = true;
     this.FriendsLayout.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.FriendsLayout.Location   = new System.Drawing.Point(3, 22);
     this.FriendsLayout.Name       = "FriendsLayout";
     this.FriendsLayout.Size       = new System.Drawing.Size(633, 139);
     this.FriendsLayout.TabIndex   = 0;
     //
     // AddFriendLabel
     //
     this.AddFriendLabel.AutoSize     = true;
     this.AddFriendLabel.Location     = new System.Drawing.Point(3, 3);
     this.AddFriendLabel.Margin       = new System.Windows.Forms.Padding(3);
     this.AddFriendLabel.Name         = "AddFriendLabel";
     this.AddFriendLabel.Size         = new System.Drawing.Size(112, 13);
     this.AddFriendLabel.TabIndex     = 1;
     this.AddFriendLabel.TabStop      = true;
     this.AddFriendLabel.Text         = "Добавить друга...";
     this.AddFriendLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.AddFriendLabel_LinkClicked);
     //
     // tableLayoutPanel7
     //
     this.tableLayoutPanel7.ColumnCount = 1;
     this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel7.Controls.Add(this.UpdatesListBox, 0, 2);
     this.tableLayoutPanel7.Controls.Add(this.label1, 0, 1);
     this.tableLayoutPanel7.Controls.Add(this.ExitLinkLabel, 0, 0);
     this.tableLayoutPanel7.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel7.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel7.Name     = "tableLayoutPanel7";
     this.tableLayoutPanel7.RowCount = 3;
     tableLayoutPanel1.SetRowSpan(this.tableLayoutPanel7, 4);
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel7.Size     = new System.Drawing.Size(427, 756);
     this.tableLayoutPanel7.TabIndex = 7;
     //
     // UpdatesListBox
     //
     this.UpdatesListBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.UpdatesListBox.FormattingEnabled = true;
     this.UpdatesListBox.Location          = new System.Drawing.Point(3, 41);
     this.UpdatesListBox.Name     = "UpdatesListBox";
     this.UpdatesListBox.Size     = new System.Drawing.Size(421, 712);
     this.UpdatesListBox.TabIndex = 6;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(3, 22);
     this.label1.Margin   = new System.Windows.Forms.Padding(3);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(91, 13);
     this.label1.TabIndex = 5;
     this.label1.Text     = "Уведомления:";
     //
     // ExitLinkLabel
     //
     this.ExitLinkLabel.AutoSize     = true;
     this.ExitLinkLabel.Location     = new System.Drawing.Point(3, 3);
     this.ExitLinkLabel.Margin       = new System.Windows.Forms.Padding(3);
     this.ExitLinkLabel.Name         = "ExitLinkLabel";
     this.ExitLinkLabel.Size         = new System.Drawing.Size(43, 13);
     this.ExitLinkLabel.TabIndex     = 4;
     this.ExitLinkLabel.TabStop      = true;
     this.ExitLinkLabel.Text         = "Выйти";
     this.ExitLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.ExitLinkLabel_LinkClicked);
     //
     // ProfileForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1084, 762);
     this.Controls.Add(tableLayoutPanel1);
     this.Name         = "ProfileForm";
     this.Text         = "Профиль";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ProfileForm_FormClosing);
     this.Load        += new System.EventHandler(this.ProfileForm_Load);
     this.SizeChanged += new System.EventHandler(this.ProfileForm_SizeChanged);
     tableLayoutPanel1.ResumeLayout(false);
     groupBox3.ResumeLayout(false);
     this.tableLayoutPanel6.ResumeLayout(false);
     this.tableLayoutPanel6.PerformLayout();
     groupBox2.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     this.tableLayoutPanel5.PerformLayout();
     tableLayoutPanel2.ResumeLayout(false);
     tableLayoutPanel3.ResumeLayout(false);
     tableLayoutPanel3.PerformLayout();
     groupBox1.ResumeLayout(false);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel4.PerformLayout();
     this.tableLayoutPanel7.ResumeLayout(false);
     this.tableLayoutPanel7.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 18
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.Windows.Forms.TableLayoutPanel          tableLayoutPanel4;
     System.Windows.Forms.ContextMenuStrip          SaveMenuStrip;
     System.Windows.Forms.ToolStripMenuItem         SplitCmdSave;
     System.Windows.Forms.ToolStripMenuItem         SplitCmdSaveAs;
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel3;
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel2;
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel1;
     System.Windows.Forms.ToolTip                   EditorTips;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Editor));
     this.mStepsContainer = new System.Windows.Forms.SplitContainer();
     this.mSteps          = new EllieWare.Support.RefreshingListBox();
     this.CmdSave         = new wyDay.Controls.SplitButton();
     this.CmdParameters   = new System.Windows.Forms.Button();
     this.CmdRun          = new System.Windows.Forms.Button();
     this.CmdStep         = new System.Windows.Forms.Button();
     this.CmdLog          = new System.Windows.Forms.Button();
     this.CmdStop         = new System.Windows.Forms.Button();
     this.CmdAdd          = new System.Windows.Forms.Button();
     this.CmdDelete       = new System.Windows.Forms.Button();
     this.CmdUp           = new System.Windows.Forms.Button();
     this.CmdDown         = new System.Windows.Forms.Button();
     this.CmdClose        = new System.Windows.Forms.Button();
     this.mMainContainer  = new System.Windows.Forms.SplitContainer();
     this.mCallback       = new EllieWare.Common.LogWindow();
     tableLayoutPanel4    = new System.Windows.Forms.TableLayoutPanel();
     SaveMenuStrip        = new System.Windows.Forms.ContextMenuStrip(this.components);
     SplitCmdSave         = new System.Windows.Forms.ToolStripMenuItem();
     SplitCmdSaveAs       = new System.Windows.Forms.ToolStripMenuItem();
     tableLayoutPanel3    = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanel2    = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanel1    = new System.Windows.Forms.TableLayoutPanel();
     EditorTips           = new System.Windows.Forms.ToolTip(this.components);
     tableLayoutPanel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mStepsContainer)).BeginInit();
     this.mStepsContainer.Panel1.SuspendLayout();
     this.mStepsContainer.SuspendLayout();
     SaveMenuStrip.SuspendLayout();
     tableLayoutPanel3.SuspendLayout();
     tableLayoutPanel2.SuspendLayout();
     tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mMainContainer)).BeginInit();
     this.mMainContainer.Panel1.SuspendLayout();
     this.mMainContainer.Panel2.SuspendLayout();
     this.mMainContainer.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel4
     //
     tableLayoutPanel4.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel4.ColumnCount  = 5;
     tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel4.Controls.Add(this.mStepsContainer, 0, 0);
     tableLayoutPanel4.Controls.Add(this.CmdSave, 1, 5);
     tableLayoutPanel4.Controls.Add(tableLayoutPanel3, 3, 4);
     tableLayoutPanel4.Controls.Add(tableLayoutPanel2, 3, 2);
     tableLayoutPanel4.Controls.Add(tableLayoutPanel1, 3, 0);
     tableLayoutPanel4.Controls.Add(this.CmdClose, 2, 5);
     tableLayoutPanel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
     tableLayoutPanel4.Name     = "tableLayoutPanel4";
     tableLayoutPanel4.RowCount = 6;
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutPanel4.Size     = new System.Drawing.Size(597, 513);
     tableLayoutPanel4.TabIndex = 13;
     //
     // mStepsContainer
     //
     this.mStepsContainer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     tableLayoutPanel4.SetColumnSpan(this.mStepsContainer, 3);
     this.mStepsContainer.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.mStepsContainer.Location    = new System.Drawing.Point(3, 3);
     this.mStepsContainer.Name        = "mStepsContainer";
     this.mStepsContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // mStepsContainer.Panel1
     //
     this.mStepsContainer.Panel1.Controls.Add(this.mSteps);
     tableLayoutPanel4.SetRowSpan(this.mStepsContainer, 5);
     this.mStepsContainer.Size             = new System.Drawing.Size(539, 478);
     this.mStepsContainer.SplitterDistance = 185;
     this.mStepsContainer.TabIndex         = 0;
     //
     // mSteps
     //
     this.mSteps.DisplayMember         = "Summary";
     this.mSteps.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.mSteps.FormattingEnabled     = true;
     this.mSteps.Location              = new System.Drawing.Point(0, 0);
     this.mSteps.Name                  = "mSteps";
     this.mSteps.Size                  = new System.Drawing.Size(537, 183);
     this.mSteps.TabIndex              = 0;
     this.mSteps.SelectedIndexChanged += new System.EventHandler(this.Steps_SelectedIndexChanged);
     //
     // CmdSave
     //
     this.CmdSave.ContextMenuStrip        = SaveMenuStrip;
     this.CmdSave.Enabled                 = false;
     this.CmdSave.Location                = new System.Drawing.Point(386, 487);
     this.CmdSave.Name                    = "CmdSave";
     this.CmdSave.Size                    = new System.Drawing.Size(75, 23);
     this.CmdSave.SplitMenuStrip          = SaveMenuStrip;
     this.CmdSave.TabIndex                = 1;
     this.CmdSave.Text                    = "Save";
     this.CmdSave.UseVisualStyleBackColor = true;
     this.CmdSave.Click                  += new System.EventHandler(this.CmdSave_Click);
     //
     // SaveMenuStrip
     //
     SaveMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         SplitCmdSave,
         SplitCmdSaveAs
     });
     SaveMenuStrip.Name = "SaveMenuStrip";
     SaveMenuStrip.Size = new System.Drawing.Size(124, 48);
     //
     // SplitCmdSave
     //
     SplitCmdSave.Name   = "SplitCmdSave";
     SplitCmdSave.Size   = new System.Drawing.Size(123, 22);
     SplitCmdSave.Text   = "Save";
     SplitCmdSave.Click += new System.EventHandler(this.CmdSave_Click);
     //
     // SplitCmdSaveAs
     //
     SplitCmdSaveAs.Name   = "SplitCmdSaveAs";
     SplitCmdSaveAs.Size   = new System.Drawing.Size(123, 22);
     SplitCmdSaveAs.Text   = "Save As...";
     SplitCmdSaveAs.Click += new System.EventHandler(this.CmdSaveAs_Click);
     //
     // tableLayoutPanel3
     //
     tableLayoutPanel3.AutoSize     = true;
     tableLayoutPanel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel3.ColumnCount  = 1;
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel3.Controls.Add(this.CmdParameters, 0, 0);
     tableLayoutPanel3.Location = new System.Drawing.Point(548, 423);
     tableLayoutPanel3.Name     = "tableLayoutPanel3";
     tableLayoutPanel3.RowCount = 1;
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     tableLayoutPanel3.Size     = new System.Drawing.Size(46, 46);
     tableLayoutPanel3.TabIndex = 13;
     //
     // CmdParameters
     //
     this.CmdParameters.Image    = global::EllieWare.Common.Properties.Resources.gears_32x32;
     this.CmdParameters.Location = new System.Drawing.Point(3, 3);
     this.CmdParameters.Name     = "CmdParameters";
     this.CmdParameters.Size     = new System.Drawing.Size(40, 40);
     this.CmdParameters.TabIndex = 0;
     EditorTips.SetToolTip(this.CmdParameters, "Parameters...");
     this.CmdParameters.UseVisualStyleBackColor = true;
     this.CmdParameters.Click += new System.EventHandler(this.CmdParameters_Click);
     //
     // tableLayoutPanel2
     //
     tableLayoutPanel2.AutoSize     = true;
     tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel2.ColumnCount  = 1;
     tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel2.Controls.Add(this.CmdRun, 0, 0);
     tableLayoutPanel2.Controls.Add(this.CmdStep, 0, 1);
     tableLayoutPanel2.Controls.Add(this.CmdLog, 0, 3);
     tableLayoutPanel2.Controls.Add(this.CmdStop, 0, 2);
     tableLayoutPanel2.Location = new System.Drawing.Point(548, 213);
     tableLayoutPanel2.Name     = "tableLayoutPanel2";
     tableLayoutPanel2.RowCount = 4;
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.Size     = new System.Drawing.Size(46, 184);
     tableLayoutPanel2.TabIndex = 11;
     //
     // CmdRun
     //
     this.CmdRun.Image    = global::EllieWare.Common.Properties.Resources.step_run_32x32;
     this.CmdRun.Location = new System.Drawing.Point(3, 3);
     this.CmdRun.Name     = "CmdRun";
     this.CmdRun.Size     = new System.Drawing.Size(40, 40);
     this.CmdRun.TabIndex = 0;
     EditorTips.SetToolTip(this.CmdRun, "Run");
     this.CmdRun.UseVisualStyleBackColor = true;
     this.CmdRun.Click += new System.EventHandler(this.CmdRun_Click);
     //
     // CmdStep
     //
     this.CmdStep.Image    = global::EllieWare.Common.Properties.Resources.step_32x32;
     this.CmdStep.Location = new System.Drawing.Point(3, 49);
     this.CmdStep.Name     = "CmdStep";
     this.CmdStep.Size     = new System.Drawing.Size(40, 40);
     this.CmdStep.TabIndex = 1;
     EditorTips.SetToolTip(this.CmdStep, "Step");
     this.CmdStep.UseVisualStyleBackColor = true;
     this.CmdStep.Click += new System.EventHandler(this.CmdStep_Click);
     //
     // CmdLog
     //
     this.CmdLog.Image    = global::EllieWare.Common.Properties.Resources.scroll2_32x32;
     this.CmdLog.Location = new System.Drawing.Point(3, 141);
     this.CmdLog.Name     = "CmdLog";
     this.CmdLog.Size     = new System.Drawing.Size(40, 40);
     this.CmdLog.TabIndex = 3;
     EditorTips.SetToolTip(this.CmdLog, "Toggle log window");
     this.CmdLog.UseVisualStyleBackColor = true;
     this.CmdLog.Click += new System.EventHandler(this.CmdLog_Click);
     //
     // CmdStop
     //
     this.CmdStop.Image    = global::EllieWare.Common.Properties.Resources.step_stop_32x32;
     this.CmdStop.Location = new System.Drawing.Point(3, 95);
     this.CmdStop.Name     = "CmdStop";
     this.CmdStop.Size     = new System.Drawing.Size(40, 40);
     this.CmdStop.TabIndex = 2;
     this.CmdStop.UseVisualStyleBackColor = true;
     this.CmdStop.Click += new System.EventHandler(this.CmdStop_Click);
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.AutoSize     = true;
     tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel1.ColumnCount  = 1;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.Controls.Add(this.CmdAdd, 0, 0);
     tableLayoutPanel1.Controls.Add(this.CmdDelete, 0, 1);
     tableLayoutPanel1.Controls.Add(this.CmdUp, 0, 2);
     tableLayoutPanel1.Controls.Add(this.CmdDown, 0, 3);
     tableLayoutPanel1.Location = new System.Drawing.Point(548, 3);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 4;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.Size     = new System.Drawing.Size(46, 184);
     tableLayoutPanel1.TabIndex = 10;
     //
     // CmdAdd
     //
     this.CmdAdd.Image    = global::EllieWare.Common.Properties.Resources.step_add_32x32;
     this.CmdAdd.Location = new System.Drawing.Point(3, 3);
     this.CmdAdd.Name     = "CmdAdd";
     this.CmdAdd.Size     = new System.Drawing.Size(40, 40);
     this.CmdAdd.TabIndex = 0;
     EditorTips.SetToolTip(this.CmdAdd, "Add...");
     this.CmdAdd.UseVisualStyleBackColor = true;
     this.CmdAdd.Click += new System.EventHandler(this.CmdAdd_Click);
     //
     // CmdDelete
     //
     this.CmdDelete.Image    = global::EllieWare.Common.Properties.Resources.step_delete_32x32;
     this.CmdDelete.Location = new System.Drawing.Point(3, 49);
     this.CmdDelete.Name     = "CmdDelete";
     this.CmdDelete.Size     = new System.Drawing.Size(40, 40);
     this.CmdDelete.TabIndex = 1;
     EditorTips.SetToolTip(this.CmdDelete, "Delete");
     this.CmdDelete.UseVisualStyleBackColor = true;
     this.CmdDelete.Click += new System.EventHandler(this.CmdDelete_Click);
     //
     // CmdUp
     //
     this.CmdUp.Image    = global::EllieWare.Common.Properties.Resources.arrow_up_green_32x32;
     this.CmdUp.Location = new System.Drawing.Point(3, 95);
     this.CmdUp.Name     = "CmdUp";
     this.CmdUp.Size     = new System.Drawing.Size(40, 40);
     this.CmdUp.TabIndex = 2;
     EditorTips.SetToolTip(this.CmdUp, "Up");
     this.CmdUp.UseVisualStyleBackColor = true;
     this.CmdUp.Click += new System.EventHandler(this.CmdUp_Click);
     //
     // CmdDown
     //
     this.CmdDown.Image    = global::EllieWare.Common.Properties.Resources.arrow_down_green_32x32;
     this.CmdDown.Location = new System.Drawing.Point(3, 141);
     this.CmdDown.Name     = "CmdDown";
     this.CmdDown.Size     = new System.Drawing.Size(40, 40);
     this.CmdDown.TabIndex = 3;
     EditorTips.SetToolTip(this.CmdDown, "Down");
     this.CmdDown.UseVisualStyleBackColor = true;
     this.CmdDown.Click += new System.EventHandler(this.CmdDown_Click);
     //
     // CmdClose
     //
     this.CmdClose.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.CmdClose.Location                = new System.Drawing.Point(467, 487);
     this.CmdClose.Name                    = "CmdClose";
     this.CmdClose.Size                    = new System.Drawing.Size(75, 23);
     this.CmdClose.TabIndex                = 2;
     this.CmdClose.Text                    = "Close";
     this.CmdClose.UseVisualStyleBackColor = true;
     this.CmdClose.Click                  += new System.EventHandler(this.CmdClose_Click);
     //
     // mMainContainer
     //
     this.mMainContainer.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.mMainContainer.BackColor = System.Drawing.SystemColors.HotTrack;
     this.mMainContainer.Location  = new System.Drawing.Point(12, 12);
     this.mMainContainer.Margin    = new System.Windows.Forms.Padding(0);
     this.mMainContainer.Name      = "mMainContainer";
     //
     // mMainContainer.Panel1
     //
     this.mMainContainer.Panel1.BackColor = System.Drawing.SystemColors.Control;
     this.mMainContainer.Panel1.Controls.Add(tableLayoutPanel4);
     //
     // mMainContainer.Panel2
     //
     this.mMainContainer.Panel2.BackColor = System.Drawing.SystemColors.Control;
     this.mMainContainer.Panel2.Controls.Add(this.mCallback);
     this.mMainContainer.Size             = new System.Drawing.Size(841, 513);
     this.mMainContainer.SplitterDistance = 597;
     this.mMainContainer.TabIndex         = 15;
     this.mMainContainer.SplitterMoved   += new System.Windows.Forms.SplitterEventHandler(this.MainContainer_SplitterMoved);
     //
     // mCallback
     //
     this.mCallback.AutoSize     = true;
     this.mCallback.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.mCallback.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.mCallback.Location     = new System.Drawing.Point(0, 0);
     this.mCallback.Margin       = new System.Windows.Forms.Padding(0);
     this.mCallback.Name         = "mCallback";
     this.mCallback.Size         = new System.Drawing.Size(240, 513);
     this.mCallback.TabIndex     = 14;
     //
     // Editor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.CmdClose;
     this.ClientSize          = new System.Drawing.Size(865, 537);
     this.Controls.Add(this.mMainContainer);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(0, 575);
     this.Name          = "Editor";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Editor";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.Editor_FormClosing);
     this.FormClosed   += new System.Windows.Forms.FormClosedEventHandler(this.Editor_FormClosed);
     this.Load         += new System.EventHandler(this.Editor_Load);
     this.Shown        += new System.EventHandler(this.Editor_Shown);
     this.SizeChanged  += new System.EventHandler(this.Editor_SizeChanged);
     tableLayoutPanel4.ResumeLayout(false);
     tableLayoutPanel4.PerformLayout();
     this.mStepsContainer.Panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.mStepsContainer)).EndInit();
     this.mStepsContainer.ResumeLayout(false);
     SaveMenuStrip.ResumeLayout(false);
     tableLayoutPanel3.ResumeLayout(false);
     tableLayoutPanel2.ResumeLayout(false);
     tableLayoutPanel1.ResumeLayout(false);
     this.mMainContainer.Panel1.ResumeLayout(false);
     this.mMainContainer.Panel2.ResumeLayout(false);
     this.mMainContainer.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mMainContainer)).EndInit();
     this.mMainContainer.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 19
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SshSettingsPage));
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.Putty = new System.Windows.Forms.RadioButton();
            this.OtherSshBrowse = new System.Windows.Forms.Button();
            this.OtherSsh = new System.Windows.Forms.TextBox();
            this.OpenSSH = new System.Windows.Forms.RadioButton();
            this.Other = new System.Windows.Forms.RadioButton();
            this.label18 = new System.Windows.Forms.Label();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.label15 = new System.Windows.Forms.Label();
            this.PageantBrowse = new System.Windows.Forms.Button();
            this.AutostartPageant = new System.Windows.Forms.CheckBox();
            this.PuttygenBrowse = new System.Windows.Forms.Button();
            this.label16 = new System.Windows.Forms.Label();
            this.PlinkBrowse = new System.Windows.Forms.Button();
            this.PageantPath = new System.Windows.Forms.TextBox();
            this.label17 = new System.Windows.Forms.Label();
            this.PlinkPath = new System.Windows.Forms.TextBox();
            this.PuttygenPath = new System.Windows.Forms.TextBox();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
            tableLayoutPanel1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            tableLayoutPanel2.SuspendLayout();
            this.groupBox2.SuspendLayout();
            tableLayoutPanel3.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.AutoSize = true;
            tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            tableLayoutPanel1.ColumnCount = 1;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            tableLayoutPanel1.Controls.Add(this.groupBox1, 0, 0);
            tableLayoutPanel1.Controls.Add(this.groupBox2, 0, 1);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 3;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.Size = new System.Drawing.Size(674, 975);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // groupBox1
            // 
            this.groupBox1.AutoSize = true;
            this.groupBox1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.groupBox1.Controls.Add(tableLayoutPanel2);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox1.Location = new System.Drawing.Point(3, 3);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Padding = new System.Windows.Forms.Padding(8);
            this.groupBox1.Size = new System.Drawing.Size(668, 107);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Specify which ssh client to use";
            // 
            // tableLayoutPanel2
            // 
            tableLayoutPanel2.AutoSize = true;
            tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            tableLayoutPanel2.ColumnCount = 3;
            tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 140F));
            tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            tableLayoutPanel2.Controls.Add(this.Putty, 0, 0);
            tableLayoutPanel2.Controls.Add(this.OtherSshBrowse, 2, 2);
            tableLayoutPanel2.Controls.Add(this.OtherSsh, 1, 2);
            tableLayoutPanel2.Controls.Add(this.OpenSSH, 0, 1);
            tableLayoutPanel2.Controls.Add(this.Other, 0, 2);
            tableLayoutPanel2.Controls.Add(this.label18, 1, 0);
            tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel2.Location = new System.Drawing.Point(8, 22);
            tableLayoutPanel2.Name = "tableLayoutPanel2";
            tableLayoutPanel2.RowCount = 3;
            tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel2.Size = new System.Drawing.Size(652, 77);
            tableLayoutPanel2.TabIndex = 0;
            // 
            // Putty
            // 
            this.Putty.AutoSize = true;
            this.Putty.Checked = true;
            this.Putty.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Putty.Location = new System.Drawing.Point(3, 3);
            this.Putty.Name = "Putty";
            this.Putty.Size = new System.Drawing.Size(134, 17);
            this.Putty.TabIndex = 0;
            this.Putty.TabStop = true;
            this.Putty.Text = "PuTTY";
            this.Putty.UseVisualStyleBackColor = true;
            this.Putty.CheckedChanged += new System.EventHandler(this.Putty_CheckedChanged);
            // 
            // OtherSshBrowse
            // 
            this.OtherSshBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.OtherSshBrowse.Location = new System.Drawing.Point(574, 49);
            this.OtherSshBrowse.Name = "OtherSshBrowse";
            this.OtherSshBrowse.Size = new System.Drawing.Size(75, 25);
            this.OtherSshBrowse.TabIndex = 5;
            this.OtherSshBrowse.Text = "Browse";
            this.OtherSshBrowse.UseVisualStyleBackColor = true;
            this.OtherSshBrowse.Click += new System.EventHandler(this.OtherSshBrowse_Click);
            // 
            // OtherSsh
            // 
            this.OtherSsh.Dock = System.Windows.Forms.DockStyle.Fill;
            this.OtherSsh.Location = new System.Drawing.Point(143, 49);
            this.OtherSsh.MinimumSize = new System.Drawing.Size(300, 0);
            this.OtherSsh.Name = "OtherSsh";
            this.OtherSsh.Size = new System.Drawing.Size(425, 21);
            this.OtherSsh.TabIndex = 4;
            // 
            // OpenSSH
            // 
            this.OpenSSH.AutoSize = true;
            this.OpenSSH.Dock = System.Windows.Forms.DockStyle.Fill;
            this.OpenSSH.Location = new System.Drawing.Point(3, 26);
            this.OpenSSH.Name = "OpenSSH";
            this.OpenSSH.Size = new System.Drawing.Size(134, 17);
            this.OpenSSH.TabIndex = 2;
            this.OpenSSH.Text = "OpenSSH";
            this.OpenSSH.UseVisualStyleBackColor = true;
            this.OpenSSH.CheckedChanged += new System.EventHandler(this.OpenSSH_CheckedChanged);
            // 
            // Other
            // 
            this.Other.AutoSize = true;
            this.Other.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Other.Location = new System.Drawing.Point(3, 49);
            this.Other.Name = "Other";
            this.Other.Size = new System.Drawing.Size(134, 25);
            this.Other.TabIndex = 3;
            this.Other.Text = "Other ssh client";
            this.Other.UseVisualStyleBackColor = true;
            this.Other.CheckedChanged += new System.EventHandler(this.Other_CheckedChanged);
            // 
            // label18
            // 
            this.label18.BackColor = System.Drawing.SystemColors.Info;
            this.label18.Dock = System.Windows.Forms.DockStyle.Fill;
            this.label18.Location = new System.Drawing.Point(143, 0);
            this.label18.Name = "label18";
            tableLayoutPanel2.SetRowSpan(this.label18, 2);
            this.label18.Size = new System.Drawing.Size(425, 46);
            this.label18.TabIndex = 1;
            this.label18.Text = resources.GetString("label18.Text");
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // groupBox2
            // 
            this.groupBox2.AutoSize = true;
            this.groupBox2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.groupBox2.Controls.Add(tableLayoutPanel3);
            this.groupBox2.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupBox2.Location = new System.Drawing.Point(3, 116);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Padding = new System.Windows.Forms.Padding(8);
            this.groupBox2.Size = new System.Drawing.Size(668, 146);
            this.groupBox2.TabIndex = 1;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Configure PuTTY";
            // 
            // tableLayoutPanel3
            // 
            tableLayoutPanel3.AutoSize = true;
            tableLayoutPanel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            tableLayoutPanel3.ColumnCount = 3;
            tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 140F));
            tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            tableLayoutPanel3.Controls.Add(this.label15, 0, 0);
            tableLayoutPanel3.Controls.Add(this.PageantBrowse, 2, 2);
            tableLayoutPanel3.Controls.Add(this.AutostartPageant, 1, 3);
            tableLayoutPanel3.Controls.Add(this.PuttygenBrowse, 2, 1);
            tableLayoutPanel3.Controls.Add(this.label16, 0, 1);
            tableLayoutPanel3.Controls.Add(this.PlinkBrowse, 2, 0);
            tableLayoutPanel3.Controls.Add(this.PageantPath, 1, 2);
            tableLayoutPanel3.Controls.Add(this.label17, 0, 2);
            tableLayoutPanel3.Controls.Add(this.PlinkPath, 1, 0);
            tableLayoutPanel3.Controls.Add(this.PuttygenPath, 1, 1);
            tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel3.Location = new System.Drawing.Point(8, 22);
            tableLayoutPanel3.Name = "tableLayoutPanel3";
            tableLayoutPanel3.RowCount = 4;
            tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel3.Size = new System.Drawing.Size(652, 116);
            tableLayoutPanel3.TabIndex = 0;
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.Dock = System.Windows.Forms.DockStyle.Fill;
            this.label15.Location = new System.Drawing.Point(3, 0);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(134, 31);
            this.label15.TabIndex = 0;
            this.label15.Text = "Path to plink";
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // PageantBrowse
            // 
            this.PageantBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.PageantBrowse.Location = new System.Drawing.Point(574, 65);
            this.PageantBrowse.Name = "PageantBrowse";
            this.PageantBrowse.Size = new System.Drawing.Size(75, 25);
            this.PageantBrowse.TabIndex = 8;
            this.PageantBrowse.Text = "Browse";
            this.PageantBrowse.UseVisualStyleBackColor = true;
            this.PageantBrowse.Click += new System.EventHandler(this.PageantBrowse_Click);
            // 
            // AutostartPageant
            // 
            this.AutostartPageant.AutoEllipsis = true;
            this.AutostartPageant.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
            this.AutostartPageant.Checked = true;
            this.AutostartPageant.CheckState = System.Windows.Forms.CheckState.Checked;
            tableLayoutPanel3.SetColumnSpan(this.AutostartPageant, 2);
            this.AutostartPageant.Dock = System.Windows.Forms.DockStyle.Fill;
            this.AutostartPageant.Location = new System.Drawing.Point(143, 96);
            this.AutostartPageant.Name = "AutostartPageant";
            this.AutostartPageant.Size = new System.Drawing.Size(506, 17);
            this.AutostartPageant.TabIndex = 9;
            this.AutostartPageant.Text = "Automatically start authentication client when a private key is configured for a " +
    "remote";
            this.AutostartPageant.TextAlign = System.Drawing.ContentAlignment.TopLeft;
            this.AutostartPageant.UseVisualStyleBackColor = true;
            // 
            // PuttygenBrowse
            // 
            this.PuttygenBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.PuttygenBrowse.Location = new System.Drawing.Point(574, 34);
            this.PuttygenBrowse.Name = "PuttygenBrowse";
            this.PuttygenBrowse.Size = new System.Drawing.Size(75, 25);
            this.PuttygenBrowse.TabIndex = 5;
            this.PuttygenBrowse.Text = "Browse";
            this.PuttygenBrowse.UseVisualStyleBackColor = true;
            this.PuttygenBrowse.Click += new System.EventHandler(this.PuttygenBrowse_Click);
            // 
            // label16
            // 
            this.label16.AutoSize = true;
            this.label16.Dock = System.Windows.Forms.DockStyle.Fill;
            this.label16.Location = new System.Drawing.Point(3, 31);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(134, 31);
            this.label16.TabIndex = 3;
            this.label16.Text = "Path to puttygen";
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // PlinkBrowse
            // 
            this.PlinkBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.PlinkBrowse.Location = new System.Drawing.Point(574, 3);
            this.PlinkBrowse.Name = "PlinkBrowse";
            this.PlinkBrowse.Size = new System.Drawing.Size(75, 25);
            this.PlinkBrowse.TabIndex = 2;
            this.PlinkBrowse.Text = "Browse";
            this.PlinkBrowse.UseVisualStyleBackColor = true;
            this.PlinkBrowse.Click += new System.EventHandler(this.PuttyBrowse_Click);
            // 
            // PageantPath
            // 
            this.PageantPath.Dock = System.Windows.Forms.DockStyle.Fill;
            this.PageantPath.Location = new System.Drawing.Point(143, 65);
            this.PageantPath.MinimumSize = new System.Drawing.Size(300, 0);
            this.PageantPath.Name = "PageantPath";
            this.PageantPath.Size = new System.Drawing.Size(425, 21);
            this.PageantPath.TabIndex = 7;
            // 
            // label17
            // 
            this.label17.AutoSize = true;
            this.label17.Dock = System.Windows.Forms.DockStyle.Fill;
            this.label17.Location = new System.Drawing.Point(3, 62);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(134, 31);
            this.label17.TabIndex = 6;
            this.label17.Text = "Path to pageant";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // PlinkPath
            // 
            this.PlinkPath.Dock = System.Windows.Forms.DockStyle.Fill;
            this.PlinkPath.Location = new System.Drawing.Point(143, 3);
            this.PlinkPath.MinimumSize = new System.Drawing.Size(300, 0);
            this.PlinkPath.Name = "PlinkPath";
            this.PlinkPath.Size = new System.Drawing.Size(425, 21);
            this.PlinkPath.TabIndex = 1;
            // 
            // PuttygenPath
            // 
            this.PuttygenPath.Dock = System.Windows.Forms.DockStyle.Fill;
            this.PuttygenPath.Location = new System.Drawing.Point(143, 34);
            this.PuttygenPath.MinimumSize = new System.Drawing.Size(300, 0);
            this.PuttygenPath.Name = "PuttygenPath";
            this.PuttygenPath.Size = new System.Drawing.Size(425, 21);
            this.PuttygenPath.TabIndex = 4;
            // 
            // SshSettingsPage
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.Controls.Add(tableLayoutPanel1);
            this.Name = "SshSettingsPage";
            this.Size = new System.Drawing.Size(674, 975);
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            tableLayoutPanel2.ResumeLayout(false);
            tableLayoutPanel2.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            tableLayoutPanel3.ResumeLayout(false);
            tableLayoutPanel3.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Ejemplo n.º 20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.Label warningLabel;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MultiExportForm));
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel1;
     System.Windows.Forms.Panel panel_buttons;
     System.Windows.Forms.Panel panel2;
     this.btn_accept           = new System.Windows.Forms.Button();
     this.btn_cancel           = new System.Windows.Forms.Button();
     this.btn_change_path      = new System.Windows.Forms.Button();
     this.panel1               = new System.Windows.Forms.Panel();
     this.ExportItemGridView   = new System.Windows.Forms.DataGridView();
     this.ColumnExportCheckbox = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.ColumnNode           = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnFilePath       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SetPathFileDialog    = new System.Windows.Forms.SaveFileDialog();
     warningLabel              = new System.Windows.Forms.Label();
     tableLayoutPanel1         = new System.Windows.Forms.TableLayoutPanel();
     panel_buttons             = new System.Windows.Forms.Panel();
     panel2 = new System.Windows.Forms.Panel();
     tableLayoutPanel1.SuspendLayout();
     panel_buttons.SuspendLayout();
     panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ExportItemGridView)).BeginInit();
     this.SuspendLayout();
     //
     // warningLabel
     //
     warningLabel.AutoEllipsis = true;
     warningLabel.AutoSize     = true;
     warningLabel.BorderStyle  = System.Windows.Forms.BorderStyle.FixedSingle;
     warningLabel.Dock         = System.Windows.Forms.DockStyle.Left;
     warningLabel.Font         = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     warningLabel.ForeColor    = System.Drawing.SystemColors.GrayText;
     warningLabel.Location     = new System.Drawing.Point(3, 3);
     warningLabel.Margin       = new System.Windows.Forms.Padding(3);
     warningLabel.Name         = "warningLabel";
     warningLabel.Padding      = new System.Windows.Forms.Padding(3);
     tableLayoutPanel1.SetRowSpan(warningLabel, 2);
     warningLabel.Size     = new System.Drawing.Size(431, 74);
     warningLabel.TabIndex = 10;
     warningLabel.Text     = resources.GetString("warningLabel.Text");
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.AutoSize     = true;
     tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel1.ColumnCount  = 2;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.Controls.Add(warningLabel, 0, 0);
     tableLayoutPanel1.Controls.Add(panel_buttons, 1, 1);
     tableLayoutPanel1.Controls.Add(panel2, 1, 0);
     tableLayoutPanel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     tableLayoutPanel1.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize;
     tableLayoutPanel1.Location  = new System.Drawing.Point(3, 258);
     tableLayoutPanel1.Name      = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount  = 2;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.Size     = new System.Drawing.Size(758, 80);
     tableLayoutPanel1.TabIndex = 12;
     //
     // panel_buttons
     //
     panel_buttons.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     panel_buttons.AutoSize     = true;
     panel_buttons.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     panel_buttons.Controls.Add(this.btn_accept);
     panel_buttons.Controls.Add(this.btn_cancel);
     panel_buttons.Location    = new System.Drawing.Point(509, 43);
     panel_buttons.MinimumSize = new System.Drawing.Size(94, 34);
     panel_buttons.Name        = "panel_buttons";
     panel_buttons.Padding     = new System.Windows.Forms.Padding(3);
     panel_buttons.Size        = new System.Drawing.Size(246, 34);
     panel_buttons.TabIndex    = 9;
     //
     // btn_accept
     //
     this.btn_accept.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.btn_accept.Dock                    = System.Windows.Forms.DockStyle.Right;
     this.btn_accept.Location                = new System.Drawing.Point(3, 3);
     this.btn_accept.MaximumSize             = new System.Drawing.Size(120, 27);
     this.btn_accept.MinimumSize             = new System.Drawing.Size(120, 27);
     this.btn_accept.Name                    = "btn_accept";
     this.btn_accept.Size                    = new System.Drawing.Size(120, 27);
     this.btn_accept.TabIndex                = 7;
     this.btn_accept.Text                    = "Accept";
     this.btn_accept.UseVisualStyleBackColor = true;
     this.btn_accept.Click                  += new System.EventHandler(this.btn_accept_Click);
     //
     // btn_cancel
     //
     this.btn_cancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btn_cancel.Dock                    = System.Windows.Forms.DockStyle.Right;
     this.btn_cancel.Location                = new System.Drawing.Point(123, 3);
     this.btn_cancel.MaximumSize             = new System.Drawing.Size(120, 27);
     this.btn_cancel.MinimumSize             = new System.Drawing.Size(120, 27);
     this.btn_cancel.Name                    = "btn_cancel";
     this.btn_cancel.Size                    = new System.Drawing.Size(120, 27);
     this.btn_cancel.TabIndex                = 6;
     this.btn_cancel.Text                    = "Cancel";
     this.btn_cancel.UseVisualStyleBackColor = true;
     this.btn_cancel.Click                  += new System.EventHandler(this.btn_cancel_Click);
     //
     // panel2
     //
     panel2.AutoSize     = true;
     panel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     panel2.Controls.Add(this.btn_change_path);
     panel2.Dock        = System.Windows.Forms.DockStyle.Top;
     panel2.Location    = new System.Drawing.Point(440, 3);
     panel2.MinimumSize = new System.Drawing.Size(94, 34);
     panel2.Name        = "panel2";
     panel2.Padding     = new System.Windows.Forms.Padding(3);
     panel2.Size        = new System.Drawing.Size(315, 34);
     panel2.TabIndex    = 10;
     //
     // btn_change_path
     //
     this.btn_change_path.AutoSize                = true;
     this.btn_change_path.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btn_change_path.Dock                    = System.Windows.Forms.DockStyle.Right;
     this.btn_change_path.Location                = new System.Drawing.Point(154, 3);
     this.btn_change_path.Name                    = "btn_change_path";
     this.btn_change_path.Size                    = new System.Drawing.Size(158, 28);
     this.btn_change_path.TabIndex                = 7;
     this.btn_change_path.Text                    = "Change Selected Item Path(s)";
     this.btn_change_path.UseVisualStyleBackColor = true;
     this.btn_change_path.Click                  += new System.EventHandler(this.btn_change_path_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.ExportItemGridView);
     this.panel1.Controls.Add(tableLayoutPanel1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Padding  = new System.Windows.Forms.Padding(3);
     this.panel1.Size     = new System.Drawing.Size(764, 341);
     this.panel1.TabIndex = 0;
     //
     // ExportItemGridView
     //
     this.ExportItemGridView.AllowUserToResizeColumns    = false;
     this.ExportItemGridView.AllowUserToResizeRows       = false;
     this.ExportItemGridView.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.ExportItemGridView.AutoSizeRowsMode            = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells;
     this.ExportItemGridView.CellBorderStyle             = System.Windows.Forms.DataGridViewCellBorderStyle.SingleVertical;
     this.ExportItemGridView.ClipboardCopyMode           = System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithoutHeaderText;
     this.ExportItemGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.ExportItemGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.ColumnExportCheckbox,
         this.ColumnNode,
         this.ColumnFilePath
     });
     this.ExportItemGridView.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.ExportItemGridView.Location          = new System.Drawing.Point(3, 3);
     this.ExportItemGridView.Name              = "ExportItemGridView";
     this.ExportItemGridView.RowHeadersWidth   = 27;
     this.ExportItemGridView.SelectionMode     = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.ExportItemGridView.Size              = new System.Drawing.Size(758, 255);
     this.ExportItemGridView.TabIndex          = 8;
     this.ExportItemGridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.ExportItemGridView_CellContentClick);
     this.ExportItemGridView.CellDoubleClick  += new System.Windows.Forms.DataGridViewCellEventHandler(this.ExportItemGridView_CellDoubleClick);
     this.ExportItemGridView.CellValidating   += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.ExportItemGridView_CellValidating);
     this.ExportItemGridView.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.ExportItemGridView_CellValueChanged);
     this.ExportItemGridView.KeyDown          += new System.Windows.Forms.KeyEventHandler(this.ExportItemGridView_KeyDown);
     //
     // ColumnExportCheckbox
     //
     this.ColumnExportCheckbox.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.ColumnExportCheckbox.HeaderText   = "Export?";
     this.ColumnExportCheckbox.Name         = "ColumnExportCheckbox";
     this.ColumnExportCheckbox.Resizable    = System.Windows.Forms.DataGridViewTriState.False;
     this.ColumnExportCheckbox.Width        = 49;
     //
     // ColumnNode
     //
     this.ColumnNode.AutoSizeMode   = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColumnNode.HeaderText     = "Root node";
     this.ColumnNode.MaxInputLength = 1024;
     this.ColumnNode.Name           = "ColumnNode";
     this.ColumnNode.ReadOnly       = true;
     this.ColumnNode.Width          = 82;
     //
     // ColumnFilePath
     //
     this.ColumnFilePath.AutoSizeMode   = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ColumnFilePath.HeaderText     = "File path";
     this.ColumnFilePath.MaxInputLength = 1024;
     this.ColumnFilePath.Name           = "ColumnFilePath";
     //
     // SetPathFileDialog
     //
     this.SetPathFileDialog.FileName         = "FileNameUnused";
     this.SetPathFileDialog.Filter           = "All Files|*.*";
     this.SetPathFileDialog.OverwritePrompt  = false;
     this.SetPathFileDialog.RestoreDirectory = true;
     this.SetPathFileDialog.Title            = "Set multi-export file path.";
     //
     // MultiExportForm
     //
     this.AcceptButton        = this.btn_accept;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.btn_cancel;
     this.ClientSize          = new System.Drawing.Size(764, 341);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.Name            = "MultiExportForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Multi-File Export";
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     panel_buttons.ResumeLayout(false);
     panel2.ResumeLayout(false);
     panel2.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ExportItemGridView)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 21
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TableLayoutPanel jobEditorTable;
            System.Windows.Forms.Label totalLabel;
            System.Windows.Forms.Label jpLabel;
            this.movementGroup = new System.Windows.Forms.GroupBox();
            this.supportGroup = new System.Windows.Forms.GroupBox();
            this.actionGroup = new System.Windows.Forms.GroupBox();
            this.reactionGroup = new System.Windows.Forms.GroupBox();
            this.infoPanel = new System.Windows.Forms.Panel();
            this.levelLabel = new System.Windows.Forms.Label();
            this.masteredCheckbox = new System.Windows.Forms.CheckBox();
            this.totalSpinner = new System.Windows.Forms.NumericUpDown();
            this.jpSpinner = new System.Windows.Forms.NumericUpDown();
            this.action1 = new System.Windows.Forms.CheckBox();
            this.action2 = new System.Windows.Forms.CheckBox();
            this.action3 = new System.Windows.Forms.CheckBox();
            this.action4 = new System.Windows.Forms.CheckBox();
            this.action5 = new System.Windows.Forms.CheckBox();
            this.action6 = new System.Windows.Forms.CheckBox();
            this.action7 = new System.Windows.Forms.CheckBox();
            this.action8 = new System.Windows.Forms.CheckBox();
            this.action9 = new System.Windows.Forms.CheckBox();
            this.action10 = new System.Windows.Forms.CheckBox();
            this.action11 = new System.Windows.Forms.CheckBox();
            this.action12 = new System.Windows.Forms.CheckBox();
            this.action13 = new System.Windows.Forms.CheckBox();
            this.action14 = new System.Windows.Forms.CheckBox();
            this.action15 = new System.Windows.Forms.CheckBox();
            this.action16 = new System.Windows.Forms.CheckBox();
            this.reaction1 = new System.Windows.Forms.CheckBox();
            this.reaction2 = new System.Windows.Forms.CheckBox();
            this.reaction3 = new System.Windows.Forms.CheckBox();
            this.support1 = new System.Windows.Forms.CheckBox();
            this.support2 = new System.Windows.Forms.CheckBox();
            this.support3 = new System.Windows.Forms.CheckBox();
            this.support4 = new System.Windows.Forms.CheckBox();
            this.movement1 = new System.Windows.Forms.CheckBox();
            this.movement2 = new System.Windows.Forms.CheckBox();
            jobEditorTable = new System.Windows.Forms.TableLayoutPanel();
            totalLabel = new System.Windows.Forms.Label();
            jpLabel = new System.Windows.Forms.Label();
            jobEditorTable.SuspendLayout();
            this.movementGroup.SuspendLayout();
            this.supportGroup.SuspendLayout();
            this.actionGroup.SuspendLayout();
            this.reactionGroup.SuspendLayout();
            this.infoPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.totalSpinner)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.jpSpinner)).BeginInit();
            this.SuspendLayout();
            // 
            // jobEditorTable
            // 
            jobEditorTable.ColumnCount = 2;
            jobEditorTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            jobEditorTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            jobEditorTable.Controls.Add(this.movementGroup, 1, 2);
            jobEditorTable.Controls.Add(this.supportGroup, 1, 1);
            jobEditorTable.Controls.Add(this.actionGroup, 0, 0);
            jobEditorTable.Controls.Add(this.reactionGroup, 1, 0);
            jobEditorTable.Controls.Add(this.infoPanel, 1, 3);
            jobEditorTable.Dock = System.Windows.Forms.DockStyle.Fill;
            jobEditorTable.Location = new System.Drawing.Point(0, 0);
            jobEditorTable.Name = "jobEditorTable";
            jobEditorTable.RowCount = 4;
            jobEditorTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 23.52941F));
            jobEditorTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 29.41176F));
            jobEditorTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17.64706F));
            jobEditorTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 29.41176F));
            jobEditorTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            jobEditorTable.Size = new System.Drawing.Size(397, 432);
            jobEditorTable.TabIndex = 2;
            // 
            // movementGroup
            // 
            this.movementGroup.Controls.Add(this.movement1);
            this.movementGroup.Controls.Add(this.movement2);
            this.movementGroup.Dock = System.Windows.Forms.DockStyle.Fill;
            this.movementGroup.Location = new System.Drawing.Point(201, 231);
            this.movementGroup.Name = "movementGroup";
            this.movementGroup.Size = new System.Drawing.Size(193, 70);
            this.movementGroup.TabIndex = 5;
            this.movementGroup.TabStop = false;
            this.movementGroup.Text = "Movement";
            // 
            // supportGroup
            // 
            this.supportGroup.Controls.Add(this.support1);
            this.supportGroup.Controls.Add(this.support2);
            this.supportGroup.Controls.Add(this.support3);
            this.supportGroup.Controls.Add(this.support4);
            this.supportGroup.Dock = System.Windows.Forms.DockStyle.Fill;
            this.supportGroup.Location = new System.Drawing.Point(201, 104);
            this.supportGroup.Name = "supportGroup";
            this.supportGroup.Size = new System.Drawing.Size(193, 121);
            this.supportGroup.TabIndex = 4;
            this.supportGroup.TabStop = false;
            this.supportGroup.Text = "Support";
            // 
            // actionGroup
            // 
            this.actionGroup.Controls.Add(this.action1);
            this.actionGroup.Controls.Add(this.action2);
            this.actionGroup.Controls.Add(this.action3);
            this.actionGroup.Controls.Add(this.action4);
            this.actionGroup.Controls.Add(this.action5);
            this.actionGroup.Controls.Add(this.action6);
            this.actionGroup.Controls.Add(this.action7);
            this.actionGroup.Controls.Add(this.action8);
            this.actionGroup.Controls.Add(this.action9);
            this.actionGroup.Controls.Add(this.action10);
            this.actionGroup.Controls.Add(this.action11);
            this.actionGroup.Controls.Add(this.action12);
            this.actionGroup.Controls.Add(this.action13);
            this.actionGroup.Controls.Add(this.action14);
            this.actionGroup.Controls.Add(this.action15);
            this.actionGroup.Controls.Add(this.action16);
            this.actionGroup.Dock = System.Windows.Forms.DockStyle.Fill;
            this.actionGroup.Location = new System.Drawing.Point(3, 3);
            this.actionGroup.Name = "actionGroup";
            jobEditorTable.SetRowSpan(this.actionGroup, 4);
            this.actionGroup.Size = new System.Drawing.Size(192, 426);
            this.actionGroup.TabIndex = 1;
            this.actionGroup.TabStop = false;
            this.actionGroup.Text = "Action";
            // 
            // reactionGroup
            // 
            this.reactionGroup.Controls.Add(this.reaction1);
            this.reactionGroup.Controls.Add(this.reaction2);
            this.reactionGroup.Controls.Add(this.reaction3);
            this.reactionGroup.Dock = System.Windows.Forms.DockStyle.Fill;
            this.reactionGroup.Location = new System.Drawing.Point(201, 3);
            this.reactionGroup.Name = "reactionGroup";
            this.reactionGroup.Size = new System.Drawing.Size(193, 95);
            this.reactionGroup.TabIndex = 2;
            this.reactionGroup.TabStop = false;
            this.reactionGroup.Text = "Reaction";
            // 
            // infoPanel
            // 
            this.infoPanel.Controls.Add(this.levelLabel);
            this.infoPanel.Controls.Add(this.masteredCheckbox);
            this.infoPanel.Controls.Add(this.totalSpinner);
            this.infoPanel.Controls.Add(totalLabel);
            this.infoPanel.Controls.Add(this.jpSpinner);
            this.infoPanel.Controls.Add(jpLabel);
            this.infoPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.infoPanel.Location = new System.Drawing.Point(199, 305);
            this.infoPanel.Margin = new System.Windows.Forms.Padding(1);
            this.infoPanel.Name = "infoPanel";
            this.infoPanel.Size = new System.Drawing.Size(197, 126);
            this.infoPanel.TabIndex = 8;
            // 
            // levelLabel
            // 
            this.levelLabel.AutoSize = true;
            this.levelLabel.Location = new System.Drawing.Point(5, 1);
            this.levelLabel.Name = "levelLabel";
            this.levelLabel.Size = new System.Drawing.Size(53, 13);
            this.levelLabel.TabIndex = 201;
            this.levelLabel.Text = "Level: {0}";
            this.levelLabel.Visible = false;
            // 
            // masteredCheckbox
            // 
            this.masteredCheckbox.AutoSize = true;
            this.masteredCheckbox.Dock = System.Windows.Forms.DockStyle.Top;
            this.masteredCheckbox.Enabled = false;
            this.masteredCheckbox.Location = new System.Drawing.Point(0, 0);
            this.masteredCheckbox.Name = "masteredCheckbox";
            this.masteredCheckbox.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.masteredCheckbox.Size = new System.Drawing.Size(197, 17);
            this.masteredCheckbox.TabIndex = 8;
            this.masteredCheckbox.Text = "Mastered";
            this.masteredCheckbox.UseVisualStyleBackColor = true;
            // 
            // totalSpinner
            // 
            this.totalSpinner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.totalSpinner.Location = new System.Drawing.Point(127, 49);
            this.totalSpinner.Maximum = new decimal(new int[] {
            9999,
            0,
            0,
            0});
            this.totalSpinner.Name = "totalSpinner";
            this.totalSpinner.Size = new System.Drawing.Size(68, 20);
            this.totalSpinner.TabIndex = 200;
            this.totalSpinner.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // totalLabel
            // 
            totalLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            totalLabel.AutoSize = true;
            totalLabel.Location = new System.Drawing.Point(87, 51);
            totalLabel.Name = "totalLabel";
            totalLabel.Size = new System.Drawing.Size(34, 13);
            totalLabel.TabIndex = 0;
            totalLabel.Text = "Total:";
            // 
            // jpSpinner
            // 
            this.jpSpinner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.jpSpinner.Location = new System.Drawing.Point(127, 22);
            this.jpSpinner.Maximum = new decimal(new int[] {
            9999,
            0,
            0,
            0});
            this.jpSpinner.Name = "jpSpinner";
            this.jpSpinner.Size = new System.Drawing.Size(68, 20);
            this.jpSpinner.TabIndex = 100;
            this.jpSpinner.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // jpLabel
            // 
            jpLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            jpLabel.AutoSize = true;
            jpLabel.Location = new System.Drawing.Point(99, 24);
            jpLabel.Name = "jpLabel";
            jpLabel.Size = new System.Drawing.Size(22, 13);
            jpLabel.TabIndex = 0;
            jpLabel.Text = "JP:";
            // 
            // action1
            // 
            this.action1.AutoSize = true;
            this.action1.Location = new System.Drawing.Point(6, 19);
            this.action1.Name = "action1";
            this.action1.Size = new System.Drawing.Size(61, 17);
            this.action1.TabIndex = 1801;
            this.action1.Text = "action1";
            this.action1.UseVisualStyleBackColor = true;
            // 
            // action2
            // 
            this.action2.AutoSize = true;
            this.action2.Location = new System.Drawing.Point(6, 42);
            this.action2.Name = "action2";
            this.action2.Size = new System.Drawing.Size(61, 17);
            this.action2.TabIndex = 1802;
            this.action2.Text = "action2";
            this.action2.UseVisualStyleBackColor = true;
            // 
            // action3
            // 
            this.action3.AutoSize = true;
            this.action3.Location = new System.Drawing.Point(6, 65);
            this.action3.Name = "action3";
            this.action3.Size = new System.Drawing.Size(61, 17);
            this.action3.TabIndex = 1803;
            this.action3.Text = "action3";
            this.action3.UseVisualStyleBackColor = true;
            // 
            // action4
            // 
            this.action4.AutoSize = true;
            this.action4.Location = new System.Drawing.Point(6, 88);
            this.action4.Name = "action4";
            this.action4.Size = new System.Drawing.Size(61, 17);
            this.action4.TabIndex = 1804;
            this.action4.Text = "action4";
            this.action4.UseVisualStyleBackColor = true;
            // 
            // action5
            // 
            this.action5.AutoSize = true;
            this.action5.Location = new System.Drawing.Point(6, 111);
            this.action5.Name = "action5";
            this.action5.Size = new System.Drawing.Size(61, 17);
            this.action5.TabIndex = 1805;
            this.action5.Text = "action5";
            this.action5.UseVisualStyleBackColor = true;
            // 
            // action6
            // 
            this.action6.AutoSize = true;
            this.action6.Location = new System.Drawing.Point(6, 134);
            this.action6.Name = "action6";
            this.action6.Size = new System.Drawing.Size(61, 17);
            this.action6.TabIndex = 1806;
            this.action6.Text = "action6";
            this.action6.UseVisualStyleBackColor = true;
            // 
            // action7
            // 
            this.action7.AutoSize = true;
            this.action7.Location = new System.Drawing.Point(6, 157);
            this.action7.Name = "action7";
            this.action7.Size = new System.Drawing.Size(61, 17);
            this.action7.TabIndex = 1807;
            this.action7.Text = "action7";
            this.action7.UseVisualStyleBackColor = true;
            // 
            // action8
            // 
            this.action8.AutoSize = true;
            this.action8.Location = new System.Drawing.Point(6, 180);
            this.action8.Name = "action8";
            this.action8.Size = new System.Drawing.Size(61, 17);
            this.action8.TabIndex = 1808;
            this.action8.Text = "action8";
            this.action8.UseVisualStyleBackColor = true;
            // 
            // action9
            // 
            this.action9.AutoSize = true;
            this.action9.Location = new System.Drawing.Point(6, 203);
            this.action9.Name = "action9";
            this.action9.Size = new System.Drawing.Size(61, 17);
            this.action9.TabIndex = 1809;
            this.action9.Text = "action9";
            this.action9.UseVisualStyleBackColor = true;
            // 
            // action10
            // 
            this.action10.AutoSize = true;
            this.action10.Location = new System.Drawing.Point(6, 226);
            this.action10.Name = "action10";
            this.action10.Size = new System.Drawing.Size(67, 17);
            this.action10.TabIndex = 1810;
            this.action10.Text = "action10";
            this.action10.UseVisualStyleBackColor = true;
            // 
            // action11
            // 
            this.action11.AutoSize = true;
            this.action11.Location = new System.Drawing.Point(6, 249);
            this.action11.Name = "action11";
            this.action11.Size = new System.Drawing.Size(67, 17);
            this.action11.TabIndex = 1811;
            this.action11.Text = "action11";
            this.action11.UseVisualStyleBackColor = true;
            // 
            // action12
            // 
            this.action12.AutoSize = true;
            this.action12.Location = new System.Drawing.Point(6, 272);
            this.action12.Name = "action12";
            this.action12.Size = new System.Drawing.Size(67, 17);
            this.action12.TabIndex = 1812;
            this.action12.Text = "action12";
            this.action12.UseVisualStyleBackColor = true;
            // 
            // action13
            // 
            this.action13.AutoSize = true;
            this.action13.Location = new System.Drawing.Point(6, 295);
            this.action13.Name = "action13";
            this.action13.Size = new System.Drawing.Size(67, 17);
            this.action13.TabIndex = 1813;
            this.action13.Text = "action13";
            this.action13.UseVisualStyleBackColor = true;
            // 
            // action14
            // 
            this.action14.AutoSize = true;
            this.action14.Location = new System.Drawing.Point(6, 318);
            this.action14.Name = "action14";
            this.action14.Size = new System.Drawing.Size(67, 17);
            this.action14.TabIndex = 1814;
            this.action14.Text = "action14";
            this.action14.UseVisualStyleBackColor = true;
            // 
            // action15
            // 
            this.action15.AutoSize = true;
            this.action15.Location = new System.Drawing.Point(6, 341);
            this.action15.Name = "action15";
            this.action15.Size = new System.Drawing.Size(67, 17);
            this.action15.TabIndex = 1815;
            this.action15.Text = "action15";
            this.action15.UseVisualStyleBackColor = true;
            // 
            // action16
            // 
            this.action16.AutoSize = true;
            this.action16.Location = new System.Drawing.Point(6, 364);
            this.action16.Name = "action16";
            this.action16.Size = new System.Drawing.Size(67, 17);
            this.action16.TabIndex = 1816;
            this.action16.Text = "action16";
            this.action16.UseVisualStyleBackColor = true;
            // 
            // reaction1
            // 
            this.reaction1.AutoSize = true;
            this.reaction1.Location = new System.Drawing.Point(6, 19);
            this.reaction1.Name = "reaction1";
            this.reaction1.Size = new System.Drawing.Size(70, 17);
            this.reaction1.TabIndex = 2101;
            this.reaction1.Text = "reaction1";
            this.reaction1.UseVisualStyleBackColor = true;
            // 
            // reaction2
            // 
            this.reaction2.AutoSize = true;
            this.reaction2.Location = new System.Drawing.Point(6, 42);
            this.reaction2.Name = "reaction2";
            this.reaction2.Size = new System.Drawing.Size(70, 17);
            this.reaction2.TabIndex = 2102;
            this.reaction2.Text = "reaction2";
            this.reaction2.UseVisualStyleBackColor = true;
            // 
            // reaction3
            // 
            this.reaction3.AutoSize = true;
            this.reaction3.Location = new System.Drawing.Point(6, 65);
            this.reaction3.Name = "reaction3";
            this.reaction3.Size = new System.Drawing.Size(70, 17);
            this.reaction3.TabIndex = 2103;
            this.reaction3.Text = "reaction3";
            this.reaction3.UseVisualStyleBackColor = true;
            // 
            // support1
            // 
            this.support1.AutoSize = true;
            this.support1.Location = new System.Drawing.Point(6, 19);
            this.support1.Name = "support1";
            this.support1.Size = new System.Drawing.Size(67, 17);
            this.support1.TabIndex = 2501;
            this.support1.Text = "support1";
            this.support1.UseVisualStyleBackColor = true;
            // 
            // support2
            // 
            this.support2.AutoSize = true;
            this.support2.Location = new System.Drawing.Point(6, 42);
            this.support2.Name = "support2";
            this.support2.Size = new System.Drawing.Size(67, 17);
            this.support2.TabIndex = 2502;
            this.support2.Text = "support2";
            this.support2.UseVisualStyleBackColor = true;
            // 
            // support3
            // 
            this.support3.AutoSize = true;
            this.support3.Location = new System.Drawing.Point(6, 65);
            this.support3.Name = "support3";
            this.support3.Size = new System.Drawing.Size(67, 17);
            this.support3.TabIndex = 2503;
            this.support3.Text = "support3";
            this.support3.UseVisualStyleBackColor = true;
            // 
            // support4
            // 
            this.support4.AutoSize = true;
            this.support4.Location = new System.Drawing.Point(6, 88);
            this.support4.Name = "support4";
            this.support4.Size = new System.Drawing.Size(67, 17);
            this.support4.TabIndex = 2504;
            this.support4.Text = "support4";
            this.support4.UseVisualStyleBackColor = true;
            // 
            // movement1
            // 
            this.movement1.AutoSize = true;
            this.movement1.Location = new System.Drawing.Point(6, 19);
            this.movement1.Name = "movement1";
            this.movement1.Size = new System.Drawing.Size(81, 17);
            this.movement1.TabIndex = 2701;
            this.movement1.Text = "movement1";
            this.movement1.UseVisualStyleBackColor = true;
            // 
            // movement2
            // 
            this.movement2.AutoSize = true;
            this.movement2.Location = new System.Drawing.Point(6, 42);
            this.movement2.Name = "movement2";
            this.movement2.Size = new System.Drawing.Size(81, 17);
            this.movement2.TabIndex = 2702;
            this.movement2.Text = "movement2";
            this.movement2.UseVisualStyleBackColor = true;
            // 
            // JobEditor
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(jobEditorTable);
            this.Name = "JobEditor";
            this.Size = new System.Drawing.Size(397, 432);
            jobEditorTable.ResumeLayout(false);
            this.movementGroup.ResumeLayout(false);
            this.movementGroup.PerformLayout();
            this.supportGroup.ResumeLayout(false);
            this.supportGroup.PerformLayout();
            this.actionGroup.ResumeLayout(false);
            this.actionGroup.PerformLayout();
            this.reactionGroup.ResumeLayout(false);
            this.reactionGroup.PerformLayout();
            this.infoPanel.ResumeLayout(false);
            this.infoPanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.totalSpinner)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.jpSpinner)).EndInit();
            this.ResumeLayout(false);

        }
 /// <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.Windows.Forms.TableLayoutPanel          _TlfFunctionsTLP;
     HMI.Presentation.Urr.Properties.Settings       settings1 = new HMI.Presentation.Urr.Properties.Settings();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TlfFunctionsView));
     this._PriorityBT     = new HMI.Model.Module.UI.HMIButton();
     this._ListenBT       = new HMI.Model.Module.UI.HMIButton();
     this._HoldBT         = new HMI.Model.Module.UI.HMIButton();
     this._TransferBT     = new HMI.Model.Module.UI.HMIButton();
     this._TlfViewBT      = new HMI.Model.Module.UI.HMIButton();
     this._CancelBT       = new HMI.Model.Module.UI.HMIButton();
     this._SlowBlinkTimer = new System.Windows.Forms.Timer(this.components);
     this._FastBlinkTimer = new System.Windows.Forms.Timer(this.components);
     _TlfFunctionsTLP     = new System.Windows.Forms.TableLayoutPanel();
     _TlfFunctionsTLP.SuspendLayout();
     this.SuspendLayout();
     //
     // _TlfFunctionsTLP
     //
     _TlfFunctionsTLP.ColumnCount = 4;
     _TlfFunctionsTLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28F));
     _TlfFunctionsTLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28F));
     _TlfFunctionsTLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 22F));
     _TlfFunctionsTLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 22F));
     _TlfFunctionsTLP.Controls.Add(this._PriorityBT, 0, 0);
     _TlfFunctionsTLP.Controls.Add(this._ListenBT, 1, 0);
     _TlfFunctionsTLP.Controls.Add(this._HoldBT, 0, 1);
     _TlfFunctionsTLP.Controls.Add(this._TransferBT, 1, 1);
     _TlfFunctionsTLP.Controls.Add(this._TlfViewBT, 2, 0);
     _TlfFunctionsTLP.Controls.Add(this._CancelBT, 3, 0);
     _TlfFunctionsTLP.Dock     = System.Windows.Forms.DockStyle.Fill;
     _TlfFunctionsTLP.Location = new System.Drawing.Point(0, 0);
     _TlfFunctionsTLP.Margin   = new System.Windows.Forms.Padding(5, 0, 0, 0);
     _TlfFunctionsTLP.Name     = "_TlfFunctionsTLP";
     _TlfFunctionsTLP.RowCount = 2;
     _TlfFunctionsTLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     _TlfFunctionsTLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     _TlfFunctionsTLP.Size     = new System.Drawing.Size(429, 129);
     _TlfFunctionsTLP.TabIndex = 2;
     //
     // _PriorityBT
     //
     settings1.AssignatedStates = ((System.Collections.Specialized.StringCollection)(resources.GetObject("settings1.AssignatedStates")));
     settings1.Historic         = ((System.Collections.Specialized.StringCollection)(resources.GetObject("settings1.Historic")));
     settings1.Sector           = "111";
     settings1.SettingsKey      = "";
     this._PriorityBT.DataBindings.Add(new System.Windows.Forms.Binding("Visible", settings1, "EnablePriority", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._PriorityBT.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._PriorityBT.Enabled  = false;
     this._PriorityBT.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._PriorityBT.Location = new System.Drawing.Point(2, 2);
     this._PriorityBT.Margin   = new System.Windows.Forms.Padding(2);
     this._PriorityBT.Name     = "_PriorityBT";
     this._PriorityBT.Size     = new System.Drawing.Size(116, 60);
     this._PriorityBT.TabIndex = 0;
     this._PriorityBT.Text     = "Prioridad";
     this._PriorityBT.Visible  = settings1.EnablePriority;
     this._PriorityBT.Click   += new System.EventHandler(this._PriorityBT_Click);
     //
     // _ListenBT
     //
     this._ListenBT.DataBindings.Add(new System.Windows.Forms.Binding("Visible", settings1, "EnableListen", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._ListenBT.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._ListenBT.Enabled  = false;
     this._ListenBT.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._ListenBT.Location = new System.Drawing.Point(122, 2);
     this._ListenBT.Margin   = new System.Windows.Forms.Padding(2);
     this._ListenBT.Name     = "_ListenBT";
     this._ListenBT.Size     = new System.Drawing.Size(116, 60);
     this._ListenBT.TabIndex = 1;
     this._ListenBT.Text     = "Escucha";
     this._ListenBT.Visible  = settings1.EnableListen;
     this._ListenBT.Click   += new System.EventHandler(this._ListenBT_Click);
     //
     // _HoldBT
     //
     this._HoldBT.DataBindings.Add(new System.Windows.Forms.Binding("Visible", settings1, "EnableHold", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._HoldBT.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._HoldBT.Enabled  = false;
     this._HoldBT.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._HoldBT.Location = new System.Drawing.Point(2, 66);
     this._HoldBT.Margin   = new System.Windows.Forms.Padding(2);
     this._HoldBT.Name     = "_HoldBT";
     this._HoldBT.Size     = new System.Drawing.Size(116, 61);
     this._HoldBT.TabIndex = 2;
     this._HoldBT.Text     = "Retener";
     this._HoldBT.Visible  = settings1.EnableHold;
     this._HoldBT.Click   += new System.EventHandler(this._HoldBT_Click);
     //
     // _TransferBT
     //
     this._TransferBT.DataBindings.Add(new System.Windows.Forms.Binding("Visible", settings1, "EnableTransfer", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._TransferBT.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._TransferBT.Enabled  = false;
     this._TransferBT.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._TransferBT.Location = new System.Drawing.Point(122, 66);
     this._TransferBT.Margin   = new System.Windows.Forms.Padding(2);
     this._TransferBT.Name     = "_TransferBT";
     this._TransferBT.Size     = new System.Drawing.Size(116, 61);
     this._TransferBT.TabIndex = 3;
     this._TransferBT.Text     = "Transferir";
     this._TransferBT.Visible  = settings1.EnableTransfer;
     this._TransferBT.Click   += new System.EventHandler(this._TransferBT_Click);
     //
     // _TlfViewBT
     //
     this._TlfViewBT.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._TlfViewBT.Font     = new System.Drawing.Font("Arial Black", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._TlfViewBT.Location = new System.Drawing.Point(243, 7);
     this._TlfViewBT.Margin   = new System.Windows.Forms.Padding(3, 7, 3, 7);
     this._TlfViewBT.Name     = "_TlfViewBT";
     _TlfFunctionsTLP.SetRowSpan(this._TlfViewBT, 2);
     this._TlfViewBT.Size     = new System.Drawing.Size(88, 115);
     this._TlfViewBT.TabIndex = 4;
     this._TlfViewBT.Text     = "AI";
     this._TlfViewBT.Visible  = false;
     this._TlfViewBT.Click   += new System.EventHandler(this._TlfViewBT_Click);
     //
     // _CancelBT
     //
     this._CancelBT.Dock          = System.Windows.Forms.DockStyle.Fill;
     this._CancelBT.Enabled       = false;
     this._CancelBT.ImageNormal   = global::HMI.Presentation.Urr.Properties.Resources.Anular;
     this._CancelBT.Location      = new System.Drawing.Point(337, 7);
     this._CancelBT.LongClickTout = 5000;
     this._CancelBT.Margin        = new System.Windows.Forms.Padding(3, 7, 3, 7);
     this._CancelBT.Name          = "_CancelBT";
     _TlfFunctionsTLP.SetRowSpan(this._CancelBT, 2);
     this._CancelBT.Size     = new System.Drawing.Size(89, 115);
     this._CancelBT.TabIndex = 5;
     this._CancelBT.Visible  = false;
     this._CancelBT.Click   += new System.EventHandler(this._CancelBT_Click);
     //
     // _SlowBlinkTimer
     //
     this._SlowBlinkTimer.Interval = 500;
     this._SlowBlinkTimer.Tick    += new System.EventHandler(this._SlowBlinkTimer_Tick);
     //
     // _FastBlinkTimer
     //
     this._FastBlinkTimer.Interval = 250;
     this._FastBlinkTimer.Tick    += new System.EventHandler(this._FastBlinkTimer_Tick);
     //
     // TlfFunctionsView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(_TlfFunctionsTLP);
     this.Name = "TlfFunctionsView";
     this.Size = new System.Drawing.Size(429, 129);
     _TlfFunctionsTLP.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 23
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()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
     this._BtnClose          = new HMI.Model.Module.UI.HMIButton();
     this._BtnErase          = new HMI.Model.Module.UI.HMIButton();
     this._BtnPlay           = new HMI.Model.Module.UI.HMIButton();
     this._BtnStop           = new HMI.Model.Module.UI.HMIButton();
     this._LblReplay         = new System.Windows.Forms.Label();
     this._LVSessions        = new System.Windows.Forms.ListView();
     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._PnlViasAudio      = new System.Windows.Forms.Panel();
     this._RBAltavozLC       = new System.Windows.Forms.RadioButton();
     this._RBAltavozRadio    = new System.Windows.Forms.RadioButton();
     this._RBJacksInstructor = new System.Windows.Forms.RadioButton();
     this._RBJacksAlumno     = new System.Windows.Forms.RadioButton();
     this._PBFichero         = new System.Windows.Forms.ProgressBar();
     this._timerPlaying      = new System.Windows.Forms.Timer(this.components);
     this._SlowBlinkTimer    = new System.Windows.Forms.Timer(this.components);
     this._FastBlinkTimer    = new System.Windows.Forms.Timer(this.components);
     tableLayoutPanel1       = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanel1.SuspendLayout();
     this._PnlViasAudio.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.ColumnCount = 2;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 80F));
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
     tableLayoutPanel1.Controls.Add(this._BtnClose, 1, 8);
     tableLayoutPanel1.Controls.Add(this._BtnErase, 1, 3);
     tableLayoutPanel1.Controls.Add(this._BtnPlay, 1, 7);
     tableLayoutPanel1.Controls.Add(this._BtnStop, 1, 6);
     tableLayoutPanel1.Controls.Add(this._LblReplay, 0, 0);
     tableLayoutPanel1.Controls.Add(this._LVSessions, 0, 2);
     tableLayoutPanel1.Controls.Add(this._PnlViasAudio, 1, 0);
     tableLayoutPanel1.Controls.Add(this._PBFichero, 0, 1);
     tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     tableLayoutPanel1.Margin   = new System.Windows.Forms.Padding(0);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 9;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5.772391F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7.54646F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.38302F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.38302F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.38302F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.38302F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.38302F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.38302F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.38302F));
     tableLayoutPanel1.Size     = new System.Drawing.Size(440, 462);
     tableLayoutPanel1.TabIndex = 0;
     //
     // _BtnClose
     //
     this._BtnClose.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._BtnClose.Location = new System.Drawing.Point(355, 407);
     this._BtnClose.Margin   = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this._BtnClose.Name     = "_BtnClose";
     this._BtnClose.Size     = new System.Drawing.Size(82, 50);
     this._BtnClose.TabIndex = 1;
     this._BtnClose.Text     = "Close";
     this._BtnClose.Click   += new System.EventHandler(this._BtnClose_Click);
     //
     // _BtnErase
     //
     this._BtnErase.Dock        = System.Windows.Forms.DockStyle.Fill;
     this._BtnErase.ImageNormal = global::HMI.Presentation.Rabat.Properties.Resources.erase;
     this._BtnErase.Location    = new System.Drawing.Point(355, 234);
     this._BtnErase.Name        = "_BtnErase";
     this._BtnErase.Size        = new System.Drawing.Size(82, 51);
     this._BtnErase.TabIndex    = 2;
     this._BtnErase.Click      += new System.EventHandler(this._BtnErase_Click);
     //
     // _BtnPlay
     //
     this._BtnPlay.Dock        = System.Windows.Forms.DockStyle.Fill;
     this._BtnPlay.ImageNormal = global::HMI.Presentation.Rabat.Properties.Resources.play;
     this._BtnPlay.Location    = new System.Drawing.Point(355, 348);
     this._BtnPlay.Name        = "_BtnPlay";
     this._BtnPlay.Size        = new System.Drawing.Size(82, 51);
     this._BtnPlay.TabIndex    = 3;
     this._BtnPlay.Click      += new System.EventHandler(this._BtnPlay_Click);
     //
     // _BtnStop
     //
     this._BtnStop.Dock        = System.Windows.Forms.DockStyle.Fill;
     this._BtnStop.Enabled     = false;
     this._BtnStop.ImageNormal = global::HMI.Presentation.Rabat.Properties.Resources.stop;
     this._BtnStop.Location    = new System.Drawing.Point(355, 291);
     this._BtnStop.Name        = "_BtnStop";
     this._BtnStop.Size        = new System.Drawing.Size(82, 51);
     this._BtnStop.TabIndex    = 6;
     this._BtnStop.Click      += new System.EventHandler(this._BtnStop_Click);
     //
     // _LblReplay
     //
     this._LblReplay.AutoSize  = true;
     this._LblReplay.BackColor = System.Drawing.Color.Green;
     this._LblReplay.Dock      = System.Windows.Forms.DockStyle.Fill;
     this._LblReplay.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._LblReplay.Location  = new System.Drawing.Point(3, 0);
     this._LblReplay.Name      = "_LblReplay";
     this._LblReplay.Size      = new System.Drawing.Size(346, 26);
     this._LblReplay.TabIndex  = 7;
     this._LblReplay.Text      = "Short Term Recorder";
     this._LblReplay.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // _LVSessions
     //
     this._LVSessions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3
     });
     this._LVSessions.Font          = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._LVSessions.FullRowSelect = true;
     this._LVSessions.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this._LVSessions.HideSelection = false;
     this._LVSessions.Location      = new System.Drawing.Point(3, 63);
     this._LVSessions.MultiSelect   = false;
     this._LVSessions.Name          = "_LVSessions";
     tableLayoutPanel1.SetRowSpan(this._LVSessions, 7);
     this._LVSessions.Size     = new System.Drawing.Size(346, 396);
     this._LVSessions.Sorting  = System.Windows.Forms.SortOrder.Descending;
     this._LVSessions.TabIndex = 8;
     this._LVSessions.UseCompatibleStateImageBehavior = false;
     this._LVSessions.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "Time";
     this.columnHeader1.Width = 115;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Source";
     this.columnHeader2.Width = 80;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "Duration";
     this.columnHeader3.Width = 50;
     //
     // _PnlViasAudio
     //
     this._PnlViasAudio.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this._PnlViasAudio.Controls.Add(this._RBAltavozLC);
     this._PnlViasAudio.Controls.Add(this._RBAltavozRadio);
     this._PnlViasAudio.Controls.Add(this._RBJacksInstructor);
     this._PnlViasAudio.Controls.Add(this._RBJacksAlumno);
     this._PnlViasAudio.Location = new System.Drawing.Point(355, 3);
     this._PnlViasAudio.Name     = "_PnlViasAudio";
     tableLayoutPanel1.SetRowSpan(this._PnlViasAudio, 5);
     this._PnlViasAudio.Size     = new System.Drawing.Size(82, 215);
     this._PnlViasAudio.TabIndex = 9;
     //
     // _RBAltavozLC
     //
     this._RBAltavozLC.AutoSize = true;
     this._RBAltavozLC.Image    = global::HMI.Presentation.Rabat.Properties.Resources.AltavozLC;
     this._RBAltavozLC.Location = new System.Drawing.Point(5, 129);
     this._RBAltavozLC.Name     = "_RBAltavozLC";
     this._RBAltavozLC.Size     = new System.Drawing.Size(46, 32);
     this._RBAltavozLC.TabIndex = 3;
     this._RBAltavozLC.UseVisualStyleBackColor = true;
     //
     // _RBAltavozRadio
     //
     this._RBAltavozRadio.AutoSize = true;
     this._RBAltavozRadio.Image    = global::HMI.Presentation.Rabat.Properties.Resources.AltavozRadio;
     this._RBAltavozRadio.Location = new System.Drawing.Point(5, 87);
     this._RBAltavozRadio.Name     = "_RBAltavozRadio";
     this._RBAltavozRadio.Size     = new System.Drawing.Size(46, 32);
     this._RBAltavozRadio.TabIndex = 2;
     this._RBAltavozRadio.UseVisualStyleBackColor = true;
     //
     // _RBJacksInstructor
     //
     this._RBJacksInstructor.AutoSize = true;
     this._RBJacksInstructor.Image    = global::HMI.Presentation.Rabat.Properties.Resources.CascosInstructor;
     this._RBJacksInstructor.Location = new System.Drawing.Point(5, 45);
     this._RBJacksInstructor.Name     = "_RBJacksInstructor";
     this._RBJacksInstructor.Size     = new System.Drawing.Size(46, 32);
     this._RBJacksInstructor.TabIndex = 1;
     this._RBJacksInstructor.UseVisualStyleBackColor = true;
     //
     // _RBJacksAlumno
     //
     this._RBJacksAlumno.AutoSize = true;
     this._RBJacksAlumno.Checked  = true;
     this._RBJacksAlumno.Image    = global::HMI.Presentation.Rabat.Properties.Resources.CascosAlumno;
     this._RBJacksAlumno.Location = new System.Drawing.Point(5, 3);
     this._RBJacksAlumno.Name     = "_RBJacksAlumno";
     this._RBJacksAlumno.Size     = new System.Drawing.Size(46, 32);
     this._RBJacksAlumno.TabIndex = 0;
     this._RBJacksAlumno.TabStop  = true;
     this._RBJacksAlumno.Tag      = "";
     this._RBJacksAlumno.UseVisualStyleBackColor = true;
     //
     // _PBFichero
     //
     this._PBFichero.Dock      = System.Windows.Forms.DockStyle.Fill;
     this._PBFichero.ForeColor = System.Drawing.Color.Green;
     this._PBFichero.Location  = new System.Drawing.Point(3, 29);
     this._PBFichero.Maximum   = 500;
     this._PBFichero.Name      = "_PBFichero";
     this._PBFichero.Size      = new System.Drawing.Size(346, 28);
     this._PBFichero.Style     = System.Windows.Forms.ProgressBarStyle.Continuous;
     this._PBFichero.TabIndex  = 10;
     //
     // _timerPlaying
     //
     this._timerPlaying.Tick += new System.EventHandler(this.OnTimerPlaying);
     //
     // _SlowBlinkTimer
     //
     this._SlowBlinkTimer.Interval = 250;
     this._SlowBlinkTimer.Tick    += new System.EventHandler(this._SlowBlinkTimer_Tick);
     //
     // _FastBlinkTimer
     //
     this._FastBlinkTimer.Interval = 500;
     this._FastBlinkTimer.Tick    += new System.EventHandler(this._FastBlinkTimer_Tick);
     //
     // ReplyView
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.Controls.Add(tableLayoutPanel1);
     this.Name = "ReplyView";
     this.Size = new System.Drawing.Size(440, 462);
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     this._PnlViasAudio.ResumeLayout(false);
     this._PnlViasAudio.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 24
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.Windows.Forms.TableLayoutPanel tableMainForm;
            System.Windows.Forms.GroupBox groupMain;
            System.Windows.Forms.TableLayoutPanel tableMain;
            System.Windows.Forms.Label labelInputFile;
            System.Windows.Forms.Label labelOutputFile;
            System.Windows.Forms.Button buttonBrowseOut;
            System.Windows.Forms.TabControl tabControlOptions;
            System.Windows.Forms.TabPage tabProcessing;
            System.Windows.Forms.TableLayoutPanel tableProcessing;
            System.Windows.Forms.ToolStrip toolStripProcessing;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            System.Windows.Forms.Panel panelProcessingInput;
            System.Windows.Forms.TabPage tabEncoding;
            System.Windows.Forms.TableLayoutPanel tableEncoding;
            System.Windows.Forms.GroupBox groupEncodingGeneral;
            System.Windows.Forms.TableLayoutPanel tableEncodingGeneral;
            System.Windows.Forms.Label labelGeneralModeVariableHint;
            System.Windows.Forms.Label labelGeneralModeConstantHint;
            System.Windows.Forms.Label labelGeneralMode;
            System.Windows.Forms.Label labelGeneralTitle;
            System.Windows.Forms.Label labelGeneralTitleHint;
            System.Windows.Forms.GroupBox groupEncodingVideo;
            System.Windows.Forms.Panel panelEncodingModeSwapper;
            System.Windows.Forms.Label labelVideoSizeLimit;
            System.Windows.Forms.Label labelVideoSizeLimitUnit;
            System.Windows.Forms.Label labelVideoSizeLimitHint;
            System.Windows.Forms.Label labelVideoBitrate;
            System.Windows.Forms.Label labelVideoBitrateUnit;
            System.Windows.Forms.Label labelVideoBitrateHint;
            System.Windows.Forms.Label labelVideoCrf;
            System.Windows.Forms.Label labelVideoCrfHint;
            System.Windows.Forms.Label labelVideoCrfTolerance;
            System.Windows.Forms.Label labelVideoCrfToleranceHint;
            System.Windows.Forms.Label labelVideoHQHint;
            System.Windows.Forms.GroupBox groupEncodingAudio;
            System.Windows.Forms.TableLayoutPanel tableEncodingAudio;
            System.Windows.Forms.Label labelAudioHint;
            System.Windows.Forms.Panel panelEncodingModeSwapperTwo;
            System.Windows.Forms.Label labelAudioBitrate;
            System.Windows.Forms.Label labelAudioBitrateUnit;
            System.Windows.Forms.Label labelAudioBitrateHint;
            System.Windows.Forms.Label labelAudioQuality;
            System.Windows.Forms.Label labelAudioQualityHint;
            System.Windows.Forms.TabPage tabAdvanced;
            System.Windows.Forms.TableLayoutPanel tableAdvanced;
            System.Windows.Forms.Label labelAdvancedWarning;
            System.Windows.Forms.GroupBox groupAdvancedProcessing;
            System.Windows.Forms.TableLayoutPanel tableAdvancedProcessing;
            System.Windows.Forms.Label labelProcessingLevels;
            System.Windows.Forms.Label labelProcessingLevelsHint;
            System.Windows.Forms.Label labelProcessingDeinterlaceHint;
            System.Windows.Forms.Label labelProcessingDenoiseHint;
            System.Windows.Forms.GroupBox groupAdvancedEncoding;
            System.Windows.Forms.TableLayoutPanel tableAdvancedEncoding;
            System.Windows.Forms.Label labelEncodingFrameRateHint;
            System.Windows.Forms.Label labelEncodingFrameRate;
            System.Windows.Forms.Label labelEncodingNGOVHint;
            System.Windows.Forms.Label labelEncodingThreads;
            System.Windows.Forms.Label labelEncodingThreadsHint;
            System.Windows.Forms.Label labelEncodingSlices;
            System.Windows.Forms.Label labelEncodingSlicesHint;
            System.Windows.Forms.Label labelEncodingArguments;
            System.Windows.Forms.StatusStrip statusStrip;
            this.textBoxIn = new System.Windows.Forms.TextBox();
            this.buttonBrowseIn = new System.Windows.Forms.Button();
            this.textBoxOut = new System.Windows.Forms.TextBox();
            this.buttonGo = new System.Windows.Forms.Button();
            this.buttonTrim = new System.Windows.Forms.ToolStripSplitButton();
            this.buttonMultipleTrim = new System.Windows.Forms.ToolStripMenuItem();
            this.buttonCrop = new System.Windows.Forms.ToolStripButton();
            this.buttonResize = new System.Windows.Forms.ToolStripButton();
            this.buttonSubtitle = new System.Windows.Forms.ToolStripButton();
            this.buttonReverse = new System.Windows.Forms.ToolStripButton();
            this.buttonOverlay = new System.Windows.Forms.ToolStripButton();
            this.buttonCaption = new System.Windows.Forms.ToolStripButton();
            this.boxAdvancedScripting = new System.Windows.Forms.ToolStripButton();
            this.buttonExportProcessing = new System.Windows.Forms.ToolStripButton();
            this.buttonPreview = new System.Windows.Forms.ToolStripButton();
            this.buttonDub = new System.Windows.Forms.ToolStripButton();
            this.listViewProcessingScript = new System.Windows.Forms.ListView();
            this.imageListFilters = new System.Windows.Forms.ImageList(this.components);
            this.textBoxProcessingScript = new System.Windows.Forms.TextBox();
            this.buttonVariableDefault = new System.Windows.Forms.Button();
            this.boxTitle = new System.Windows.Forms.TextBox();
            this.boxConstant = new System.Windows.Forms.RadioButton();
            this.boxVariable = new System.Windows.Forms.RadioButton();
            this.buttonConstantDefault = new System.Windows.Forms.Button();
            this.tableLayoutPanelEncodingVideo = new System.Windows.Forms.TableLayoutPanel();
            this.tableVideoConstantOptions = new System.Windows.Forms.TableLayoutPanel();
            this.boxLimit = new System.Windows.Forms.TextBox();
            this.boxBitrate = new System.Windows.Forms.TextBox();
            this.tableVideoVariableOptions = new System.Windows.Forms.TableLayoutPanel();
            this.numericCrf = new System.Windows.Forms.NumericUpDown();
            this.numericCrfTolerance = new System.Windows.Forms.NumericUpDown();
            this.boxHQ = new System.Windows.Forms.CheckBox();
            this.buttonAudioEnabledDefault = new System.Windows.Forms.Button();
            this.boxAudio = new System.Windows.Forms.CheckBox();
            this.tableAudioConstantOptions = new System.Windows.Forms.TableLayoutPanel();
            this.boxAudioBitrate = new System.Windows.Forms.TextBox();
            this.tableAudioVariableOptions = new System.Windows.Forms.TableLayoutPanel();
            this.numericAudioQuality = new System.Windows.Forms.NumericUpDown();
            this.comboLevels = new System.Windows.Forms.ComboBox();
            this.boxDeinterlace = new System.Windows.Forms.CheckBox();
            this.boxDenoise = new System.Windows.Forms.CheckBox();
            this.boxFrameRate = new System.Windows.Forms.TextBox();
            this.boxNGOV = new System.Windows.Forms.CheckBox();
            this.trackThreads = new System.Windows.Forms.TrackBar();
            this.labelThreads = new System.Windows.Forms.Label();
            this.trackSlices = new System.Windows.Forms.TrackBar();
            this.labelSlices = new System.Windows.Forms.Label();
            this.boxArguments = new System.Windows.Forms.TextBox();
            this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
            this.panelContainTheProgressBar = new System.Windows.Forms.Panel();
            this.boxIndexingProgressDetails = new System.Windows.Forms.CheckBox();
            this.boxIndexingProgress = new System.Windows.Forms.TextBox();
            this.labelIndexingProgress = new System.Windows.Forms.Label();
            this.progressBarIndexing = new System.Windows.Forms.ProgressBar();
            this.panelHideTheOptions = new System.Windows.Forms.Panel();
            this.buttonRate = new System.Windows.Forms.ToolStripButton();
            tableMainForm = new System.Windows.Forms.TableLayoutPanel();
            groupMain = new System.Windows.Forms.GroupBox();
            tableMain = new System.Windows.Forms.TableLayoutPanel();
            labelInputFile = new System.Windows.Forms.Label();
            labelOutputFile = new System.Windows.Forms.Label();
            buttonBrowseOut = new System.Windows.Forms.Button();
            tabControlOptions = new System.Windows.Forms.TabControl();
            tabProcessing = new System.Windows.Forms.TabPage();
            tableProcessing = new System.Windows.Forms.TableLayoutPanel();
            toolStripProcessing = new System.Windows.Forms.ToolStrip();
            panelProcessingInput = new System.Windows.Forms.Panel();
            tabEncoding = new System.Windows.Forms.TabPage();
            tableEncoding = new System.Windows.Forms.TableLayoutPanel();
            groupEncodingGeneral = new System.Windows.Forms.GroupBox();
            tableEncodingGeneral = new System.Windows.Forms.TableLayoutPanel();
            labelGeneralModeVariableHint = new System.Windows.Forms.Label();
            labelGeneralModeConstantHint = new System.Windows.Forms.Label();
            labelGeneralMode = new System.Windows.Forms.Label();
            labelGeneralTitle = new System.Windows.Forms.Label();
            labelGeneralTitleHint = new System.Windows.Forms.Label();
            groupEncodingVideo = new System.Windows.Forms.GroupBox();
            panelEncodingModeSwapper = new System.Windows.Forms.Panel();
            labelVideoSizeLimit = new System.Windows.Forms.Label();
            labelVideoSizeLimitUnit = new System.Windows.Forms.Label();
            labelVideoSizeLimitHint = new System.Windows.Forms.Label();
            labelVideoBitrate = new System.Windows.Forms.Label();
            labelVideoBitrateUnit = new System.Windows.Forms.Label();
            labelVideoBitrateHint = new System.Windows.Forms.Label();
            labelVideoCrf = new System.Windows.Forms.Label();
            labelVideoCrfHint = new System.Windows.Forms.Label();
            labelVideoCrfTolerance = new System.Windows.Forms.Label();
            labelVideoCrfToleranceHint = new System.Windows.Forms.Label();
            labelVideoHQHint = new System.Windows.Forms.Label();
            groupEncodingAudio = new System.Windows.Forms.GroupBox();
            tableEncodingAudio = new System.Windows.Forms.TableLayoutPanel();
            labelAudioHint = new System.Windows.Forms.Label();
            panelEncodingModeSwapperTwo = new System.Windows.Forms.Panel();
            labelAudioBitrate = new System.Windows.Forms.Label();
            labelAudioBitrateUnit = new System.Windows.Forms.Label();
            labelAudioBitrateHint = new System.Windows.Forms.Label();
            labelAudioQuality = new System.Windows.Forms.Label();
            labelAudioQualityHint = new System.Windows.Forms.Label();
            tabAdvanced = new System.Windows.Forms.TabPage();
            tableAdvanced = new System.Windows.Forms.TableLayoutPanel();
            labelAdvancedWarning = new System.Windows.Forms.Label();
            groupAdvancedProcessing = new System.Windows.Forms.GroupBox();
            tableAdvancedProcessing = new System.Windows.Forms.TableLayoutPanel();
            labelProcessingLevels = new System.Windows.Forms.Label();
            labelProcessingLevelsHint = new System.Windows.Forms.Label();
            labelProcessingDeinterlaceHint = new System.Windows.Forms.Label();
            labelProcessingDenoiseHint = new System.Windows.Forms.Label();
            groupAdvancedEncoding = new System.Windows.Forms.GroupBox();
            tableAdvancedEncoding = new System.Windows.Forms.TableLayoutPanel();
            labelEncodingFrameRateHint = new System.Windows.Forms.Label();
            labelEncodingFrameRate = new System.Windows.Forms.Label();
            labelEncodingNGOVHint = new System.Windows.Forms.Label();
            labelEncodingThreads = new System.Windows.Forms.Label();
            labelEncodingThreadsHint = new System.Windows.Forms.Label();
            labelEncodingSlices = new System.Windows.Forms.Label();
            labelEncodingSlicesHint = new System.Windows.Forms.Label();
            labelEncodingArguments = new System.Windows.Forms.Label();
            statusStrip = new System.Windows.Forms.StatusStrip();
            tableMainForm.SuspendLayout();
            groupMain.SuspendLayout();
            tableMain.SuspendLayout();
            tabControlOptions.SuspendLayout();
            tabProcessing.SuspendLayout();
            tableProcessing.SuspendLayout();
            toolStripProcessing.SuspendLayout();
            panelProcessingInput.SuspendLayout();
            tabEncoding.SuspendLayout();
            tableEncoding.SuspendLayout();
            groupEncodingGeneral.SuspendLayout();
            tableEncodingGeneral.SuspendLayout();
            groupEncodingVideo.SuspendLayout();
            this.tableLayoutPanelEncodingVideo.SuspendLayout();
            panelEncodingModeSwapper.SuspendLayout();
            this.tableVideoConstantOptions.SuspendLayout();
            this.tableVideoVariableOptions.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericCrf)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericCrfTolerance)).BeginInit();
            groupEncodingAudio.SuspendLayout();
            tableEncodingAudio.SuspendLayout();
            panelEncodingModeSwapperTwo.SuspendLayout();
            this.tableAudioConstantOptions.SuspendLayout();
            this.tableAudioVariableOptions.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericAudioQuality)).BeginInit();
            tabAdvanced.SuspendLayout();
            tableAdvanced.SuspendLayout();
            groupAdvancedProcessing.SuspendLayout();
            tableAdvancedProcessing.SuspendLayout();
            groupAdvancedEncoding.SuspendLayout();
            tableAdvancedEncoding.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackThreads)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackSlices)).BeginInit();
            statusStrip.SuspendLayout();
            this.panelContainTheProgressBar.SuspendLayout();
            this.panelHideTheOptions.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableMainForm
            // 
            tableMainForm.ColumnCount = 1;
            tableMainForm.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableMainForm.Controls.Add(groupMain, 0, 0);
            tableMainForm.Controls.Add(tabControlOptions, 0, 1);
            tableMainForm.Dock = System.Windows.Forms.DockStyle.Fill;
            tableMainForm.Location = new System.Drawing.Point(3, 3);
            tableMainForm.Name = "tableMainForm";
            tableMainForm.RowCount = 3;
            tableMainForm.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 84F));
            tableMainForm.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableMainForm.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            tableMainForm.Size = new System.Drawing.Size(1067, 443);
            tableMainForm.TabIndex = 0;
            // 
            // groupMain
            // 
            groupMain.Controls.Add(tableMain);
            groupMain.Dock = System.Windows.Forms.DockStyle.Fill;
            groupMain.Location = new System.Drawing.Point(3, 3);
            groupMain.Name = "groupMain";
            groupMain.Size = new System.Drawing.Size(1061, 78);
            groupMain.TabIndex = 0;
            groupMain.TabStop = false;
            groupMain.Text = "Main";
            // 
            // tableMain
            // 
            tableMain.ColumnCount = 4;
            tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 69F));
            tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 68F));
            tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 77F));
            tableMain.Controls.Add(labelInputFile, 0, 0);
            tableMain.Controls.Add(this.textBoxIn, 1, 0);
            tableMain.Controls.Add(this.buttonBrowseIn, 2, 0);
            tableMain.Controls.Add(labelOutputFile, 0, 1);
            tableMain.Controls.Add(this.textBoxOut, 1, 1);
            tableMain.Controls.Add(buttonBrowseOut, 2, 1);
            tableMain.Controls.Add(this.buttonGo, 3, 0);
            tableMain.Dock = System.Windows.Forms.DockStyle.Fill;
            tableMain.Location = new System.Drawing.Point(3, 16);
            tableMain.Name = "tableMain";
            tableMain.RowCount = 2;
            tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableMain.Size = new System.Drawing.Size(1055, 59);
            tableMain.TabIndex = 0;
            // 
            // labelInputFile
            // 
            labelInputFile.AutoSize = true;
            labelInputFile.Dock = System.Windows.Forms.DockStyle.Fill;
            labelInputFile.Location = new System.Drawing.Point(3, 0);
            labelInputFile.Name = "labelInputFile";
            labelInputFile.Size = new System.Drawing.Size(63, 29);
            labelInputFile.TabIndex = 0;
            labelInputFile.Text = "Input file:";
            labelInputFile.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // textBoxIn
            // 
            this.textBoxIn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.textBoxIn.Location = new System.Drawing.Point(72, 4);
            this.textBoxIn.Name = "textBoxIn";
            this.textBoxIn.Size = new System.Drawing.Size(835, 20);
            this.textBoxIn.TabIndex = 1;
            // 
            // buttonBrowseIn
            // 
            this.buttonBrowseIn.Dock = System.Windows.Forms.DockStyle.Fill;
            this.buttonBrowseIn.Location = new System.Drawing.Point(913, 3);
            this.buttonBrowseIn.Name = "buttonBrowseIn";
            this.buttonBrowseIn.Size = new System.Drawing.Size(62, 23);
            this.buttonBrowseIn.TabIndex = 2;
            this.buttonBrowseIn.Text = "Browse";
            this.buttonBrowseIn.UseVisualStyleBackColor = true;
            this.buttonBrowseIn.Click += new System.EventHandler(this.buttonBrowseIn_Click);
            // 
            // labelOutputFile
            // 
            labelOutputFile.AutoSize = true;
            labelOutputFile.Dock = System.Windows.Forms.DockStyle.Fill;
            labelOutputFile.Location = new System.Drawing.Point(3, 29);
            labelOutputFile.Name = "labelOutputFile";
            labelOutputFile.Size = new System.Drawing.Size(63, 30);
            labelOutputFile.TabIndex = 0;
            labelOutputFile.Text = "Output file:";
            labelOutputFile.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // textBoxOut
            // 
            this.textBoxOut.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.textBoxOut.Location = new System.Drawing.Point(72, 34);
            this.textBoxOut.Name = "textBoxOut";
            this.textBoxOut.Size = new System.Drawing.Size(835, 20);
            this.textBoxOut.TabIndex = 3;
            // 
            // buttonBrowseOut
            // 
            buttonBrowseOut.Dock = System.Windows.Forms.DockStyle.Fill;
            buttonBrowseOut.Location = new System.Drawing.Point(913, 32);
            buttonBrowseOut.Name = "buttonBrowseOut";
            buttonBrowseOut.Size = new System.Drawing.Size(62, 24);
            buttonBrowseOut.TabIndex = 4;
            buttonBrowseOut.Text = "Browse";
            buttonBrowseOut.UseVisualStyleBackColor = true;
            buttonBrowseOut.Click += new System.EventHandler(this.buttonBrowseOut_Click);
            // 
            // buttonGo
            // 
            this.buttonGo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.buttonGo.Enabled = false;
            this.buttonGo.Location = new System.Drawing.Point(981, 3);
            this.buttonGo.Name = "buttonGo";
            tableMain.SetRowSpan(this.buttonGo, 2);
            this.buttonGo.Size = new System.Drawing.Size(71, 53);
            this.buttonGo.TabIndex = 5;
            this.buttonGo.Text = "Convert";
            this.buttonGo.UseVisualStyleBackColor = true;
            this.buttonGo.Click += new System.EventHandler(this.buttonGo_Click);
            // 
            // tabControlOptions
            // 
            tabControlOptions.Controls.Add(tabProcessing);
            tabControlOptions.Controls.Add(tabEncoding);
            tabControlOptions.Controls.Add(tabAdvanced);
            tabControlOptions.Dock = System.Windows.Forms.DockStyle.Fill;
            tabControlOptions.Location = new System.Drawing.Point(3, 87);
            tabControlOptions.Name = "tabControlOptions";
            tabControlOptions.SelectedIndex = 0;
            tabControlOptions.Size = new System.Drawing.Size(1061, 333);
            tabControlOptions.TabIndex = 1;
            // 
            // tabProcessing
            // 
            tabProcessing.Controls.Add(tableProcessing);
            tabProcessing.Location = new System.Drawing.Point(4, 22);
            tabProcessing.Name = "tabProcessing";
            tabProcessing.Padding = new System.Windows.Forms.Padding(3);
            tabProcessing.Size = new System.Drawing.Size(1053, 307);
            tabProcessing.TabIndex = 3;
            tabProcessing.Text = "Processing";
            // 
            // tableProcessing
            // 
            tableProcessing.ColumnCount = 1;
            tableProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableProcessing.Controls.Add(toolStripProcessing, 0, 0);
            tableProcessing.Controls.Add(panelProcessingInput, 0, 1);
            tableProcessing.Dock = System.Windows.Forms.DockStyle.Fill;
            tableProcessing.Location = new System.Drawing.Point(3, 3);
            tableProcessing.Name = "tableProcessing";
            tableProcessing.RowCount = 2;
            tableProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            tableProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableProcessing.Size = new System.Drawing.Size(1047, 301);
            tableProcessing.TabIndex = 0;
            // 
            // toolStripProcessing
            // 
            toolStripProcessing.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            toolStripProcessing.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.buttonTrim,
            this.buttonCrop,
            this.buttonResize,
            this.buttonSubtitle,
            this.buttonReverse,
            this.buttonOverlay,
            this.buttonCaption,
            this.boxAdvancedScripting,
            this.buttonExportProcessing,
            this.buttonPreview,
            this.buttonDub,
            this.buttonRate});
            toolStripProcessing.Location = new System.Drawing.Point(0, 0);
            toolStripProcessing.Name = "toolStripProcessing";
            toolStripProcessing.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
            toolStripProcessing.ShowItemToolTips = false;
            toolStripProcessing.Size = new System.Drawing.Size(1047, 25);
            toolStripProcessing.TabIndex = 0;
            toolStripProcessing.TabStop = true;
            // 
            // buttonTrim
            // 
            this.buttonTrim.AccessibleDescription = "Select a clip from your video.";
            this.buttonTrim.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.buttonMultipleTrim});
            this.buttonTrim.Enabled = false;
            this.buttonTrim.Margin = new System.Windows.Forms.Padding(0, 1, 3, 2);
            this.buttonTrim.Name = "buttonTrim";
            this.buttonTrim.Size = new System.Drawing.Size(48, 22);
            this.buttonTrim.Text = "Trim";
            this.buttonTrim.ButtonClick += new System.EventHandler(this.buttonTrim_Click);
            this.buttonTrim.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.buttonTrim.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // buttonMultipleTrim
            // 
            this.buttonMultipleTrim.AccessibleDescription = "Select many clips from your video, and sort them on a timeline.";
            this.buttonMultipleTrim.Name = "buttonMultipleTrim";
            this.buttonMultipleTrim.Size = new System.Drawing.Size(152, 22);
            this.buttonMultipleTrim.Text = "Multiple Trim";
            this.buttonMultipleTrim.Click += new System.EventHandler(this.buttonMultipleTrim_Click);
            this.buttonMultipleTrim.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.buttonMultipleTrim.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // buttonCrop
            // 
            this.buttonCrop.AccessibleDescription = "Crop your video into a smaller frame.";
            this.buttonCrop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.buttonCrop.Enabled = false;
            this.buttonCrop.Name = "buttonCrop";
            this.buttonCrop.Size = new System.Drawing.Size(37, 22);
            this.buttonCrop.Text = "Crop";
            this.buttonCrop.Click += new System.EventHandler(this.buttonCrop_Click);
            this.buttonCrop.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.buttonCrop.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // buttonResize
            // 
            this.buttonResize.AccessibleDescription = "Scale your video.";
            this.buttonResize.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.buttonResize.Enabled = false;
            this.buttonResize.Name = "buttonResize";
            this.buttonResize.Size = new System.Drawing.Size(43, 22);
            this.buttonResize.Text = "Resize";
            this.buttonResize.Click += new System.EventHandler(this.buttonResize_Click);
            this.buttonResize.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.buttonResize.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // buttonSubtitle
            // 
            this.buttonSubtitle.AccessibleDescription = "Burn subtitles into the video.";
            this.buttonSubtitle.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.buttonSubtitle.Enabled = false;
            this.buttonSubtitle.Name = "buttonSubtitle";
            this.buttonSubtitle.Size = new System.Drawing.Size(56, 22);
            this.buttonSubtitle.Text = "Subtitles";
            this.buttonSubtitle.Click += new System.EventHandler(this.buttonSubtitle_Click);
            this.buttonSubtitle.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.buttonSubtitle.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // buttonReverse
            // 
            this.buttonReverse.AccessibleDescription = "Everything is backwards!";
            this.buttonReverse.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.buttonReverse.Enabled = false;
            this.buttonReverse.Name = "buttonReverse";
            this.buttonReverse.Size = new System.Drawing.Size(51, 22);
            this.buttonReverse.Text = "Reverse";
            this.buttonReverse.Click += new System.EventHandler(this.buttonReverse_Click);
            this.buttonReverse.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.buttonReverse.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // buttonOverlay
            // 
            this.buttonOverlay.AccessibleDescription = "Overlay a picture on top of your video.";
            this.buttonOverlay.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.buttonOverlay.Enabled = false;
            this.buttonOverlay.Name = "buttonOverlay";
            this.buttonOverlay.Size = new System.Drawing.Size(51, 22);
            this.buttonOverlay.Text = "Overlay";
            this.buttonOverlay.Click += new System.EventHandler(this.buttonOverlay_Click);
            this.buttonOverlay.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.buttonOverlay.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // buttonCaption
            // 
            this.buttonCaption.AccessibleDescription = "Add some funny text to your video.";
            this.buttonCaption.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.buttonCaption.Enabled = false;
            this.buttonCaption.Name = "buttonCaption";
            this.buttonCaption.Size = new System.Drawing.Size(53, 22);
            this.buttonCaption.Text = "Caption";
            this.buttonCaption.Click += new System.EventHandler(this.buttonCaption_Click);
            this.buttonCaption.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.buttonCaption.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // boxAdvancedScripting
            // 
            this.boxAdvancedScripting.AccessibleDescription = "Are you a bad enough dude? Take care, there is no way back. You will have to star" +
    "t over if you f**k up.";
            this.boxAdvancedScripting.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.boxAdvancedScripting.Name = "boxAdvancedScripting";
            this.boxAdvancedScripting.Size = new System.Drawing.Size(64, 22);
            this.boxAdvancedScripting.Text = "Advanced";
            this.boxAdvancedScripting.Click += new System.EventHandler(this.boxAdvancedScripting_Click);
            this.boxAdvancedScripting.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.boxAdvancedScripting.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // buttonExportProcessing
            // 
            this.buttonExportProcessing.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.buttonExportProcessing.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.buttonExportProcessing.Enabled = false;
            this.buttonExportProcessing.Image = ((System.Drawing.Image)(resources.GetObject("buttonExportProcessing.Image")));
            this.buttonExportProcessing.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.buttonExportProcessing.Name = "buttonExportProcessing";
            this.buttonExportProcessing.Size = new System.Drawing.Size(44, 22);
            this.buttonExportProcessing.Text = "Export";
            this.buttonExportProcessing.Click += new System.EventHandler(this.buttonExportProcessing_Click);
            // 
            // buttonPreview
            // 
            this.buttonPreview.AccessibleDescription = "Open a preview window that will loop your processing settings. Note that this doe" +
    "sn\'t reflect output encoding quality.";
            this.buttonPreview.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.buttonPreview.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.buttonPreview.Enabled = false;
            this.buttonPreview.Name = "buttonPreview";
            this.buttonPreview.Size = new System.Drawing.Size(84, 22);
            this.buttonPreview.Text = "Preview filters";
            this.buttonPreview.Click += new System.EventHandler(this.buttonPreview_Click);
            this.buttonPreview.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.buttonPreview.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // buttonDub
            // 
            this.buttonDub.AccessibleDescription = "Add or replace the audio on your video.";
            this.buttonDub.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.buttonDub.Enabled = false;
            this.buttonDub.Name = "buttonDub";
            this.buttonDub.Size = new System.Drawing.Size(33, 22);
            this.buttonDub.Text = "Dub";
            this.buttonDub.Click += new System.EventHandler(this.buttonDub_Click);
            this.buttonDub.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.buttonDub.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // panelProcessingInput
            // 
            panelProcessingInput.Controls.Add(this.listViewProcessingScript);
            panelProcessingInput.Controls.Add(this.textBoxProcessingScript);
            panelProcessingInput.Dock = System.Windows.Forms.DockStyle.Fill;
            panelProcessingInput.Location = new System.Drawing.Point(0, 25);
            panelProcessingInput.Margin = new System.Windows.Forms.Padding(0);
            panelProcessingInput.Name = "panelProcessingInput";
            panelProcessingInput.Size = new System.Drawing.Size(1047, 276);
            panelProcessingInput.TabIndex = 1;
            // 
            // listViewProcessingScript
            // 
            this.listViewProcessingScript.AccessibleDescription = "Double click a filter to edit it. Select a filter and press Delete to remove it.";
            this.listViewProcessingScript.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listViewProcessingScript.LargeImageList = this.imageListFilters;
            this.listViewProcessingScript.Location = new System.Drawing.Point(0, 0);
            this.listViewProcessingScript.Margin = new System.Windows.Forms.Padding(0);
            this.listViewProcessingScript.Name = "listViewProcessingScript";
            this.listViewProcessingScript.Size = new System.Drawing.Size(1047, 276);
            this.listViewProcessingScript.TabIndex = 3;
            this.listViewProcessingScript.UseCompatibleStateImageBehavior = false;
            this.listViewProcessingScript.ItemActivate += new System.EventHandler(this.listViewProcessingScript_ItemActivate);
            this.listViewProcessingScript.KeyUp += new System.Windows.Forms.KeyEventHandler(this.listViewProcessingScript_KeyUp);
            this.listViewProcessingScript.MouseEnter += new System.EventHandler(this.ControlTooltip);
            this.listViewProcessingScript.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // imageListFilters
            // 
            this.imageListFilters.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListFilters.ImageStream")));
            this.imageListFilters.TransparentColor = System.Drawing.Color.Transparent;
            this.imageListFilters.Images.SetKeyName(0, "Trim");
            this.imageListFilters.Images.SetKeyName(1, "Crop");
            this.imageListFilters.Images.SetKeyName(2, "Subtitles");
            this.imageListFilters.Images.SetKeyName(3, "Reverse");
            this.imageListFilters.Images.SetKeyName(4, "Resize");
            this.imageListFilters.Images.SetKeyName(5, "Overlay");
            this.imageListFilters.Images.SetKeyName(6, "Caption");
            this.imageListFilters.Images.SetKeyName(7, "Dub");
            this.imageListFilters.Images.SetKeyName(8, "Rate");
            // 
            // textBoxProcessingScript
            // 
            this.textBoxProcessingScript.AcceptsReturn = true;
            this.textBoxProcessingScript.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textBoxProcessingScript.Location = new System.Drawing.Point(0, 0);
            this.textBoxProcessingScript.Margin = new System.Windows.Forms.Padding(0);
            this.textBoxProcessingScript.Multiline = true;
            this.textBoxProcessingScript.Name = "textBoxProcessingScript";
            this.textBoxProcessingScript.Size = new System.Drawing.Size(1047, 276);
            this.textBoxProcessingScript.TabIndex = 2;
            this.textBoxProcessingScript.Text = "# This is an AviSynth script. You may write advanced commands below, or just pres" +
    "s the buttons above for smooth sailing.";
            this.textBoxProcessingScript.Visible = false;
            this.textBoxProcessingScript.Leave += new System.EventHandler(this.textBoxProcessingScript_Leave);
            // 
            // tabEncoding
            // 
            tabEncoding.BackColor = System.Drawing.SystemColors.Control;
            tabEncoding.Controls.Add(tableEncoding);
            tabEncoding.Location = new System.Drawing.Point(4, 22);
            tabEncoding.Name = "tabEncoding";
            tabEncoding.Padding = new System.Windows.Forms.Padding(3);
            tabEncoding.Size = new System.Drawing.Size(1053, 307);
            tabEncoding.TabIndex = 0;
            tabEncoding.Text = "Encoding";
            // 
            // tableEncoding
            // 
            tableEncoding.ColumnCount = 1;
            tableEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableEncoding.Controls.Add(groupEncodingGeneral, 0, 0);
            tableEncoding.Controls.Add(groupEncodingVideo, 0, 1);
            tableEncoding.Controls.Add(groupEncodingAudio, 0, 2);
            tableEncoding.Dock = System.Windows.Forms.DockStyle.Fill;
            tableEncoding.Location = new System.Drawing.Point(3, 3);
            tableEncoding.Name = "tableEncoding";
            tableEncoding.RowCount = 4;
            tableEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 107F));
            tableEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 107F));
            tableEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 79F));
            tableEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableEncoding.Size = new System.Drawing.Size(1047, 301);
            tableEncoding.TabIndex = 0;
            // 
            // groupEncodingGeneral
            // 
            groupEncodingGeneral.Controls.Add(tableEncodingGeneral);
            groupEncodingGeneral.Dock = System.Windows.Forms.DockStyle.Fill;
            groupEncodingGeneral.Location = new System.Drawing.Point(3, 3);
            groupEncodingGeneral.Name = "groupEncodingGeneral";
            groupEncodingGeneral.Size = new System.Drawing.Size(1041, 101);
            groupEncodingGeneral.TabIndex = 1;
            groupEncodingGeneral.TabStop = false;
            groupEncodingGeneral.Text = "General";
            // 
            // tableEncodingGeneral
            // 
            tableEncodingGeneral.ColumnCount = 5;
            tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F));
            tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 88F));
            tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
            tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 248F));
            tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableEncodingGeneral.Controls.Add(this.buttonVariableDefault, 2, 2);
            tableEncodingGeneral.Controls.Add(labelGeneralModeVariableHint, 3, 2);
            tableEncodingGeneral.Controls.Add(labelGeneralModeConstantHint, 3, 1);
            tableEncodingGeneral.Controls.Add(labelGeneralMode, 0, 1);
            tableEncodingGeneral.Controls.Add(labelGeneralTitle, 0, 0);
            tableEncodingGeneral.Controls.Add(this.boxTitle, 1, 0);
            tableEncodingGeneral.Controls.Add(labelGeneralTitleHint, 4, 0);
            tableEncodingGeneral.Controls.Add(this.boxConstant, 1, 1);
            tableEncodingGeneral.Controls.Add(this.boxVariable, 1, 2);
            tableEncodingGeneral.Controls.Add(this.buttonConstantDefault, 2, 1);
            tableEncodingGeneral.Dock = System.Windows.Forms.DockStyle.Fill;
            tableEncodingGeneral.Location = new System.Drawing.Point(3, 16);
            tableEncodingGeneral.Name = "tableEncodingGeneral";
            tableEncodingGeneral.RowCount = 3;
            tableEncodingGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableEncodingGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableEncodingGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableEncodingGeneral.Size = new System.Drawing.Size(1035, 82);
            tableEncodingGeneral.TabIndex = 0;
            // 
            // buttonVariableDefault
            // 
            this.buttonVariableDefault.Dock = System.Windows.Forms.DockStyle.Fill;
            this.buttonVariableDefault.Location = new System.Drawing.Point(170, 59);
            this.buttonVariableDefault.Name = "buttonVariableDefault";
            this.buttonVariableDefault.Size = new System.Drawing.Size(54, 22);
            this.buttonVariableDefault.TabIndex = 5;
            this.buttonVariableDefault.Text = "Default";
            this.buttonVariableDefault.UseVisualStyleBackColor = true;
            this.buttonVariableDefault.Visible = false;
            this.buttonVariableDefault.Click += new System.EventHandler(this.buttonVariableDefault_Click);
            // 
            // labelGeneralModeVariableHint
            // 
            labelGeneralModeVariableHint.AutoSize = true;
            tableEncodingGeneral.SetColumnSpan(labelGeneralModeVariableHint, 2);
            labelGeneralModeVariableHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelGeneralModeVariableHint.Location = new System.Drawing.Point(230, 56);
            labelGeneralModeVariableHint.Name = "labelGeneralModeVariableHint";
            labelGeneralModeVariableHint.Size = new System.Drawing.Size(802, 28);
            labelGeneralModeVariableHint.TabIndex = 0;
            labelGeneralModeVariableHint.Text = "This will make your video get the size it deserves to look good.";
            labelGeneralModeVariableHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelGeneralModeConstantHint
            // 
            labelGeneralModeConstantHint.AutoSize = true;
            tableEncodingGeneral.SetColumnSpan(labelGeneralModeConstantHint, 2);
            labelGeneralModeConstantHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelGeneralModeConstantHint.Location = new System.Drawing.Point(230, 28);
            labelGeneralModeConstantHint.Name = "labelGeneralModeConstantHint";
            labelGeneralModeConstantHint.Size = new System.Drawing.Size(802, 28);
            labelGeneralModeConstantHint.TabIndex = 0;
            labelGeneralModeConstantHint.Text = "This will make your video have a specific filesize, and suffer lower quality to m" +
    "atch that size.";
            labelGeneralModeConstantHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelGeneralMode
            // 
            labelGeneralMode.AutoSize = true;
            labelGeneralMode.Dock = System.Windows.Forms.DockStyle.Fill;
            labelGeneralMode.Location = new System.Drawing.Point(3, 28);
            labelGeneralMode.Name = "labelGeneralMode";
            labelGeneralMode.Size = new System.Drawing.Size(73, 28);
            labelGeneralMode.TabIndex = 0;
            labelGeneralMode.Text = "Mode:";
            labelGeneralMode.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // labelGeneralTitle
            // 
            labelGeneralTitle.AutoSize = true;
            labelGeneralTitle.Dock = System.Windows.Forms.DockStyle.Fill;
            labelGeneralTitle.Location = new System.Drawing.Point(3, 0);
            labelGeneralTitle.Name = "labelGeneralTitle";
            labelGeneralTitle.Size = new System.Drawing.Size(73, 28);
            labelGeneralTitle.TabIndex = 0;
            labelGeneralTitle.Text = "Title:";
            labelGeneralTitle.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // boxTitle
            // 
            this.boxTitle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            tableEncodingGeneral.SetColumnSpan(this.boxTitle, 3);
            this.boxTitle.Location = new System.Drawing.Point(82, 4);
            this.boxTitle.Name = "boxTitle";
            this.boxTitle.Size = new System.Drawing.Size(390, 20);
            this.boxTitle.TabIndex = 1;
            this.boxTitle.TextChanged += new System.EventHandler(this.UpdateArguments);
            // 
            // labelGeneralTitleHint
            // 
            labelGeneralTitleHint.AutoSize = true;
            labelGeneralTitleHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelGeneralTitleHint.Location = new System.Drawing.Point(478, 0);
            labelGeneralTitleHint.Name = "labelGeneralTitleHint";
            labelGeneralTitleHint.Size = new System.Drawing.Size(554, 28);
            labelGeneralTitleHint.TabIndex = 0;
            labelGeneralTitleHint.Text = "Adds a string of text to the metadata of the video, which can be used to indicate" +
    " the source of a video, for example. Leave blank for no title.";
            labelGeneralTitleHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // boxConstant
            // 
            this.boxConstant.AutoSize = true;
            this.boxConstant.Checked = true;
            this.boxConstant.Dock = System.Windows.Forms.DockStyle.Fill;
            this.boxConstant.Location = new System.Drawing.Point(82, 31);
            this.boxConstant.Name = "boxConstant";
            this.boxConstant.Size = new System.Drawing.Size(82, 22);
            this.boxConstant.TabIndex = 2;
            this.boxConstant.TabStop = true;
            this.boxConstant.Text = "Constant";
            this.boxConstant.UseVisualStyleBackColor = true;
            this.boxConstant.CheckedChanged += new System.EventHandler(this.boxConstant_CheckedChanged);
            // 
            // boxVariable
            // 
            this.boxVariable.AutoSize = true;
            this.boxVariable.Dock = System.Windows.Forms.DockStyle.Fill;
            this.boxVariable.Location = new System.Drawing.Point(82, 59);
            this.boxVariable.Name = "boxVariable";
            this.boxVariable.Size = new System.Drawing.Size(82, 22);
            this.boxVariable.TabIndex = 3;
            this.boxVariable.Text = "Variable";
            this.boxVariable.UseVisualStyleBackColor = true;
            this.boxVariable.CheckedChanged += new System.EventHandler(this.boxVariable_CheckedChanged);
            // 
            // buttonConstantDefault
            // 
            this.buttonConstantDefault.Dock = System.Windows.Forms.DockStyle.Fill;
            this.buttonConstantDefault.Location = new System.Drawing.Point(170, 31);
            this.buttonConstantDefault.Name = "buttonConstantDefault";
            this.buttonConstantDefault.Size = new System.Drawing.Size(54, 22);
            this.buttonConstantDefault.TabIndex = 4;
            this.buttonConstantDefault.Text = "Default";
            this.buttonConstantDefault.UseVisualStyleBackColor = true;
            this.buttonConstantDefault.Visible = false;
            this.buttonConstantDefault.Click += new System.EventHandler(this.buttonConstantDefault_Click);
            // 
            // groupEncodingVideo
            // 
            groupEncodingVideo.Controls.Add(this.tableLayoutPanelEncodingVideo);
            groupEncodingVideo.Dock = System.Windows.Forms.DockStyle.Fill;
            groupEncodingVideo.Location = new System.Drawing.Point(3, 110);
            groupEncodingVideo.Name = "groupEncodingVideo";
            groupEncodingVideo.Size = new System.Drawing.Size(1041, 101);
            groupEncodingVideo.TabIndex = 2;
            groupEncodingVideo.TabStop = false;
            groupEncodingVideo.Text = "Video";
            // 
            // tableLayoutPanelEncodingVideo
            // 
            this.tableLayoutPanelEncodingVideo.ColumnCount = 4;
            this.tableLayoutPanelEncodingVideo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F));
            this.tableLayoutPanelEncodingVideo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F));
            this.tableLayoutPanelEncodingVideo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanelEncodingVideo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanelEncodingVideo.Controls.Add(panelEncodingModeSwapper, 0, 1);
            this.tableLayoutPanelEncodingVideo.Controls.Add(this.boxHQ, 0, 0);
            this.tableLayoutPanelEncodingVideo.Controls.Add(labelVideoHQHint, 3, 0);
            this.tableLayoutPanelEncodingVideo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanelEncodingVideo.Location = new System.Drawing.Point(3, 16);
            this.tableLayoutPanelEncodingVideo.Name = "tableLayoutPanelEncodingVideo";
            this.tableLayoutPanelEncodingVideo.RowCount = 3;
            this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanelEncodingVideo.Size = new System.Drawing.Size(1035, 82);
            this.tableLayoutPanelEncodingVideo.TabIndex = 0;
            // 
            // panelEncodingModeSwapper
            // 
            this.tableLayoutPanelEncodingVideo.SetColumnSpan(panelEncodingModeSwapper, 4);
            panelEncodingModeSwapper.Controls.Add(this.tableVideoConstantOptions);
            panelEncodingModeSwapper.Controls.Add(this.tableVideoVariableOptions);
            panelEncodingModeSwapper.Dock = System.Windows.Forms.DockStyle.Fill;
            panelEncodingModeSwapper.Location = new System.Drawing.Point(0, 28);
            panelEncodingModeSwapper.Margin = new System.Windows.Forms.Padding(0);
            panelEncodingModeSwapper.Name = "panelEncodingModeSwapper";
            this.tableLayoutPanelEncodingVideo.SetRowSpan(panelEncodingModeSwapper, 2);
            panelEncodingModeSwapper.Size = new System.Drawing.Size(1035, 56);
            panelEncodingModeSwapper.TabIndex = 2;
            // 
            // tableVideoConstantOptions
            // 
            this.tableVideoConstantOptions.ColumnCount = 4;
            this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F));
            this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F));
            this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableVideoConstantOptions.Controls.Add(labelVideoSizeLimit, 0, 0);
            this.tableVideoConstantOptions.Controls.Add(this.boxLimit, 1, 0);
            this.tableVideoConstantOptions.Controls.Add(labelVideoSizeLimitUnit, 2, 0);
            this.tableVideoConstantOptions.Controls.Add(labelVideoSizeLimitHint, 3, 0);
            this.tableVideoConstantOptions.Controls.Add(labelVideoBitrate, 0, 1);
            this.tableVideoConstantOptions.Controls.Add(this.boxBitrate, 1, 1);
            this.tableVideoConstantOptions.Controls.Add(labelVideoBitrateUnit, 2, 1);
            this.tableVideoConstantOptions.Controls.Add(labelVideoBitrateHint, 3, 1);
            this.tableVideoConstantOptions.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableVideoConstantOptions.Location = new System.Drawing.Point(0, 0);
            this.tableVideoConstantOptions.Margin = new System.Windows.Forms.Padding(0);
            this.tableVideoConstantOptions.Name = "tableVideoConstantOptions";
            this.tableVideoConstantOptions.RowCount = 2;
            this.tableVideoConstantOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.tableVideoConstantOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.tableVideoConstantOptions.Size = new System.Drawing.Size(1035, 56);
            this.tableVideoConstantOptions.TabIndex = 0;
            // 
            // labelVideoSizeLimit
            // 
            labelVideoSizeLimit.AutoSize = true;
            labelVideoSizeLimit.Dock = System.Windows.Forms.DockStyle.Fill;
            labelVideoSizeLimit.Location = new System.Drawing.Point(3, 0);
            labelVideoSizeLimit.Name = "labelVideoSizeLimit";
            labelVideoSizeLimit.Size = new System.Drawing.Size(73, 28);
            labelVideoSizeLimit.TabIndex = 0;
            labelVideoSizeLimit.Text = "Size limit:";
            labelVideoSizeLimit.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // boxLimit
            // 
            this.boxLimit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.boxLimit.Location = new System.Drawing.Point(82, 4);
            this.boxLimit.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.boxLimit.Name = "boxLimit";
            this.boxLimit.Size = new System.Drawing.Size(115, 20);
            this.boxLimit.TabIndex = 1;
            this.boxLimit.TextChanged += new System.EventHandler(this.UpdateArguments);
            this.boxLimit.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxNumbersOnly);
            // 
            // labelVideoSizeLimitUnit
            // 
            labelVideoSizeLimitUnit.AutoSize = true;
            labelVideoSizeLimitUnit.Dock = System.Windows.Forms.DockStyle.Fill;
            labelVideoSizeLimitUnit.Location = new System.Drawing.Point(197, 0);
            labelVideoSizeLimitUnit.Margin = new System.Windows.Forms.Padding(0);
            labelVideoSizeLimitUnit.Name = "labelVideoSizeLimitUnit";
            labelVideoSizeLimitUnit.Size = new System.Drawing.Size(30, 28);
            labelVideoSizeLimitUnit.TabIndex = 0;
            labelVideoSizeLimitUnit.Text = "MiB";
            labelVideoSizeLimitUnit.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelVideoSizeLimitHint
            // 
            labelVideoSizeLimitHint.AutoSize = true;
            labelVideoSizeLimitHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelVideoSizeLimitHint.Location = new System.Drawing.Point(230, 0);
            labelVideoSizeLimitHint.Name = "labelVideoSizeLimitHint";
            labelVideoSizeLimitHint.Size = new System.Drawing.Size(802, 28);
            labelVideoSizeLimitHint.TabIndex = 0;
            labelVideoSizeLimitHint.Text = "Will adjust the quality to attempt to stay below this limit, and cut off the end " +
    "of a video if needed. Leave blank for no limit. The limit on 4chan is 3 MB.";
            labelVideoSizeLimitHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelVideoBitrate
            // 
            labelVideoBitrate.AutoSize = true;
            labelVideoBitrate.Dock = System.Windows.Forms.DockStyle.Fill;
            labelVideoBitrate.Location = new System.Drawing.Point(3, 28);
            labelVideoBitrate.Name = "labelVideoBitrate";
            labelVideoBitrate.Size = new System.Drawing.Size(73, 28);
            labelVideoBitrate.TabIndex = 0;
            labelVideoBitrate.Text = "Bitrate:";
            labelVideoBitrate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // boxBitrate
            // 
            this.boxBitrate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.boxBitrate.Location = new System.Drawing.Point(82, 32);
            this.boxBitrate.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.boxBitrate.Name = "boxBitrate";
            this.boxBitrate.Size = new System.Drawing.Size(115, 20);
            this.boxBitrate.TabIndex = 2;
            this.boxBitrate.TextChanged += new System.EventHandler(this.UpdateArguments);
            this.boxBitrate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxNumbersOnly);
            // 
            // labelVideoBitrateUnit
            // 
            labelVideoBitrateUnit.AutoSize = true;
            labelVideoBitrateUnit.Dock = System.Windows.Forms.DockStyle.Fill;
            labelVideoBitrateUnit.Location = new System.Drawing.Point(197, 28);
            labelVideoBitrateUnit.Margin = new System.Windows.Forms.Padding(0);
            labelVideoBitrateUnit.Name = "labelVideoBitrateUnit";
            labelVideoBitrateUnit.Size = new System.Drawing.Size(30, 28);
            labelVideoBitrateUnit.TabIndex = 0;
            labelVideoBitrateUnit.Text = "Kb/s";
            labelVideoBitrateUnit.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelVideoBitrateHint
            // 
            labelVideoBitrateHint.AutoSize = true;
            labelVideoBitrateHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelVideoBitrateHint.Location = new System.Drawing.Point(230, 28);
            labelVideoBitrateHint.Name = "labelVideoBitrateHint";
            labelVideoBitrateHint.Size = new System.Drawing.Size(802, 28);
            labelVideoBitrateHint.TabIndex = 0;
            labelVideoBitrateHint.Text = "Determines the quality of the video. Keep blank to let the program pick one based" +
    " on size limit and duration.";
            labelVideoBitrateHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // tableVideoVariableOptions
            // 
            this.tableVideoVariableOptions.ColumnCount = 4;
            this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F));
            this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F));
            this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableVideoVariableOptions.Controls.Add(labelVideoCrf, 0, 0);
            this.tableVideoVariableOptions.Controls.Add(this.numericCrf, 1, 0);
            this.tableVideoVariableOptions.Controls.Add(labelVideoCrfHint, 3, 0);
            this.tableVideoVariableOptions.Controls.Add(labelVideoCrfTolerance, 0, 1);
            this.tableVideoVariableOptions.Controls.Add(this.numericCrfTolerance, 1, 1);
            this.tableVideoVariableOptions.Controls.Add(labelVideoCrfToleranceHint, 4, 1);
            this.tableVideoVariableOptions.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableVideoVariableOptions.Location = new System.Drawing.Point(0, 0);
            this.tableVideoVariableOptions.Margin = new System.Windows.Forms.Padding(0);
            this.tableVideoVariableOptions.Name = "tableVideoVariableOptions";
            this.tableVideoVariableOptions.RowCount = 2;
            this.tableVideoVariableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.tableVideoVariableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.tableVideoVariableOptions.Size = new System.Drawing.Size(1035, 56);
            this.tableVideoVariableOptions.TabIndex = 0;
            // 
            // labelVideoCrf
            // 
            labelVideoCrf.AutoSize = true;
            labelVideoCrf.Dock = System.Windows.Forms.DockStyle.Fill;
            labelVideoCrf.Location = new System.Drawing.Point(3, 0);
            labelVideoCrf.Name = "labelVideoCrf";
            labelVideoCrf.Size = new System.Drawing.Size(73, 28);
            labelVideoCrf.TabIndex = 0;
            labelVideoCrf.Text = "CRF:";
            labelVideoCrf.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // numericCrf
            // 
            this.tableVideoVariableOptions.SetColumnSpan(this.numericCrf, 2);
            this.numericCrf.Dock = System.Windows.Forms.DockStyle.Fill;
            this.numericCrf.Location = new System.Drawing.Point(82, 3);
            this.numericCrf.Maximum = new decimal(new int[] {
            63,
            0,
            0,
            0});
            this.numericCrf.Name = "numericCrf";
            this.numericCrf.Size = new System.Drawing.Size(142, 20);
            this.numericCrf.TabIndex = 1;
            this.numericCrf.TabStop = false;
            this.numericCrf.Value = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.numericCrf.ValueChanged += new System.EventHandler(this.UpdateArguments);
            // 
            // labelVideoCrfHint
            // 
            labelVideoCrfHint.AutoSize = true;
            labelVideoCrfHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelVideoCrfHint.Location = new System.Drawing.Point(230, 0);
            labelVideoCrfHint.Name = "labelVideoCrfHint";
            labelVideoCrfHint.Size = new System.Drawing.Size(802, 28);
            labelVideoCrfHint.TabIndex = 0;
            labelVideoCrfHint.Text = "The constant rate factor of the video determines what level of quality the video " +
    "should get.";
            labelVideoCrfHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelVideoCrfTolerance
            // 
            labelVideoCrfTolerance.AutoSize = true;
            labelVideoCrfTolerance.Dock = System.Windows.Forms.DockStyle.Fill;
            labelVideoCrfTolerance.Location = new System.Drawing.Point(3, 28);
            labelVideoCrfTolerance.Name = "labelVideoCrfTolerance";
            labelVideoCrfTolerance.Size = new System.Drawing.Size(73, 28);
            labelVideoCrfTolerance.TabIndex = 0;
            labelVideoCrfTolerance.Text = "Tolerance:";
            labelVideoCrfTolerance.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // numericCrfTolerance
            // 
            this.tableVideoVariableOptions.SetColumnSpan(this.numericCrfTolerance, 2);
            this.numericCrfTolerance.Dock = System.Windows.Forms.DockStyle.Fill;
            this.numericCrfTolerance.Location = new System.Drawing.Point(82, 31);
            this.numericCrfTolerance.Maximum = new decimal(new int[] {
            63,
            0,
            0,
            0});
            this.numericCrfTolerance.Name = "numericCrfTolerance";
            this.numericCrfTolerance.Size = new System.Drawing.Size(142, 20);
            this.numericCrfTolerance.TabIndex = 2;
            this.numericCrfTolerance.TabStop = false;
            this.numericCrfTolerance.Value = new decimal(new int[] {
            20,
            0,
            0,
            0});
            this.numericCrfTolerance.ValueChanged += new System.EventHandler(this.UpdateArguments);
            // 
            // labelVideoCrfToleranceHint
            // 
            labelVideoCrfToleranceHint.AutoSize = true;
            labelVideoCrfToleranceHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelVideoCrfToleranceHint.Location = new System.Drawing.Point(230, 28);
            labelVideoCrfToleranceHint.Name = "labelVideoCrfToleranceHint";
            labelVideoCrfToleranceHint.Size = new System.Drawing.Size(802, 28);
            labelVideoCrfToleranceHint.TabIndex = 0;
            labelVideoCrfToleranceHint.Text = "This value determines how far the encoder is allowed to stray from the CRF value " +
    "in order to not waste too many bits on some frames.";
            labelVideoCrfToleranceHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // boxHQ
            // 
            this.boxHQ.AutoSize = true;
            this.boxHQ.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.tableLayoutPanelEncodingVideo.SetColumnSpan(this.boxHQ, 3);
            this.boxHQ.Dock = System.Windows.Forms.DockStyle.Fill;
            this.boxHQ.Location = new System.Drawing.Point(6, 3);
            this.boxHQ.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3);
            this.boxHQ.Name = "boxHQ";
            this.boxHQ.Size = new System.Drawing.Size(215, 22);
            this.boxHQ.TabIndex = 1;
            this.boxHQ.Text = "Enable high quality mode:";
            this.boxHQ.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.boxHQ.UseVisualStyleBackColor = true;
            this.boxHQ.CheckedChanged += new System.EventHandler(this.UpdateArguments);
            // 
            // labelVideoHQHint
            // 
            labelVideoHQHint.AutoSize = true;
            labelVideoHQHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelVideoHQHint.Location = new System.Drawing.Point(230, 0);
            labelVideoHQHint.Name = "labelVideoHQHint";
            labelVideoHQHint.Size = new System.Drawing.Size(802, 28);
            labelVideoHQHint.TabIndex = 0;
            labelVideoHQHint.Text = "Enables two-pass encoding and adds some extra encoding arguments, increasing outp" +
    "ut quality, but increases the time it takes to encode your file.";
            labelVideoHQHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // groupEncodingAudio
            // 
            groupEncodingAudio.Controls.Add(tableEncodingAudio);
            groupEncodingAudio.Dock = System.Windows.Forms.DockStyle.Fill;
            groupEncodingAudio.Location = new System.Drawing.Point(3, 217);
            groupEncodingAudio.Name = "groupEncodingAudio";
            groupEncodingAudio.Size = new System.Drawing.Size(1041, 73);
            groupEncodingAudio.TabIndex = 3;
            groupEncodingAudio.TabStop = false;
            groupEncodingAudio.Text = "Audio";
            // 
            // tableEncodingAudio
            // 
            tableEncodingAudio.ColumnCount = 5;
            tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F));
            tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 88F));
            tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableEncodingAudio.Controls.Add(this.buttonAudioEnabledDefault, 2, 0);
            tableEncodingAudio.Controls.Add(this.boxAudio, 0, 0);
            tableEncodingAudio.Controls.Add(labelAudioHint, 4, 0);
            tableEncodingAudio.Controls.Add(panelEncodingModeSwapperTwo, 0, 1);
            tableEncodingAudio.Dock = System.Windows.Forms.DockStyle.Fill;
            tableEncodingAudio.Location = new System.Drawing.Point(3, 16);
            tableEncodingAudio.Margin = new System.Windows.Forms.Padding(0);
            tableEncodingAudio.Name = "tableEncodingAudio";
            tableEncodingAudio.RowCount = 2;
            tableEncodingAudio.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableEncodingAudio.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableEncodingAudio.Size = new System.Drawing.Size(1035, 54);
            tableEncodingAudio.TabIndex = 0;
            // 
            // buttonAudioEnabledDefault
            // 
            tableEncodingAudio.SetColumnSpan(this.buttonAudioEnabledDefault, 2);
            this.buttonAudioEnabledDefault.Dock = System.Windows.Forms.DockStyle.Fill;
            this.buttonAudioEnabledDefault.Location = new System.Drawing.Point(170, 3);
            this.buttonAudioEnabledDefault.Name = "buttonAudioEnabledDefault";
            this.buttonAudioEnabledDefault.Size = new System.Drawing.Size(54, 22);
            this.buttonAudioEnabledDefault.TabIndex = 6;
            this.buttonAudioEnabledDefault.Text = "Default";
            this.buttonAudioEnabledDefault.UseVisualStyleBackColor = true;
            this.buttonAudioEnabledDefault.Visible = false;
            this.buttonAudioEnabledDefault.Click += new System.EventHandler(this.buttonAudioEnabledDefault_Click);
            // 
            // boxAudio
            // 
            this.boxAudio.AutoSize = true;
            this.boxAudio.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            tableEncodingAudio.SetColumnSpan(this.boxAudio, 2);
            this.boxAudio.Dock = System.Windows.Forms.DockStyle.Fill;
            this.boxAudio.Location = new System.Drawing.Point(6, 3);
            this.boxAudio.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3);
            this.boxAudio.Name = "boxAudio";
            this.boxAudio.Size = new System.Drawing.Size(155, 22);
            this.boxAudio.TabIndex = 1;
            this.boxAudio.Text = "Enable audio:";
            this.boxAudio.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.boxAudio.UseVisualStyleBackColor = true;
            this.boxAudio.CheckedChanged += new System.EventHandler(this.boxAudio_CheckedChanged);
            // 
            // labelAudioHint
            // 
            labelAudioHint.AutoSize = true;
            labelAudioHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelAudioHint.Location = new System.Drawing.Point(230, 0);
            labelAudioHint.Name = "labelAudioHint";
            labelAudioHint.Size = new System.Drawing.Size(802, 28);
            labelAudioHint.TabIndex = 0;
            labelAudioHint.Text = "Do you want a WebM with sound? You found the setting for it.";
            labelAudioHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // panelEncodingModeSwapperTwo
            // 
            tableEncodingAudio.SetColumnSpan(panelEncodingModeSwapperTwo, 5);
            panelEncodingModeSwapperTwo.Controls.Add(this.tableAudioConstantOptions);
            panelEncodingModeSwapperTwo.Controls.Add(this.tableAudioVariableOptions);
            panelEncodingModeSwapperTwo.Dock = System.Windows.Forms.DockStyle.Fill;
            panelEncodingModeSwapperTwo.Location = new System.Drawing.Point(0, 28);
            panelEncodingModeSwapperTwo.Margin = new System.Windows.Forms.Padding(0);
            panelEncodingModeSwapperTwo.Name = "panelEncodingModeSwapperTwo";
            panelEncodingModeSwapperTwo.Size = new System.Drawing.Size(1035, 28);
            panelEncodingModeSwapperTwo.TabIndex = 2;
            // 
            // tableAudioConstantOptions
            // 
            this.tableAudioConstantOptions.ColumnCount = 4;
            this.tableAudioConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F));
            this.tableAudioConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F));
            this.tableAudioConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableAudioConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableAudioConstantOptions.Controls.Add(labelAudioBitrate, 0, 0);
            this.tableAudioConstantOptions.Controls.Add(this.boxAudioBitrate, 1, 0);
            this.tableAudioConstantOptions.Controls.Add(labelAudioBitrateUnit, 2, 0);
            this.tableAudioConstantOptions.Controls.Add(labelAudioBitrateHint, 4, 0);
            this.tableAudioConstantOptions.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableAudioConstantOptions.Location = new System.Drawing.Point(0, 0);
            this.tableAudioConstantOptions.Margin = new System.Windows.Forms.Padding(0);
            this.tableAudioConstantOptions.Name = "tableAudioConstantOptions";
            this.tableAudioConstantOptions.RowCount = 1;
            this.tableAudioConstantOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableAudioConstantOptions.Size = new System.Drawing.Size(1035, 28);
            this.tableAudioConstantOptions.TabIndex = 0;
            // 
            // labelAudioBitrate
            // 
            labelAudioBitrate.AutoSize = true;
            labelAudioBitrate.Dock = System.Windows.Forms.DockStyle.Fill;
            labelAudioBitrate.Location = new System.Drawing.Point(3, 0);
            labelAudioBitrate.Name = "labelAudioBitrate";
            labelAudioBitrate.Size = new System.Drawing.Size(73, 28);
            labelAudioBitrate.TabIndex = 0;
            labelAudioBitrate.Text = "Bitrate:";
            labelAudioBitrate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // boxAudioBitrate
            // 
            this.boxAudioBitrate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.boxAudioBitrate.Enabled = false;
            this.boxAudioBitrate.Location = new System.Drawing.Point(82, 4);
            this.boxAudioBitrate.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.boxAudioBitrate.Name = "boxAudioBitrate";
            this.boxAudioBitrate.Size = new System.Drawing.Size(115, 20);
            this.boxAudioBitrate.TabIndex = 1;
            this.boxAudioBitrate.TextChanged += new System.EventHandler(this.UpdateArguments);
            this.boxAudioBitrate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxNumbersOnly);
            // 
            // labelAudioBitrateUnit
            // 
            labelAudioBitrateUnit.AutoSize = true;
            labelAudioBitrateUnit.Dock = System.Windows.Forms.DockStyle.Fill;
            labelAudioBitrateUnit.Location = new System.Drawing.Point(197, 0);
            labelAudioBitrateUnit.Margin = new System.Windows.Forms.Padding(0);
            labelAudioBitrateUnit.Name = "labelAudioBitrateUnit";
            labelAudioBitrateUnit.Size = new System.Drawing.Size(30, 28);
            labelAudioBitrateUnit.TabIndex = 0;
            labelAudioBitrateUnit.Text = "Kb/s";
            labelAudioBitrateUnit.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelAudioBitrateHint
            // 
            labelAudioBitrateHint.AutoSize = true;
            labelAudioBitrateHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelAudioBitrateHint.Location = new System.Drawing.Point(230, 0);
            labelAudioBitrateHint.Name = "labelAudioBitrateHint";
            labelAudioBitrateHint.Size = new System.Drawing.Size(802, 28);
            labelAudioBitrateHint.TabIndex = 0;
            labelAudioBitrateHint.Text = "Determines the quality of the audio.";
            labelAudioBitrateHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // tableAudioVariableOptions
            // 
            this.tableAudioVariableOptions.ColumnCount = 4;
            this.tableAudioVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F));
            this.tableAudioVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F));
            this.tableAudioVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableAudioVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableAudioVariableOptions.Controls.Add(labelAudioQuality, 0, 0);
            this.tableAudioVariableOptions.Controls.Add(this.numericAudioQuality, 1, 0);
            this.tableAudioVariableOptions.Controls.Add(labelAudioQualityHint, 4, 0);
            this.tableAudioVariableOptions.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableAudioVariableOptions.Location = new System.Drawing.Point(0, 0);
            this.tableAudioVariableOptions.Margin = new System.Windows.Forms.Padding(0);
            this.tableAudioVariableOptions.Name = "tableAudioVariableOptions";
            this.tableAudioVariableOptions.RowCount = 1;
            this.tableAudioVariableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableAudioVariableOptions.Size = new System.Drawing.Size(1035, 28);
            this.tableAudioVariableOptions.TabIndex = 0;
            // 
            // labelAudioQuality
            // 
            labelAudioQuality.AutoSize = true;
            labelAudioQuality.Dock = System.Windows.Forms.DockStyle.Fill;
            labelAudioQuality.Location = new System.Drawing.Point(3, 0);
            labelAudioQuality.Name = "labelAudioQuality";
            labelAudioQuality.Size = new System.Drawing.Size(73, 28);
            labelAudioQuality.TabIndex = 0;
            labelAudioQuality.Text = "Quality:";
            labelAudioQuality.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // numericAudioQuality
            // 
            this.tableAudioVariableOptions.SetColumnSpan(this.numericAudioQuality, 2);
            this.numericAudioQuality.Dock = System.Windows.Forms.DockStyle.Fill;
            this.numericAudioQuality.Enabled = false;
            this.numericAudioQuality.Location = new System.Drawing.Point(82, 3);
            this.numericAudioQuality.Maximum = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.numericAudioQuality.Name = "numericAudioQuality";
            this.numericAudioQuality.Size = new System.Drawing.Size(142, 20);
            this.numericAudioQuality.TabIndex = 1;
            this.numericAudioQuality.TabStop = false;
            this.numericAudioQuality.Value = new decimal(new int[] {
            3,
            0,
            0,
            0});
            this.numericAudioQuality.ValueChanged += new System.EventHandler(this.UpdateArguments);
            // 
            // labelAudioQualityHint
            // 
            labelAudioQualityHint.AutoSize = true;
            labelAudioQualityHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelAudioQualityHint.Location = new System.Drawing.Point(230, 0);
            labelAudioQualityHint.Name = "labelAudioQualityHint";
            labelAudioQualityHint.Size = new System.Drawing.Size(802, 28);
            labelAudioQualityHint.TabIndex = 0;
            labelAudioQualityHint.Text = "Determines the average quality of the audio. 10 is the highest quality.";
            labelAudioQualityHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // tabAdvanced
            // 
            tabAdvanced.AutoScroll = true;
            tabAdvanced.BackColor = System.Drawing.SystemColors.Control;
            tabAdvanced.Controls.Add(tableAdvanced);
            tabAdvanced.Location = new System.Drawing.Point(4, 22);
            tabAdvanced.Name = "tabAdvanced";
            tabAdvanced.Padding = new System.Windows.Forms.Padding(3);
            tabAdvanced.Size = new System.Drawing.Size(1053, 307);
            tabAdvanced.TabIndex = 4;
            tabAdvanced.Text = "Advanced";
            // 
            // tableAdvanced
            // 
            tableAdvanced.ColumnCount = 1;
            tableAdvanced.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableAdvanced.Controls.Add(labelAdvancedWarning, 0, 0);
            tableAdvanced.Controls.Add(groupAdvancedProcessing, 0, 1);
            tableAdvanced.Controls.Add(groupAdvancedEncoding, 0, 2);
            tableAdvanced.Dock = System.Windows.Forms.DockStyle.Fill;
            tableAdvanced.Location = new System.Drawing.Point(3, 3);
            tableAdvanced.Name = "tableAdvanced";
            tableAdvanced.RowCount = 4;
            tableAdvanced.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableAdvanced.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 107F));
            tableAdvanced.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 163F));
            tableAdvanced.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableAdvanced.Size = new System.Drawing.Size(1047, 301);
            tableAdvanced.TabIndex = 1;
            // 
            // labelAdvancedWarning
            // 
            labelAdvancedWarning.AutoSize = true;
            tableAdvanced.SetColumnSpan(labelAdvancedWarning, 3);
            labelAdvancedWarning.Dock = System.Windows.Forms.DockStyle.Fill;
            labelAdvancedWarning.Location = new System.Drawing.Point(3, 3);
            labelAdvancedWarning.Margin = new System.Windows.Forms.Padding(3);
            labelAdvancedWarning.Name = "labelAdvancedWarning";
            labelAdvancedWarning.Size = new System.Drawing.Size(1041, 22);
            labelAdvancedWarning.TabIndex = 0;
            labelAdvancedWarning.Text = "Do not modify these settings unless you are 100% sure you know what you\'re doing." +
    "";
            labelAdvancedWarning.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // groupAdvancedProcessing
            // 
            groupAdvancedProcessing.Controls.Add(tableAdvancedProcessing);
            groupAdvancedProcessing.Dock = System.Windows.Forms.DockStyle.Fill;
            groupAdvancedProcessing.Location = new System.Drawing.Point(3, 31);
            groupAdvancedProcessing.Name = "groupAdvancedProcessing";
            groupAdvancedProcessing.Size = new System.Drawing.Size(1041, 101);
            groupAdvancedProcessing.TabIndex = 1;
            groupAdvancedProcessing.TabStop = false;
            groupAdvancedProcessing.Text = "Processing";
            // 
            // tableAdvancedProcessing
            // 
            tableAdvancedProcessing.ColumnCount = 3;
            tableAdvancedProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F));
            tableAdvancedProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 148F));
            tableAdvancedProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableAdvancedProcessing.Controls.Add(labelProcessingLevels, 0, 0);
            tableAdvancedProcessing.Controls.Add(this.comboLevels, 1, 0);
            tableAdvancedProcessing.Controls.Add(labelProcessingLevelsHint, 2, 0);
            tableAdvancedProcessing.Controls.Add(this.boxDeinterlace, 0, 1);
            tableAdvancedProcessing.Controls.Add(labelProcessingDeinterlaceHint, 2, 1);
            tableAdvancedProcessing.Controls.Add(this.boxDenoise, 0, 2);
            tableAdvancedProcessing.Controls.Add(labelProcessingDenoiseHint, 2, 2);
            tableAdvancedProcessing.Dock = System.Windows.Forms.DockStyle.Fill;
            tableAdvancedProcessing.Location = new System.Drawing.Point(3, 16);
            tableAdvancedProcessing.Name = "tableAdvancedProcessing";
            tableAdvancedProcessing.RowCount = 3;
            tableAdvancedProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableAdvancedProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableAdvancedProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableAdvancedProcessing.Size = new System.Drawing.Size(1035, 82);
            tableAdvancedProcessing.TabIndex = 1;
            // 
            // labelProcessingLevels
            // 
            labelProcessingLevels.AutoSize = true;
            labelProcessingLevels.Dock = System.Windows.Forms.DockStyle.Fill;
            labelProcessingLevels.Location = new System.Drawing.Point(3, 0);
            labelProcessingLevels.Name = "labelProcessingLevels";
            labelProcessingLevels.Size = new System.Drawing.Size(73, 28);
            labelProcessingLevels.TabIndex = 0;
            labelProcessingLevels.Text = "Color levels:";
            labelProcessingLevels.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // comboLevels
            // 
            this.comboLevels.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.comboLevels.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboLevels.Items.AddRange(new object[] {
            "Leave them alone",
            "Expand (TV -> PC)",
            "Contract (PC -> TV)"});
            this.comboLevels.Location = new System.Drawing.Point(82, 3);
            this.comboLevels.Name = "comboLevels";
            this.comboLevels.Size = new System.Drawing.Size(142, 21);
            this.comboLevels.TabIndex = 1;
            this.comboLevels.SelectedIndexChanged += new System.EventHandler(this.comboLevels_SelectedIndexChanged);
            // 
            // labelProcessingLevelsHint
            // 
            labelProcessingLevelsHint.AutoSize = true;
            labelProcessingLevelsHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelProcessingLevelsHint.Location = new System.Drawing.Point(230, 0);
            labelProcessingLevelsHint.Name = "labelProcessingLevelsHint";
            labelProcessingLevelsHint.Size = new System.Drawing.Size(802, 28);
            labelProcessingLevelsHint.TabIndex = 0;
            labelProcessingLevelsHint.Text = "If your video looks either too dark or too light, this may be the fault of the in" +
    "put color range being whack. You can manually fix this by using this option.";
            labelProcessingLevelsHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // boxDeinterlace
            // 
            this.boxDeinterlace.AutoSize = true;
            this.boxDeinterlace.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            tableAdvancedProcessing.SetColumnSpan(this.boxDeinterlace, 2);
            this.boxDeinterlace.Dock = System.Windows.Forms.DockStyle.Fill;
            this.boxDeinterlace.Location = new System.Drawing.Point(3, 31);
            this.boxDeinterlace.Name = "boxDeinterlace";
            this.boxDeinterlace.Size = new System.Drawing.Size(221, 22);
            this.boxDeinterlace.TabIndex = 2;
            this.boxDeinterlace.Text = "Deinterlace:";
            this.boxDeinterlace.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.boxDeinterlace.UseVisualStyleBackColor = true;
            this.boxDeinterlace.CheckedChanged += new System.EventHandler(this.boxDeinterlace_CheckedChanged);
            // 
            // labelProcessingDeinterlaceHint
            // 
            labelProcessingDeinterlaceHint.AutoSize = true;
            labelProcessingDeinterlaceHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelProcessingDeinterlaceHint.Location = new System.Drawing.Point(230, 28);
            labelProcessingDeinterlaceHint.Name = "labelProcessingDeinterlaceHint";
            labelProcessingDeinterlaceHint.Size = new System.Drawing.Size(802, 28);
            labelProcessingDeinterlaceHint.TabIndex = 0;
            labelProcessingDeinterlaceHint.Text = "Attempt to deinterlace an interlaced input video.";
            labelProcessingDeinterlaceHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // boxDenoise
            // 
            this.boxDenoise.AutoSize = true;
            this.boxDenoise.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            tableAdvancedProcessing.SetColumnSpan(this.boxDenoise, 2);
            this.boxDenoise.Dock = System.Windows.Forms.DockStyle.Fill;
            this.boxDenoise.Location = new System.Drawing.Point(3, 59);
            this.boxDenoise.Name = "boxDenoise";
            this.boxDenoise.Size = new System.Drawing.Size(221, 22);
            this.boxDenoise.TabIndex = 3;
            this.boxDenoise.Text = "Denoise:";
            this.boxDenoise.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.boxDenoise.UseVisualStyleBackColor = true;
            this.boxDenoise.CheckedChanged += new System.EventHandler(this.boxDenoise_CheckedChanged);
            // 
            // labelProcessingDenoiseHint
            // 
            labelProcessingDenoiseHint.AutoSize = true;
            labelProcessingDenoiseHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelProcessingDenoiseHint.Location = new System.Drawing.Point(230, 56);
            labelProcessingDenoiseHint.Name = "labelProcessingDenoiseHint";
            labelProcessingDenoiseHint.Size = new System.Drawing.Size(802, 28);
            labelProcessingDenoiseHint.TabIndex = 0;
            labelProcessingDenoiseHint.Text = "Denoise the video, resulting in less detailed video but more bang for your buck w" +
    "hen it comes to bitrate.";
            labelProcessingDenoiseHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // groupAdvancedEncoding
            // 
            groupAdvancedEncoding.AutoSize = true;
            groupAdvancedEncoding.Controls.Add(tableAdvancedEncoding);
            groupAdvancedEncoding.Dock = System.Windows.Forms.DockStyle.Fill;
            groupAdvancedEncoding.Location = new System.Drawing.Point(3, 138);
            groupAdvancedEncoding.Name = "groupAdvancedEncoding";
            groupAdvancedEncoding.Size = new System.Drawing.Size(1041, 157);
            groupAdvancedEncoding.TabIndex = 2;
            groupAdvancedEncoding.TabStop = false;
            groupAdvancedEncoding.Text = "Encoding";
            // 
            // tableAdvancedEncoding
            // 
            tableAdvancedEncoding.ColumnCount = 4;
            tableAdvancedEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F));
            tableAdvancedEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F));
            tableAdvancedEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            tableAdvancedEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableAdvancedEncoding.Controls.Add(this.boxFrameRate, 1, 2);
            tableAdvancedEncoding.Controls.Add(labelEncodingFrameRateHint, 3, 2);
            tableAdvancedEncoding.Controls.Add(labelEncodingFrameRate, 0, 2);
            tableAdvancedEncoding.Controls.Add(labelEncodingNGOVHint, 3, 3);
            tableAdvancedEncoding.Controls.Add(this.boxNGOV, 0, 3);
            tableAdvancedEncoding.Controls.Add(labelEncodingThreads, 0, 0);
            tableAdvancedEncoding.Controls.Add(this.trackThreads, 1, 0);
            tableAdvancedEncoding.Controls.Add(this.labelThreads, 2, 0);
            tableAdvancedEncoding.Controls.Add(labelEncodingThreadsHint, 3, 0);
            tableAdvancedEncoding.Controls.Add(labelEncodingSlices, 0, 1);
            tableAdvancedEncoding.Controls.Add(this.trackSlices, 1, 1);
            tableAdvancedEncoding.Controls.Add(this.labelSlices, 2, 1);
            tableAdvancedEncoding.Controls.Add(labelEncodingSlicesHint, 3, 1);
            tableAdvancedEncoding.Controls.Add(labelEncodingArguments, 0, 4);
            tableAdvancedEncoding.Controls.Add(this.boxArguments, 1, 4);
            tableAdvancedEncoding.Dock = System.Windows.Forms.DockStyle.Fill;
            tableAdvancedEncoding.Location = new System.Drawing.Point(3, 16);
            tableAdvancedEncoding.Name = "tableAdvancedEncoding";
            tableAdvancedEncoding.RowCount = 5;
            tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            tableAdvancedEncoding.Size = new System.Drawing.Size(1035, 138);
            tableAdvancedEncoding.TabIndex = 0;
            // 
            // boxFrameRate
            // 
            this.boxFrameRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            tableAdvancedEncoding.SetColumnSpan(this.boxFrameRate, 2);
            this.boxFrameRate.Location = new System.Drawing.Point(82, 60);
            this.boxFrameRate.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.boxFrameRate.Name = "boxFrameRate";
            this.boxFrameRate.Size = new System.Drawing.Size(145, 20);
            this.boxFrameRate.TabIndex = 8;
            this.boxFrameRate.TextChanged += new System.EventHandler(this.UpdateArguments);
            this.boxFrameRate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxNumbersOnly);
            // 
            // labelEncodingFrameRateHint
            // 
            labelEncodingFrameRateHint.AutoSize = true;
            labelEncodingFrameRateHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelEncodingFrameRateHint.Location = new System.Drawing.Point(230, 56);
            labelEncodingFrameRateHint.Name = "labelEncodingFrameRateHint";
            labelEncodingFrameRateHint.Size = new System.Drawing.Size(802, 28);
            labelEncodingFrameRateHint.TabIndex = 7;
            labelEncodingFrameRateHint.Text = "If you want to change the frame rate of your video, input your desired frame rate" +
    " here. Keep blank to leave the frame rate alone.";
            labelEncodingFrameRateHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelEncodingFrameRate
            // 
            labelEncodingFrameRate.AutoSize = true;
            labelEncodingFrameRate.Dock = System.Windows.Forms.DockStyle.Fill;
            labelEncodingFrameRate.Location = new System.Drawing.Point(3, 56);
            labelEncodingFrameRate.Name = "labelEncodingFrameRate";
            labelEncodingFrameRate.Size = new System.Drawing.Size(73, 28);
            labelEncodingFrameRate.TabIndex = 6;
            labelEncodingFrameRate.Text = "Frame rate:";
            labelEncodingFrameRate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // labelEncodingNGOVHint
            // 
            labelEncodingNGOVHint.AutoSize = true;
            labelEncodingNGOVHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelEncodingNGOVHint.Location = new System.Drawing.Point(230, 84);
            labelEncodingNGOVHint.Name = "labelEncodingNGOVHint";
            labelEncodingNGOVHint.Size = new System.Drawing.Size(802, 28);
            labelEncodingNGOVHint.TabIndex = 0;
            labelEncodingNGOVHint.Text = "Use the next-gen VP9/Opus encoders instead of the standard VP8/Vorbis. Will resul" +
    "t in extremely long encoding times and less compatibility.\r\nKeep this disabled u" +
    "ntil Moot allows VP9 WebMs.";
            labelEncodingNGOVHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // boxNGOV
            // 
            this.boxNGOV.AutoSize = true;
            this.boxNGOV.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            tableAdvancedEncoding.SetColumnSpan(this.boxNGOV, 3);
            this.boxNGOV.Dock = System.Windows.Forms.DockStyle.Fill;
            this.boxNGOV.Location = new System.Drawing.Point(3, 87);
            this.boxNGOV.Name = "boxNGOV";
            this.boxNGOV.Size = new System.Drawing.Size(221, 22);
            this.boxNGOV.TabIndex = 4;
            this.boxNGOV.Text = "VP9/Opus:";
            this.boxNGOV.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.boxNGOV.UseVisualStyleBackColor = true;
            this.boxNGOV.CheckedChanged += new System.EventHandler(this.boxNGOV_CheckedChanged);
            // 
            // labelEncodingThreads
            // 
            labelEncodingThreads.AutoSize = true;
            labelEncodingThreads.Dock = System.Windows.Forms.DockStyle.Fill;
            labelEncodingThreads.Location = new System.Drawing.Point(3, 0);
            labelEncodingThreads.Name = "labelEncodingThreads";
            labelEncodingThreads.Size = new System.Drawing.Size(73, 28);
            labelEncodingThreads.TabIndex = 0;
            labelEncodingThreads.Text = "Threads:";
            labelEncodingThreads.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // trackThreads
            // 
            this.trackThreads.Dock = System.Windows.Forms.DockStyle.Fill;
            this.trackThreads.Location = new System.Drawing.Point(79, 0);
            this.trackThreads.Margin = new System.Windows.Forms.Padding(0);
            this.trackThreads.Maximum = 16;
            this.trackThreads.Minimum = 1;
            this.trackThreads.Name = "trackThreads";
            this.trackThreads.Size = new System.Drawing.Size(118, 28);
            this.trackThreads.TabIndex = 1;
            this.trackThreads.Value = 1;
            this.trackThreads.ValueChanged += new System.EventHandler(this.trackThreads_ValueChanged);
            // 
            // labelThreads
            // 
            this.labelThreads.AutoSize = true;
            this.labelThreads.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelThreads.Location = new System.Drawing.Point(197, 0);
            this.labelThreads.Margin = new System.Windows.Forms.Padding(0);
            this.labelThreads.Name = "labelThreads";
            this.labelThreads.Size = new System.Drawing.Size(30, 28);
            this.labelThreads.TabIndex = 0;
            this.labelThreads.Text = "1";
            this.labelThreads.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelEncodingThreadsHint
            // 
            labelEncodingThreadsHint.AutoSize = true;
            labelEncodingThreadsHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelEncodingThreadsHint.Location = new System.Drawing.Point(230, 0);
            labelEncodingThreadsHint.Name = "labelEncodingThreadsHint";
            labelEncodingThreadsHint.Size = new System.Drawing.Size(802, 28);
            labelEncodingThreadsHint.TabIndex = 0;
            labelEncodingThreadsHint.Text = "Determines amount of threads ffmpeg uses. Try setting this to 1 if ffmpeg.exe cra" +
    "shes as soon as you click Convert.";
            labelEncodingThreadsHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelEncodingSlices
            // 
            labelEncodingSlices.AutoSize = true;
            labelEncodingSlices.Dock = System.Windows.Forms.DockStyle.Fill;
            labelEncodingSlices.Location = new System.Drawing.Point(3, 28);
            labelEncodingSlices.Name = "labelEncodingSlices";
            labelEncodingSlices.Size = new System.Drawing.Size(73, 28);
            labelEncodingSlices.TabIndex = 0;
            labelEncodingSlices.Text = "Slices:";
            labelEncodingSlices.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // trackSlices
            // 
            this.trackSlices.Dock = System.Windows.Forms.DockStyle.Fill;
            this.trackSlices.Location = new System.Drawing.Point(79, 28);
            this.trackSlices.Margin = new System.Windows.Forms.Padding(0);
            this.trackSlices.Maximum = 4;
            this.trackSlices.Minimum = 1;
            this.trackSlices.Name = "trackSlices";
            this.trackSlices.Size = new System.Drawing.Size(118, 28);
            this.trackSlices.TabIndex = 2;
            this.trackSlices.Value = 1;
            this.trackSlices.ValueChanged += new System.EventHandler(this.trackSlices_ValueChanged);
            // 
            // labelSlices
            // 
            this.labelSlices.AutoSize = true;
            this.labelSlices.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelSlices.Location = new System.Drawing.Point(197, 28);
            this.labelSlices.Margin = new System.Windows.Forms.Padding(0);
            this.labelSlices.Name = "labelSlices";
            this.labelSlices.Size = new System.Drawing.Size(30, 28);
            this.labelSlices.TabIndex = 0;
            this.labelSlices.Text = "1";
            this.labelSlices.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelEncodingSlicesHint
            // 
            labelEncodingSlicesHint.AutoSize = true;
            labelEncodingSlicesHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelEncodingSlicesHint.Location = new System.Drawing.Point(230, 28);
            labelEncodingSlicesHint.Name = "labelEncodingSlicesHint";
            labelEncodingSlicesHint.Size = new System.Drawing.Size(802, 28);
            labelEncodingSlicesHint.TabIndex = 0;
            labelEncodingSlicesHint.Text = "Split frames into slices before encoding them. Results in a higher quality per fr" +
    "ame. 4 slices is standard for 720p resolutions.";
            labelEncodingSlicesHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelEncodingArguments
            // 
            labelEncodingArguments.AutoSize = true;
            labelEncodingArguments.Dock = System.Windows.Forms.DockStyle.Fill;
            labelEncodingArguments.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            labelEncodingArguments.Location = new System.Drawing.Point(3, 112);
            labelEncodingArguments.Name = "labelEncodingArguments";
            labelEncodingArguments.Size = new System.Drawing.Size(73, 28);
            labelEncodingArguments.TabIndex = 0;
            labelEncodingArguments.Text = "Arguments:";
            labelEncodingArguments.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // boxArguments
            // 
            this.boxArguments.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            tableAdvancedEncoding.SetColumnSpan(this.boxArguments, 3);
            this.boxArguments.Location = new System.Drawing.Point(82, 116);
            this.boxArguments.Name = "boxArguments";
            this.boxArguments.Size = new System.Drawing.Size(950, 20);
            this.boxArguments.TabIndex = 5;
            // 
            // statusStrip
            // 
            statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripStatusLabel});
            statusStrip.Location = new System.Drawing.Point(3, 424);
            statusStrip.Name = "statusStrip";
            statusStrip.Size = new System.Drawing.Size(1067, 22);
            statusStrip.SizingGrip = false;
            statusStrip.TabIndex = 6;
            // 
            // toolStripStatusLabel
            // 
            this.toolStripStatusLabel.Name = "toolStripStatusLabel";
            this.toolStripStatusLabel.Size = new System.Drawing.Size(1052, 17);
            this.toolStripStatusLabel.Spring = true;
            this.toolStripStatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // panelContainTheProgressBar
            // 
            this.panelContainTheProgressBar.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.panelContainTheProgressBar.AutoSize = true;
            this.panelContainTheProgressBar.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.panelContainTheProgressBar.BackColor = System.Drawing.SystemColors.Control;
            this.panelContainTheProgressBar.Controls.Add(this.boxIndexingProgressDetails);
            this.panelContainTheProgressBar.Controls.Add(this.boxIndexingProgress);
            this.panelContainTheProgressBar.Controls.Add(this.labelIndexingProgress);
            this.panelContainTheProgressBar.Controls.Add(this.progressBarIndexing);
            this.panelContainTheProgressBar.Location = new System.Drawing.Point(299, 148);
            this.panelContainTheProgressBar.Name = "panelContainTheProgressBar";
            this.panelContainTheProgressBar.Size = new System.Drawing.Size(469, 205);
            this.panelContainTheProgressBar.TabIndex = 0;
            // 
            // boxIndexingProgressDetails
            // 
            this.boxIndexingProgressDetails.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.boxIndexingProgressDetails.Appearance = System.Windows.Forms.Appearance.Button;
            this.boxIndexingProgressDetails.AutoSize = true;
            this.boxIndexingProgressDetails.Location = new System.Drawing.Point(414, 5);
            this.boxIndexingProgressDetails.Name = "boxIndexingProgressDetails";
            this.boxIndexingProgressDetails.Size = new System.Drawing.Size(49, 23);
            this.boxIndexingProgressDetails.TabIndex = 1;
            this.boxIndexingProgressDetails.Text = "Details";
            this.boxIndexingProgressDetails.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.boxIndexingProgressDetails.UseVisualStyleBackColor = true;
            this.boxIndexingProgressDetails.CheckedChanged += new System.EventHandler(this.boxIndexingProgressDetails_CheckedChanged);
            // 
            // boxIndexingProgress
            // 
            this.boxIndexingProgress.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.boxIndexingProgress.Location = new System.Drawing.Point(6, 61);
            this.boxIndexingProgress.Margin = new System.Windows.Forms.Padding(3, 3, 3, 6);
            this.boxIndexingProgress.Multiline = true;
            this.boxIndexingProgress.Name = "boxIndexingProgress";
            this.boxIndexingProgress.ReadOnly = true;
            this.boxIndexingProgress.Size = new System.Drawing.Size(457, 138);
            this.boxIndexingProgress.TabIndex = 0;
            this.boxIndexingProgress.Visible = false;
            // 
            // labelIndexingProgress
            // 
            this.labelIndexingProgress.BackColor = System.Drawing.Color.Transparent;
            this.labelIndexingProgress.Location = new System.Drawing.Point(4, 5);
            this.labelIndexingProgress.Name = "labelIndexingProgress";
            this.labelIndexingProgress.Size = new System.Drawing.Size(460, 23);
            this.labelIndexingProgress.TabIndex = 1;
            this.labelIndexingProgress.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // progressBarIndexing
            // 
            this.progressBarIndexing.Location = new System.Drawing.Point(6, 32);
            this.progressBarIndexing.Margin = new System.Windows.Forms.Padding(6);
            this.progressBarIndexing.Name = "progressBarIndexing";
            this.progressBarIndexing.Size = new System.Drawing.Size(457, 23);
            this.progressBarIndexing.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
            this.progressBarIndexing.TabIndex = 0;
            this.progressBarIndexing.Value = 30;
            // 
            // panelHideTheOptions
            // 
            this.panelHideTheOptions.BackColor = System.Drawing.SystemColors.ControlDark;
            this.panelHideTheOptions.Controls.Add(this.panelContainTheProgressBar);
            this.panelHideTheOptions.Location = new System.Drawing.Point(3, 88);
            this.panelHideTheOptions.Name = "panelHideTheOptions";
            this.panelHideTheOptions.Size = new System.Drawing.Size(1067, 356);
            this.panelHideTheOptions.TabIndex = 3;
            // 
            // buttonRate
            // 
            this.buttonRate.AccessibleDescription = "Speed up or slow down your video.";
            this.buttonRate.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.buttonRate.Enabled = false;
            this.buttonRate.Name = "buttonRate";
            this.buttonRate.Size = new System.Drawing.Size(78, 22);
            this.buttonRate.Text = "Change Rate";
            this.buttonRate.Click += new System.EventHandler(this.buttonRate_Click);
            this.buttonRate.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.buttonRate.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // MainForm
            // 
            this.AcceptButton = this.buttonGo;
            this.AllowDrop = true;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1073, 446);
            this.Controls.Add(statusStrip);
            this.Controls.Add(tableMainForm);
            this.Controls.Add(this.panelHideTheOptions);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimumSize = new System.Drawing.Size(975, 270);
            this.Name = "MainForm";
            this.Padding = new System.Windows.Forms.Padding(3, 3, 3, 0);
            this.Text = "WebM for Gits";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
            this.Load += new System.EventHandler(this.MainForm_Load);
            this.Shown += new System.EventHandler(this.MainForm_Shown);
            this.DragDrop += new System.Windows.Forms.DragEventHandler(this.HandleDragDrop);
            this.DragEnter += new System.Windows.Forms.DragEventHandler(this.HandleDragEnter);
            tableMainForm.ResumeLayout(false);
            groupMain.ResumeLayout(false);
            tableMain.ResumeLayout(false);
            tableMain.PerformLayout();
            tabControlOptions.ResumeLayout(false);
            tabProcessing.ResumeLayout(false);
            tableProcessing.ResumeLayout(false);
            tableProcessing.PerformLayout();
            toolStripProcessing.ResumeLayout(false);
            toolStripProcessing.PerformLayout();
            panelProcessingInput.ResumeLayout(false);
            panelProcessingInput.PerformLayout();
            tabEncoding.ResumeLayout(false);
            tableEncoding.ResumeLayout(false);
            groupEncodingGeneral.ResumeLayout(false);
            tableEncodingGeneral.ResumeLayout(false);
            tableEncodingGeneral.PerformLayout();
            groupEncodingVideo.ResumeLayout(false);
            this.tableLayoutPanelEncodingVideo.ResumeLayout(false);
            this.tableLayoutPanelEncodingVideo.PerformLayout();
            panelEncodingModeSwapper.ResumeLayout(false);
            this.tableVideoConstantOptions.ResumeLayout(false);
            this.tableVideoConstantOptions.PerformLayout();
            this.tableVideoVariableOptions.ResumeLayout(false);
            this.tableVideoVariableOptions.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericCrf)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericCrfTolerance)).EndInit();
            groupEncodingAudio.ResumeLayout(false);
            tableEncodingAudio.ResumeLayout(false);
            tableEncodingAudio.PerformLayout();
            panelEncodingModeSwapperTwo.ResumeLayout(false);
            this.tableAudioConstantOptions.ResumeLayout(false);
            this.tableAudioConstantOptions.PerformLayout();
            this.tableAudioVariableOptions.ResumeLayout(false);
            this.tableAudioVariableOptions.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericAudioQuality)).EndInit();
            tabAdvanced.ResumeLayout(false);
            tableAdvanced.ResumeLayout(false);
            tableAdvanced.PerformLayout();
            groupAdvancedProcessing.ResumeLayout(false);
            tableAdvancedProcessing.ResumeLayout(false);
            tableAdvancedProcessing.PerformLayout();
            groupAdvancedEncoding.ResumeLayout(false);
            tableAdvancedEncoding.ResumeLayout(false);
            tableAdvancedEncoding.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackThreads)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackSlices)).EndInit();
            statusStrip.ResumeLayout(false);
            statusStrip.PerformLayout();
            this.panelContainTheProgressBar.ResumeLayout(false);
            this.panelContainTheProgressBar.PerformLayout();
            this.panelHideTheOptions.ResumeLayout(false);
            this.panelHideTheOptions.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Ejemplo n.º 25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel2;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SshSettingsPage));
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel3;
     this.Putty            = new System.Windows.Forms.RadioButton();
     this.OtherSsh         = new System.Windows.Forms.TextBox();
     this.OpenSSH          = new System.Windows.Forms.RadioButton();
     this.Other            = new System.Windows.Forms.RadioButton();
     this.label18          = new System.Windows.Forms.Label();
     this.OtherSshBrowse   = new System.Windows.Forms.Button();
     this.label15          = new System.Windows.Forms.Label();
     this.PageantBrowse    = new System.Windows.Forms.Button();
     this.AutostartPageant = new System.Windows.Forms.CheckBox();
     this.PuttygenBrowse   = new System.Windows.Forms.Button();
     this.label16          = new System.Windows.Forms.Label();
     this.PlinkBrowse      = new System.Windows.Forms.Button();
     this.PageantPath      = new System.Windows.Forms.TextBox();
     this.label17          = new System.Windows.Forms.Label();
     this.PlinkPath        = new System.Windows.Forms.TextBox();
     this.PuttygenPath     = new System.Windows.Forms.TextBox();
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.groupBox2        = new System.Windows.Forms.GroupBox();
     tableLayoutPanel2     = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanel3     = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanel2.SuspendLayout();
     tableLayoutPanel3.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel2
     //
     tableLayoutPanel2.AutoSize     = true;
     tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel2.ColumnCount  = 3;
     tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 140F));
     tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel2.Controls.Add(this.Putty, 0, 0);
     tableLayoutPanel2.Controls.Add(this.OtherSsh, 1, 2);
     tableLayoutPanel2.Controls.Add(this.OpenSSH, 0, 1);
     tableLayoutPanel2.Controls.Add(this.Other, 0, 2);
     tableLayoutPanel2.Controls.Add(this.label18, 1, 0);
     tableLayoutPanel2.Controls.Add(this.OtherSshBrowse, 2, 2);
     tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel2.Location = new System.Drawing.Point(8, 22);
     tableLayoutPanel2.Name     = "tableLayoutPanel2";
     tableLayoutPanel2.RowCount = 3;
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.Size     = new System.Drawing.Size(883, 78);
     tableLayoutPanel2.TabIndex = 0;
     //
     // Putty
     //
     this.Putty.AutoSize = true;
     this.Putty.Checked  = true;
     this.Putty.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.Putty.Location = new System.Drawing.Point(3, 3);
     this.Putty.Name     = "Putty";
     this.Putty.Size     = new System.Drawing.Size(134, 17);
     this.Putty.TabIndex = 0;
     this.Putty.TabStop  = true;
     this.Putty.Text     = "PuTTY";
     this.Putty.UseVisualStyleBackColor = true;
     this.Putty.CheckedChanged         += new System.EventHandler(this.Putty_CheckedChanged);
     //
     // OtherSsh
     //
     this.OtherSsh.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.OtherSsh.Location    = new System.Drawing.Point(143, 51);
     this.OtherSsh.MaxLength   = 300;
     this.OtherSsh.MinimumSize = new System.Drawing.Size(300, 4);
     this.OtherSsh.Name        = "OtherSsh";
     this.OtherSsh.Size        = new System.Drawing.Size(656, 21);
     this.OtherSsh.TabIndex    = 4;
     //
     // OpenSSH
     //
     this.OpenSSH.AutoSize = true;
     this.OpenSSH.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.OpenSSH.Location = new System.Drawing.Point(3, 26);
     this.OpenSSH.Name     = "OpenSSH";
     this.OpenSSH.Size     = new System.Drawing.Size(134, 17);
     this.OpenSSH.TabIndex = 2;
     this.OpenSSH.Text     = "OpenSSH";
     this.OpenSSH.UseVisualStyleBackColor = true;
     this.OpenSSH.CheckedChanged         += new System.EventHandler(this.OpenSSH_CheckedChanged);
     //
     // Other
     //
     this.Other.AutoSize = true;
     this.Other.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.Other.Location = new System.Drawing.Point(3, 49);
     this.Other.Name     = "Other";
     this.Other.Size     = new System.Drawing.Size(134, 26);
     this.Other.TabIndex = 3;
     this.Other.Text     = "Other ssh client";
     this.Other.UseVisualStyleBackColor = true;
     this.Other.CheckedChanged         += new System.EventHandler(this.Other_CheckedChanged);
     //
     // label18
     //
     this.label18.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.label18.AutoSize  = true;
     this.label18.BackColor = System.Drawing.SystemColors.Info;
     tableLayoutPanel2.SetColumnSpan(this.label18, 2);
     this.label18.ForeColor = System.Drawing.SystemColors.InfoText;
     this.label18.Location  = new System.Drawing.Point(143, 3);
     this.label18.Name      = "label18";
     tableLayoutPanel2.SetRowSpan(this.label18, 2);
     this.label18.Size      = new System.Drawing.Size(737, 39);
     this.label18.TabIndex  = 1;
     this.label18.Text      = resources.GetString("label18.Text");
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // OtherSshBrowse
     //
     this.OtherSshBrowse.AutoSize = true;
     this.OtherSshBrowse.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.OtherSshBrowse.Location = new System.Drawing.Point(805, 49);
     this.OtherSshBrowse.Name     = "OtherSshBrowse";
     this.OtherSshBrowse.Size     = new System.Drawing.Size(75, 26);
     this.OtherSshBrowse.TabIndex = 5;
     this.OtherSshBrowse.Text     = "Browse";
     this.OtherSshBrowse.UseVisualStyleBackColor = true;
     this.OtherSshBrowse.Click += new System.EventHandler(this.OtherSshBrowse_Click);
     //
     // tableLayoutPanel3
     //
     tableLayoutPanel3.AutoSize     = true;
     tableLayoutPanel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel3.ColumnCount  = 3;
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 140F));
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel3.Controls.Add(this.label15, 0, 0);
     tableLayoutPanel3.Controls.Add(this.PageantBrowse, 2, 2);
     tableLayoutPanel3.Controls.Add(this.AutostartPageant, 1, 3);
     tableLayoutPanel3.Controls.Add(this.PuttygenBrowse, 2, 1);
     tableLayoutPanel3.Controls.Add(this.label16, 0, 1);
     tableLayoutPanel3.Controls.Add(this.PlinkBrowse, 2, 0);
     tableLayoutPanel3.Controls.Add(this.PageantPath, 1, 2);
     tableLayoutPanel3.Controls.Add(this.label17, 0, 2);
     tableLayoutPanel3.Controls.Add(this.PlinkPath, 1, 0);
     tableLayoutPanel3.Controls.Add(this.PuttygenPath, 1, 1);
     tableLayoutPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel3.Location = new System.Drawing.Point(8, 22);
     tableLayoutPanel3.Name     = "tableLayoutPanel3";
     tableLayoutPanel3.RowCount = 4;
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel3.Size     = new System.Drawing.Size(883, 116);
     tableLayoutPanel3.TabIndex = 0;
     //
     // label15
     //
     this.label15.AutoSize  = true;
     this.label15.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.label15.Location  = new System.Drawing.Point(3, 0);
     this.label15.Name      = "label15";
     this.label15.Size      = new System.Drawing.Size(134, 31);
     this.label15.TabIndex  = 0;
     this.label15.Text      = "Path to plink";
     this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // PageantBrowse
     //
     this.PageantBrowse.AutoSize = true;
     this.PageantBrowse.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.PageantBrowse.Location = new System.Drawing.Point(805, 65);
     this.PageantBrowse.Name     = "PageantBrowse";
     this.PageantBrowse.Size     = new System.Drawing.Size(75, 25);
     this.PageantBrowse.TabIndex = 8;
     this.PageantBrowse.Text     = "Browse";
     this.PageantBrowse.UseVisualStyleBackColor = true;
     this.PageantBrowse.Click += new System.EventHandler(this.PageantBrowse_Click);
     //
     // AutostartPageant
     //
     this.AutostartPageant.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.AutostartPageant.AutoSize   = true;
     this.AutostartPageant.Checked    = true;
     this.AutostartPageant.CheckState = System.Windows.Forms.CheckState.Checked;
     tableLayoutPanel3.SetColumnSpan(this.AutostartPageant, 2);
     this.AutostartPageant.Location = new System.Drawing.Point(143, 96);
     this.AutostartPageant.Name     = "AutostartPageant";
     this.AutostartPageant.Size     = new System.Drawing.Size(737, 17);
     this.AutostartPageant.TabIndex = 9;
     this.AutostartPageant.Text     = "Automatically start authentication client when a private key is configured for a " +
                                      "remote";
     this.AutostartPageant.UseVisualStyleBackColor = true;
     //
     // PuttygenBrowse
     //
     this.PuttygenBrowse.AutoSize = true;
     this.PuttygenBrowse.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.PuttygenBrowse.Location = new System.Drawing.Point(805, 34);
     this.PuttygenBrowse.Name     = "PuttygenBrowse";
     this.PuttygenBrowse.Size     = new System.Drawing.Size(75, 25);
     this.PuttygenBrowse.TabIndex = 5;
     this.PuttygenBrowse.Text     = "Browse";
     this.PuttygenBrowse.UseVisualStyleBackColor = true;
     this.PuttygenBrowse.Click += new System.EventHandler(this.PuttygenBrowse_Click);
     //
     // label16
     //
     this.label16.AutoSize  = true;
     this.label16.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.label16.Location  = new System.Drawing.Point(3, 31);
     this.label16.Name      = "label16";
     this.label16.Size      = new System.Drawing.Size(134, 31);
     this.label16.TabIndex  = 3;
     this.label16.Text      = "Path to puttygen";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // PlinkBrowse
     //
     this.PlinkBrowse.AutoSize = true;
     this.PlinkBrowse.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.PlinkBrowse.Location = new System.Drawing.Point(805, 3);
     this.PlinkBrowse.Name     = "PlinkBrowse";
     this.PlinkBrowse.Size     = new System.Drawing.Size(75, 25);
     this.PlinkBrowse.TabIndex = 2;
     this.PlinkBrowse.Text     = "Browse";
     this.PlinkBrowse.UseVisualStyleBackColor = true;
     this.PlinkBrowse.Click += new System.EventHandler(this.PuttyBrowse_Click);
     //
     // PageantPath
     //
     this.PageantPath.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.PageantPath.Location    = new System.Drawing.Point(143, 67);
     this.PageantPath.MaxLength   = 300;
     this.PageantPath.MinimumSize = new System.Drawing.Size(300, 4);
     this.PageantPath.Name        = "PageantPath";
     this.PageantPath.Size        = new System.Drawing.Size(656, 21);
     this.PageantPath.TabIndex    = 7;
     //
     // label17
     //
     this.label17.AutoSize  = true;
     this.label17.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.label17.Location  = new System.Drawing.Point(3, 62);
     this.label17.Name      = "label17";
     this.label17.Size      = new System.Drawing.Size(134, 31);
     this.label17.TabIndex  = 6;
     this.label17.Text      = "Path to pageant";
     this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // PlinkPath
     //
     this.PlinkPath.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.PlinkPath.Location    = new System.Drawing.Point(143, 5);
     this.PlinkPath.MaxLength   = 300;
     this.PlinkPath.MinimumSize = new System.Drawing.Size(300, 4);
     this.PlinkPath.Name        = "PlinkPath";
     this.PlinkPath.Size        = new System.Drawing.Size(656, 21);
     this.PlinkPath.TabIndex    = 1;
     //
     // PuttygenPath
     //
     this.PuttygenPath.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.PuttygenPath.Location    = new System.Drawing.Point(143, 36);
     this.PuttygenPath.MaxLength   = 300;
     this.PuttygenPath.MinimumSize = new System.Drawing.Size(300, 4);
     this.PuttygenPath.Name        = "PuttygenPath";
     this.PuttygenPath.Size        = new System.Drawing.Size(656, 21);
     this.PuttygenPath.TabIndex    = 4;
     //
     // groupBox1
     //
     this.groupBox1.AutoSize = true;
     this.groupBox1.Controls.Add(tableLayoutPanel2);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Padding  = new System.Windows.Forms.Padding(8);
     this.groupBox1.Size     = new System.Drawing.Size(899, 108);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Specify which ssh client to use";
     //
     // groupBox2
     //
     this.groupBox2.AutoSize = true;
     this.groupBox2.Controls.Add(tableLayoutPanel3);
     this.groupBox2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupBox2.Location = new System.Drawing.Point(0, 108);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Padding  = new System.Windows.Forms.Padding(8);
     this.groupBox2.Size     = new System.Drawing.Size(899, 146);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Configure PuTTY";
     //
     // SshSettingsPage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Name = "SshSettingsPage";
     this.Size = new System.Drawing.Size(899, 633);
     tableLayoutPanel2.ResumeLayout(false);
     tableLayoutPanel2.PerformLayout();
     tableLayoutPanel3.ResumeLayout(false);
     tableLayoutPanel3.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 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();
     System.Windows.Forms.TableLayoutPanel _TlfIaTLP;
     System.Windows.Forms.TableLayoutPanel _IaFunctionsTLP;
     this._IaToolsWS      = new Microsoft.Practices.CompositeUI.WinForms.DeckWorkspace();
     this._MemBT          = new HMI.Model.Module.UI.HMIButton();
     this._CallBT         = new HMI.Model.Module.UI.HMIButton();
     this._Num1BT         = new HMI.Model.Module.UI.HMIButton();
     this._Num2BT         = new HMI.Model.Module.UI.HMIButton();
     this._Num3BT         = new HMI.Model.Module.UI.HMIButton();
     this._Num4BT         = new HMI.Model.Module.UI.HMIButton();
     this._SlowBlinkTimer = new System.Windows.Forms.Timer(this.components);
     _TlfIaTLP            = new System.Windows.Forms.TableLayoutPanel();
     _IaFunctionsTLP      = new System.Windows.Forms.TableLayoutPanel();
     _TlfIaTLP.SuspendLayout();
     _IaFunctionsTLP.SuspendLayout();
     this.SuspendLayout();
     //
     // _TlfIaTLP
     //
     _TlfIaTLP.ColumnCount = 2;
     _TlfIaTLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 55F));
     _TlfIaTLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 45F));
     _TlfIaTLP.Controls.Add(this._IaToolsWS, 0, 0);
     _TlfIaTLP.Controls.Add(_IaFunctionsTLP, 1, 0);
     _TlfIaTLP.Dock     = System.Windows.Forms.DockStyle.Fill;
     _TlfIaTLP.Location = new System.Drawing.Point(0, 0);
     _TlfIaTLP.Margin   = new System.Windows.Forms.Padding(0);
     _TlfIaTLP.Name     = "_TlfIaTLP";
     _TlfIaTLP.RowCount = 1;
     _TlfIaTLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     _TlfIaTLP.Size     = new System.Drawing.Size(440, 350);
     _TlfIaTLP.TabIndex = 4;
     //
     // _IaToolsWS
     //
     this._IaToolsWS.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._IaToolsWS.Location = new System.Drawing.Point(10, 10);
     this._IaToolsWS.Margin   = new System.Windows.Forms.Padding(10);
     this._IaToolsWS.Name     = "_IaToolsWS";
     this._IaToolsWS.Size     = new System.Drawing.Size(222, 330);
     this._IaToolsWS.TabIndex = 5;
     this._IaToolsWS.Text     = "deckWorkspace3";
     //
     // _IaFunctionsTLP
     //
     _IaFunctionsTLP.ColumnCount = 2;
     _IaFunctionsTLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     _IaFunctionsTLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     _IaFunctionsTLP.Controls.Add(this._MemBT, 0, 0);
     _IaFunctionsTLP.Controls.Add(this._CallBT, 1, 0);
     _IaFunctionsTLP.Controls.Add(this._Num1BT, 0, 2);
     _IaFunctionsTLP.Controls.Add(this._Num2BT, 1, 2);
     _IaFunctionsTLP.Controls.Add(this._Num3BT, 0, 3);
     _IaFunctionsTLP.Controls.Add(this._Num4BT, 1, 3);
     _IaFunctionsTLP.Dock     = System.Windows.Forms.DockStyle.Fill;
     _IaFunctionsTLP.Location = new System.Drawing.Point(252, 0);
     _IaFunctionsTLP.Margin   = new System.Windows.Forms.Padding(10, 0, 0, 10);
     _IaFunctionsTLP.Name     = "_IaFunctionsTLP";
     _IaFunctionsTLP.RowCount = 4;
     _IaFunctionsTLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     _IaFunctionsTLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     _IaFunctionsTLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     _IaFunctionsTLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     _IaFunctionsTLP.Size     = new System.Drawing.Size(188, 340);
     _IaFunctionsTLP.TabIndex = 1;
     //
     // _MemBT
     //
     this._MemBT.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._MemBT.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._MemBT.Location = new System.Drawing.Point(3, 40);
     this._MemBT.Margin   = new System.Windows.Forms.Padding(3, 40, 3, 40);
     this._MemBT.Name     = "_MemBT";
     _IaFunctionsTLP.SetRowSpan(this._MemBT, 2);
     this._MemBT.Size     = new System.Drawing.Size(88, 90);
     this._MemBT.TabIndex = 0;
     this._MemBT.Text     = "MEM";
     this._MemBT.Click   += new System.EventHandler(this._MemBT_Click);
     //
     // _CallBT
     //
     this._CallBT.Dock          = System.Windows.Forms.DockStyle.Fill;
     this._CallBT.Enabled       = false;
     this._CallBT.ImageDisabled = global::HMI.Presentation.Urr.Properties.Resources.UnhangDisabled;
     this._CallBT.ImageNormal   = global::HMI.Presentation.Urr.Properties.Resources.Unhang;
     this._CallBT.Location      = new System.Drawing.Point(97, 40);
     this._CallBT.Margin        = new System.Windows.Forms.Padding(3, 40, 3, 40);
     this._CallBT.Name          = "_CallBT";
     _IaFunctionsTLP.SetRowSpan(this._CallBT, 2);
     this._CallBT.Size     = new System.Drawing.Size(88, 90);
     this._CallBT.TabIndex = 1;
     this._CallBT.Click   += new System.EventHandler(this._CallBT_Click);
     //
     // _Num1BT
     //
     this._Num1BT.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._Num1BT.Enabled  = false;
     this._Num1BT.Font     = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._Num1BT.Location = new System.Drawing.Point(5, 173);
     this._Num1BT.Margin   = new System.Windows.Forms.Padding(5, 3, 3, 3);
     this._Num1BT.Name     = "_Num1BT";
     this._Num1BT.Size     = new System.Drawing.Size(86, 79);
     this._Num1BT.TabIndex = 2;
     this._Num1BT.Text     = "Núm. 1";
     this._Num1BT.Click   += new System.EventHandler(this._NumBT_Click);
     //
     // _Num2BT
     //
     this._Num2BT.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._Num2BT.Enabled  = false;
     this._Num2BT.Font     = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._Num2BT.Location = new System.Drawing.Point(97, 173);
     this._Num2BT.Margin   = new System.Windows.Forms.Padding(3, 3, 5, 3);
     this._Num2BT.Name     = "_Num2BT";
     this._Num2BT.Size     = new System.Drawing.Size(86, 79);
     this._Num2BT.TabIndex = 3;
     this._Num2BT.Text     = "Núm. 2";
     this._Num2BT.Click   += new System.EventHandler(this._NumBT_Click);
     //
     // _Num3BT
     //
     this._Num3BT.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._Num3BT.Enabled  = false;
     this._Num3BT.Font     = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._Num3BT.Location = new System.Drawing.Point(5, 258);
     this._Num3BT.Margin   = new System.Windows.Forms.Padding(5, 3, 3, 3);
     this._Num3BT.Name     = "_Num3BT";
     this._Num3BT.Size     = new System.Drawing.Size(86, 79);
     this._Num3BT.TabIndex = 4;
     this._Num3BT.Text     = "Núm. 3";
     this._Num3BT.Click   += new System.EventHandler(this._NumBT_Click);
     //
     // _Num4BT
     //
     this._Num4BT.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._Num4BT.Enabled  = false;
     this._Num4BT.Font     = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._Num4BT.Location = new System.Drawing.Point(97, 258);
     this._Num4BT.Margin   = new System.Windows.Forms.Padding(3, 3, 5, 3);
     this._Num4BT.Name     = "_Num4BT";
     this._Num4BT.Size     = new System.Drawing.Size(86, 79);
     this._Num4BT.TabIndex = 5;
     this._Num4BT.Text     = "Núm. 4";
     this._Num4BT.Click   += new System.EventHandler(this._NumBT_Click);
     //
     // _SlowBlinkTimer
     //
     this._SlowBlinkTimer.Interval = 500;
     this._SlowBlinkTimer.Tick    += new System.EventHandler(this._SlowBlinkTimer_Tick);
     //
     // TlfIaView
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.Controls.Add(_TlfIaTLP);
     this.Name = "TlfIaView";
     this.Size = new System.Drawing.Size(440, 350);
     _TlfIaTLP.ResumeLayout(false);
     _IaFunctionsTLP.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 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();
     System.Windows.Forms.TableLayoutPanel          outerLayout;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ForeignKeysEdit));
     System.Windows.Forms.TableLayoutPanel          innerLayoutPanel;
     System.Windows.Forms.Label     refTableLabel;
     System.Windows.Forms.Label     keyNameLabel;
     System.Windows.Forms.Label     onDeleteLabel;
     System.Windows.Forms.Label     onUpdateLabel;
     System.Windows.Forms.ImageList imageList;
     this.keySettingsGroup = new System.Windows.Forms.GroupBox();
     this.refTableSelect   = new System.Windows.Forms.ComboBox();
     this.keyNameText      = new MySql.Data.VisualStudio.DocumentView.NameTextBox();
     this.onDeleteSelect   = new System.Windows.Forms.ComboBox();
     this.onUpdateSelect   = new System.Windows.Forms.ComboBox();
     this.foreigKeyColumns = new MySql.Data.VisualStudio.DocumentView.AdvancedDataGridView();
     this.sourceColumn     = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.referenceColumn  = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.keyNameColumn    = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ordinalColumn    = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.removeButton     = new System.Windows.Forms.Button();
     this.addButton        = new System.Windows.Forms.Button();
     this.foreignKeysList  = new System.Windows.Forms.ListBox();
     outerLayout           = new System.Windows.Forms.TableLayoutPanel();
     innerLayoutPanel      = new System.Windows.Forms.TableLayoutPanel();
     refTableLabel         = new System.Windows.Forms.Label();
     keyNameLabel          = new System.Windows.Forms.Label();
     onDeleteLabel         = new System.Windows.Forms.Label();
     onUpdateLabel         = new System.Windows.Forms.Label();
     imageList             = new System.Windows.Forms.ImageList(this.components);
     outerLayout.SuspendLayout();
     this.keySettingsGroup.SuspendLayout();
     innerLayoutPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.foreigKeyColumns)).BeginInit();
     this.SuspendLayout();
     //
     // outerLayout
     //
     resources.ApplyResources(outerLayout, "outerLayout");
     outerLayout.Controls.Add(this.keySettingsGroup, 2, 0);
     outerLayout.Controls.Add(this.removeButton, 1, 1);
     outerLayout.Controls.Add(this.addButton, 0, 1);
     outerLayout.Controls.Add(this.foreignKeysList, 0, 0);
     outerLayout.Name = "outerLayout";
     //
     // keySettingsGroup
     //
     resources.ApplyResources(this.keySettingsGroup, "keySettingsGroup");
     this.keySettingsGroup.Controls.Add(innerLayoutPanel);
     this.keySettingsGroup.Name = "keySettingsGroup";
     outerLayout.SetRowSpan(this.keySettingsGroup, 2);
     this.keySettingsGroup.TabStop = false;
     //
     // innerLayoutPanel
     //
     resources.ApplyResources(innerLayoutPanel, "innerLayoutPanel");
     innerLayoutPanel.Controls.Add(this.refTableSelect, 3, 0);
     innerLayoutPanel.Controls.Add(refTableLabel, 2, 0);
     innerLayoutPanel.Controls.Add(keyNameLabel, 0, 0);
     innerLayoutPanel.Controls.Add(onDeleteLabel, 0, 1);
     innerLayoutPanel.Controls.Add(onUpdateLabel, 0, 2);
     innerLayoutPanel.Controls.Add(this.keyNameText, 1, 0);
     innerLayoutPanel.Controls.Add(this.onDeleteSelect, 1, 1);
     innerLayoutPanel.Controls.Add(this.onUpdateSelect, 1, 2);
     innerLayoutPanel.Controls.Add(this.foreigKeyColumns, 2, 1);
     innerLayoutPanel.Name = "innerLayoutPanel";
     //
     // refTableSelect
     //
     resources.ApplyResources(this.refTableSelect, "refTableSelect");
     this.refTableSelect.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.refTableSelect.FormattingEnabled = true;
     this.refTableSelect.Name = "refTableSelect";
     this.refTableSelect.SelectedIndexChanged += new System.EventHandler(this.OnReferencedTableChanged);
     //
     // refTableLabel
     //
     resources.ApplyResources(refTableLabel, "refTableLabel");
     refTableLabel.Name = "refTableLabel";
     //
     // keyNameLabel
     //
     resources.ApplyResources(keyNameLabel, "keyNameLabel");
     keyNameLabel.Name = "keyNameLabel";
     //
     // onDeleteLabel
     //
     resources.ApplyResources(onDeleteLabel, "onDeleteLabel");
     onDeleteLabel.Name = "onDeleteLabel";
     //
     // onUpdateLabel
     //
     resources.ApplyResources(onUpdateLabel, "onUpdateLabel");
     onUpdateLabel.Name = "onUpdateLabel";
     //
     // keyNameText
     //
     this.keyNameText.AttributeName = null;
     this.keyNameText.DataSource    = null;
     resources.ApplyResources(this.keyNameText, "keyNameText");
     this.keyNameText.Name          = "keyNameText";
     this.keyNameText.NameChanging += new System.EventHandler(this.OnKeyNameChanging);
     this.keyNameText.NameChanged  += new System.EventHandler(this.OnKeyNameChanged);
     //
     // onDeleteSelect
     //
     this.onDeleteSelect.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.onDeleteSelect.FormattingEnabled = true;
     resources.ApplyResources(this.onDeleteSelect, "onDeleteSelect");
     this.onDeleteSelect.Name = "onDeleteSelect";
     this.onDeleteSelect.SelectedIndexChanged += new System.EventHandler(this.OnActionChanged);
     //
     // onUpdateSelect
     //
     this.onUpdateSelect.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.onUpdateSelect.FormattingEnabled = true;
     resources.ApplyResources(this.onUpdateSelect, "onUpdateSelect");
     this.onUpdateSelect.Name = "onUpdateSelect";
     this.onUpdateSelect.SelectedIndexChanged += new System.EventHandler(this.OnActionChanged);
     //
     // foreigKeyColumns
     //
     resources.ApplyResources(this.foreigKeyColumns, "foreigKeyColumns");
     this.foreigKeyColumns.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.foreigKeyColumns.BackgroundColor             = System.Drawing.Color.White;
     this.foreigKeyColumns.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.foreigKeyColumns.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.sourceColumn,
         this.referenceColumn,
         this.keyNameColumn,
         this.ordinalColumn
     });
     innerLayoutPanel.SetColumnSpan(this.foreigKeyColumns, 2);
     this.foreigKeyColumns.Name          = "foreigKeyColumns";
     this.foreigKeyColumns.OrdinalColumn = null;
     innerLayoutPanel.SetRowSpan(this.foreigKeyColumns, 3);
     this.foreigKeyColumns.ShowEditingIcon      = false;
     this.foreigKeyColumns.DefaultValuesNeeded += new System.Windows.Forms.DataGridViewRowEventHandler(this.OnForeigKeyColumnDefaultValuesNeeded);
     this.foreigKeyColumns.DataError           += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnForeigKeyColumnsDataError);
     //
     // sourceColumn
     //
     this.sourceColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.sourceColumn, "sourceColumn");
     this.sourceColumn.Name = "sourceColumn";
     //
     // referenceColumn
     //
     this.referenceColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.referenceColumn, "referenceColumn");
     this.referenceColumn.Name = "referenceColumn";
     //
     // keyNameColumn
     //
     resources.ApplyResources(this.keyNameColumn, "keyNameColumn");
     this.keyNameColumn.Name = "keyNameColumn";
     //
     // ordinalColumn
     //
     resources.ApplyResources(this.ordinalColumn, "ordinalColumn");
     this.ordinalColumn.Name = "ordinalColumn";
     //
     // removeButton
     //
     resources.ApplyResources(this.removeButton, "removeButton");
     this.removeButton.FlatAppearance.BorderSize = 0;
     this.removeButton.ImageList = imageList;
     this.removeButton.Name      = "removeButton";
     this.removeButton.UseVisualStyleBackColor = true;
     this.removeButton.Click += new System.EventHandler(this.OnRemoveKeyClick);
     //
     // imageList
     //
     imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     imageList.TransparentColor = System.Drawing.Color.Transparent;
     imageList.Images.SetKeyName(0, "Add_Icon.ico");
     imageList.Images.SetKeyName(1, "Remove_Icon.ico");
     //
     // addButton
     //
     resources.ApplyResources(this.addButton, "addButton");
     this.addButton.FlatAppearance.BorderSize = 0;
     this.addButton.ForeColor = System.Drawing.SystemColors.Control;
     this.addButton.ImageList = imageList;
     this.addButton.Name      = "addButton";
     this.addButton.UseVisualStyleBackColor = true;
     this.addButton.Click += new System.EventHandler(this.OnAddKeyClick);
     //
     // foreignKeysList
     //
     resources.ApplyResources(this.foreignKeysList, "foreignKeysList");
     outerLayout.SetColumnSpan(this.foreignKeysList, 2);
     this.foreignKeysList.FormattingEnabled = true;
     this.foreignKeysList.Name = "foreignKeysList";
     this.foreignKeysList.SelectedIndexChanged += new System.EventHandler(this.OnSelectedForeignKeyChanged);
     //
     // ForeignKeysEdit
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(outerLayout);
     this.Name = "ForeignKeysEdit";
     outerLayout.ResumeLayout(false);
     this.keySettingsGroup.ResumeLayout(false);
     innerLayoutPanel.ResumeLayout(false);
     innerLayoutPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.foreigKeyColumns)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 28
0
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.GroupBox groupBoxJpeg;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(JpegFormatDialog));
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanelJpeg;
     System.Windows.Forms.Label            labelQuality;
     System.Windows.Forms.Label            labelColorFormat;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanelColorFormat;
     this.numericUpDownJpegQuality = new System.Windows.Forms.NumericUpDown();
     this.radioButtonJpegQuality   = new System.Windows.Forms.RadioButton();
     this.radioButtonQFactor       = new System.Windows.Forms.RadioButton();
     this.numericUpDownQFactor     = new System.Windows.Forms.NumericUpDown();
     this.radioButtonGrayscale     = new System.Windows.Forms.RadioButton();
     this.radioButtonColor         = new System.Windows.Forms.RadioButton();
     groupBoxJpeg                = new System.Windows.Forms.GroupBox();
     tableLayoutPanelJpeg        = new System.Windows.Forms.TableLayoutPanel();
     labelQuality                = new System.Windows.Forms.Label();
     labelColorFormat            = new System.Windows.Forms.Label();
     tableLayoutPanelColorFormat = new System.Windows.Forms.TableLayoutPanel();
     groupBoxJpeg.SuspendLayout();
     tableLayoutPanelJpeg.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownJpegQuality)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownQFactor)).BeginInit();
     tableLayoutPanelColorFormat.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBoxJpeg
     //
     resources.ApplyResources(groupBoxJpeg, "groupBoxJpeg");
     groupBoxJpeg.Controls.Add(tableLayoutPanelJpeg);
     groupBoxJpeg.Name    = "groupBoxJpeg";
     groupBoxJpeg.TabStop = false;
     //
     // tableLayoutPanelJpeg
     //
     resources.ApplyResources(tableLayoutPanelJpeg, "tableLayoutPanelJpeg");
     tableLayoutPanelJpeg.Controls.Add(labelQuality, 0, 0);
     tableLayoutPanelJpeg.Controls.Add(this.numericUpDownJpegQuality, 2, 0);
     tableLayoutPanelJpeg.Controls.Add(this.radioButtonJpegQuality, 1, 0);
     tableLayoutPanelJpeg.Controls.Add(this.radioButtonQFactor, 1, 1);
     tableLayoutPanelJpeg.Controls.Add(this.numericUpDownQFactor, 2, 1);
     tableLayoutPanelJpeg.Controls.Add(labelColorFormat, 0, 2);
     tableLayoutPanelJpeg.Controls.Add(tableLayoutPanelColorFormat, 1, 2);
     tableLayoutPanelJpeg.Name = "tableLayoutPanelJpeg";
     //
     // labelQuality
     //
     resources.ApplyResources(labelQuality, "labelQuality");
     labelQuality.Name = "labelQuality";
     tableLayoutPanelJpeg.SetRowSpan(labelQuality, 2);
     //
     // numericUpDownJpegQuality
     //
     resources.ApplyResources(this.numericUpDownJpegQuality, "numericUpDownJpegQuality");
     this.numericUpDownJpegQuality.Name  = "numericUpDownJpegQuality";
     this.numericUpDownJpegQuality.Value = new decimal(new int[] {
         75,
         0,
         0,
         0
     });
     //
     // radioButtonJpegQuality
     //
     resources.ApplyResources(this.radioButtonJpegQuality, "radioButtonJpegQuality");
     this.radioButtonJpegQuality.Checked = true;
     this.radioButtonJpegQuality.Name    = "radioButtonJpegQuality";
     this.radioButtonJpegQuality.TabStop = true;
     this.radioButtonJpegQuality.UseVisualStyleBackColor = true;
     //
     // radioButtonQFactor
     //
     resources.ApplyResources(this.radioButtonQFactor, "radioButtonQFactor");
     this.radioButtonQFactor.Name = "radioButtonQFactor";
     this.radioButtonQFactor.UseVisualStyleBackColor = true;
     //
     // numericUpDownQFactor
     //
     resources.ApplyResources(this.numericUpDownQFactor, "numericUpDownQFactor");
     this.numericUpDownQFactor.DecimalPlaces = 1;
     this.numericUpDownQFactor.Maximum       = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numericUpDownQFactor.Name  = "numericUpDownQFactor";
     this.numericUpDownQFactor.Value = new decimal(new int[] {
         5,
         0,
         0,
         65536
     });
     //
     // labelColorFormat
     //
     resources.ApplyResources(labelColorFormat, "labelColorFormat");
     labelColorFormat.Name = "labelColorFormat";
     //
     // tableLayoutPanelColorFormat
     //
     resources.ApplyResources(tableLayoutPanelColorFormat, "tableLayoutPanelColorFormat");
     tableLayoutPanelJpeg.SetColumnSpan(tableLayoutPanelColorFormat, 2);
     tableLayoutPanelColorFormat.Controls.Add(this.radioButtonGrayscale, 0, 0);
     tableLayoutPanelColorFormat.Controls.Add(this.radioButtonColor, 1, 0);
     tableLayoutPanelColorFormat.Name = "tableLayoutPanelColorFormat";
     //
     // radioButtonGrayscale
     //
     resources.ApplyResources(this.radioButtonGrayscale, "radioButtonGrayscale");
     this.radioButtonGrayscale.Name = "radioButtonGrayscale";
     this.radioButtonGrayscale.UseVisualStyleBackColor = true;
     //
     // radioButtonColor
     //
     resources.ApplyResources(this.radioButtonColor, "radioButtonColor");
     this.radioButtonColor.Checked = true;
     this.radioButtonColor.Name    = "radioButtonColor";
     this.radioButtonColor.TabStop = true;
     this.radioButtonColor.UseVisualStyleBackColor = true;
     //
     // JpegFormatDialog
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(groupBoxJpeg);
     this.Name = "JpegFormatDialog";
     groupBoxJpeg.ResumeLayout(false);
     groupBoxJpeg.PerformLayout();
     tableLayoutPanelJpeg.ResumeLayout(false);
     tableLayoutPanelJpeg.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownJpegQuality)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownQFactor)).EndInit();
     tableLayoutPanelColorFormat.ResumeLayout(false);
     tableLayoutPanelColorFormat.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()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ToolStripSeparator tssTagSeparator;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainApplicationForm));
            System.Windows.Forms.GroupBox gbTags;
            System.Windows.Forms.GroupBox gbSearch;
            System.Windows.Forms.TableLayoutPanel tlpSearchResults;
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.TableLayoutPanel tlpAbout;
            System.Windows.Forms.GroupBox gbLogo;
            System.Windows.Forms.GroupBox gbThirdPartyComponents;
            System.Windows.Forms.TableLayoutPanel tlpThirdPartyComponents;
            System.Windows.Forms.LinkLabel llblSilkHomepage;
            System.Windows.Forms.Label lblSilkIconSetAuthor;
            System.Windows.Forms.LinkLabel llblIconsLink;
            System.Windows.Forms.Label lblPopupAuthor;
            System.Windows.Forms.Label lblIconsAuthor;
            System.Windows.Forms.LinkLabel llblPopupLink;
            System.Windows.Forms.LinkLabel llblToolStripLink;
            System.Windows.Forms.Label lblToolStripAuthor;
            System.Windows.Forms.GroupBox gbVersionInfo;
            System.Windows.Forms.TableLayoutPanel tlpVersions;
            System.Windows.Forms.Label lblBuildDateLabel;
            System.Windows.Forms.Label lblAssemblyVersion;
            System.Windows.Forms.Label lblApplicationVersion;
            System.Windows.Forms.Label lblAboutApplication;
            System.Windows.Forms.GroupBox gbActions;
            System.Windows.Forms.TableLayoutPanel tlpSettings;
            System.Windows.Forms.GroupBox gbUISettings;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.Label lblUISettingAppliedAfterRestart;
            System.Windows.Forms.GroupBox gbCustomMetadata;
            System.Windows.Forms.TableLayoutPanel tlpCustomMetadata;
            System.Windows.Forms.GroupBox gbPortableSettings;
            System.Windows.Forms.TableLayoutPanel tlpPortabilitySettings;
            System.Windows.Forms.Label lblFileOptions;
            System.Windows.Forms.GroupBox gbConnectivity;
            System.Windows.Forms.TableLayoutPanel tlpConnectivityOptions;
            System.Windows.Forms.Label lblConnectivitySettingsAppliedAfterRestart;
            System.Windows.Forms.TableLayoutPanel tlpReports;
            System.Windows.Forms.GroupBox gbReportList;
            System.Windows.Forms.GroupBox gbExternalReports;
            System.Windows.Forms.TableLayoutPanel tlpExternalReports;
            System.Windows.Forms.GroupBox gbReportParemeters;
            System.Windows.Forms.TableLayoutPanel tlpAccounts;
            System.Windows.Forms.GroupBox gbAccountList;
            System.Windows.Forms.TableLayoutPanel tlpAccountList;
            System.Windows.Forms.TableLayoutPanel tlpPlans;
            System.Windows.Forms.GroupBox gbPlannedTransactionList;
            System.Windows.Forms.TableLayoutPanel tlpPlannedTransactionList;
            System.Windows.Forms.TableLayoutPanel tlpTransactions;
            System.Windows.Forms.GroupBox gbTransactionList;
            System.Windows.Forms.TableLayoutPanel tlpTransactionList;
            System.Windows.Forms.TableLayoutPanel tlpWelcome;
            System.Windows.Forms.GroupBox gbDebitAccounts;
            System.Windows.Forms.TableLayoutPanel tlpAssets;
            System.Windows.Forms.Label lblAssetsTitle;
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.GroupBox gbCreditAccounts;
            System.Windows.Forms.TableLayoutPanel tlpDebts;
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.Label lblDebtsTitle;
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.ToolStripSeparator tssSeparator;
            System.Windows.Forms.ToolStripLabel tslSearch;
            this.scSearchTabSplit = new System.Windows.Forms.SplitContainer();
            this.flpTagFlow = new System.Windows.Forms.FlowLayoutPanel();
            this.tsSearch = new System.Windows.Forms.ToolStrip();
            this.tsstbSearchText = new easyMoney.Controls.ToolStripSpringTextBox();
            this.tsbDisplaySearchResults = new System.Windows.Forms.ToolStripButton();
            this.dgvSearchResults = new System.Windows.Forms.DataGridView();
            this.dgvcSearchResultsType = new System.Windows.Forms.DataGridViewImageColumn();
            this.dgvcSearchResultsTitle = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dgvcSearchResultsDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dgvcSearchResultsAmount = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dgvcSearchResultsTags = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.lblBuildDate = new System.Windows.Forms.Label();
            this.lblVersionAssembly = new System.Windows.Forms.Label();
            this.lblVersionApplication = new System.Windows.Forms.Label();
            this.btnShowIntroduction = new System.Windows.Forms.Button();
            this.tlpMaintenanceActions = new System.Windows.Forms.TableLayoutPanel();
            this.btnCheckForUpdates = new System.Windows.Forms.Button();
            this.lblMaintenanceActions = new System.Windows.Forms.Label();
            this.btnOpenDevelopmentSite = new System.Windows.Forms.Button();
            this.lblInterfaceLanguage = new System.Windows.Forms.Label();
            this.rbLanguageSystemDefault = new System.Windows.Forms.RadioButton();
            this.rbLanguageEnglish = new System.Windows.Forms.RadioButton();
            this.rbLanguageRussian = new System.Windows.Forms.RadioButton();
            this.cbShowFilenameInTitle = new System.Windows.Forms.CheckBox();
            this.btnMetadata = new System.Windows.Forms.Button();
            this.lblMetadataDescription = new System.Windows.Forms.Label();
            this.btnClearCustomMetadata = new System.Windows.Forms.Button();
            this.lblFilePassword2 = new System.Windows.Forms.Label();
            this.tbFilePassword2 = new System.Windows.Forms.TextBox();
            this.cbShowOpenDialogEachStart = new System.Windows.Forms.CheckBox();
            this.btnOpenDataFile = new System.Windows.Forms.Button();
            this.btnSaveAsDataFile = new System.Windows.Forms.Button();
            this.cbEncryptFileWithPassword = new System.Windows.Forms.CheckBox();
            this.tbFilePassword1 = new System.Windows.Forms.TextBox();
            this.lblPasswordValid = new System.Windows.Forms.Label();
            this.lblFilePassword1 = new System.Windows.Forms.Label();
            this.lblPortabilityInfo = new System.Windows.Forms.Label();
            this.cbAllowAutoUpdate = new System.Windows.Forms.CheckBox();
            this.lbReports = new System.Windows.Forms.ListBox();
            this.btnOpenExternalReports = new System.Windows.Forms.Button();
            this.lblExternalReports = new System.Windows.Forms.Label();
            this.tlpReportParameters = new System.Windows.Forms.TableLayoutPanel();
            this.btnRunReport = new System.Windows.Forms.Button();
            this.panelReportParameters = new System.Windows.Forms.Panel();
            this.btnNewCreditAccount = new System.Windows.Forms.Button();
            this.lbAccounts = new System.Windows.Forms.ListBox();
            this.btnNewDebitAccount = new System.Windows.Forms.Button();
            this.cbAccountsShowAll = new System.Windows.Forms.CheckBox();
            this.gbAccountDetails = new System.Windows.Forms.GroupBox();
            this.tlpAccountDetails = new System.Windows.Forms.TableLayoutPanel();
            this.tbAccountTags = new System.Windows.Forms.TextBox();
            this.tbAccountBalance = new System.Windows.Forms.TextBox();
            this.lblAccountTags = new System.Windows.Forms.Label();
            this.tbAccountDescription = new System.Windows.Forms.TextBox();
            this.lblAccountDescription = new System.Windows.Forms.Label();
            this.lblAccountBalance = new System.Windows.Forms.Label();
            this.lblAccountType = new System.Windows.Forms.Label();
            this.lblAccountTitle = new System.Windows.Forms.Label();
            this.tbAccountTitle = new System.Windows.Forms.TextBox();
            this.btnAccountEdit = new System.Windows.Forms.Button();
            this.btnAccountBalance = new System.Windows.Forms.Button();
            this.btnAccountDelete = new System.Windows.Forms.Button();
            this.tbAccountType = new System.Windows.Forms.TextBox();
            this.btnPlanIncome = new System.Windows.Forms.Button();
            this.lbPlannedTransactions = new System.Windows.Forms.ListBox();
            this.btnPlanPayment = new System.Windows.Forms.Button();
            this.cbPlannedTransactionsShowAll = new System.Windows.Forms.CheckBox();
            this.gbPlannedTransactionDetails = new System.Windows.Forms.GroupBox();
            this.tlpPlannedTransactionDetails = new System.Windows.Forms.TableLayoutPanel();
            this.lblPlannedTransactionTags = new System.Windows.Forms.Label();
            this.tbPlannedTransactionDescription = new System.Windows.Forms.TextBox();
            this.lblPlannedTransactionDescription = new System.Windows.Forms.Label();
            this.lblPlannedTransactionAmount = new System.Windows.Forms.Label();
            this.lblPlannedTransactionAccountType = new System.Windows.Forms.Label();
            this.lblPlannedTransactionType = new System.Windows.Forms.Label();
            this.lblPlannedTransactionTitle = new System.Windows.Forms.Label();
            this.lblPlannedTransactionDateTime = new System.Windows.Forms.Label();
            this.tbPlannedTransactionTitle = new System.Windows.Forms.TextBox();
            this.btnPlannedTransactionEdit = new System.Windows.Forms.Button();
            this.btnPlannedTransactionCopy = new System.Windows.Forms.Button();
            this.btnPlannedTransactionDelete = new System.Windows.Forms.Button();
            this.lblPlannedTransactionRecurrency = new System.Windows.Forms.Label();
            this.tbPlannedTransactionType = new System.Windows.Forms.TextBox();
            this.tbPlannedTransactionStartDate = new System.Windows.Forms.TextBox();
            this.tbPlannedTransactionAccountType = new System.Windows.Forms.TextBox();
            this.tbPlannedTransactionAmount = new System.Windows.Forms.TextBox();
            this.tbPlannedTransactionRecurrency = new System.Windows.Forms.TextBox();
            this.tbPlannedTransactionTags = new System.Windows.Forms.TextBox();
            this.btnPlannedTransactionImplement = new System.Windows.Forms.Button();
            this.btnAddIncomeTransaction = new System.Windows.Forms.Button();
            this.lbTransactions = new System.Windows.Forms.ListBox();
            this.btnAddPaymentTransaction = new System.Windows.Forms.Button();
            this.cbTransactionsShowAll = new System.Windows.Forms.CheckBox();
            this.gbTransactionDetails = new System.Windows.Forms.GroupBox();
            this.tlpTransactionDetails = new System.Windows.Forms.TableLayoutPanel();
            this.lblTransactionTags = new System.Windows.Forms.Label();
            this.tbTransactionDescription = new System.Windows.Forms.TextBox();
            this.lblTransactionDescription = new System.Windows.Forms.Label();
            this.lblTransactionAmount = new System.Windows.Forms.Label();
            this.lblTransactionAccount = new System.Windows.Forms.Label();
            this.lblTransactionType = new System.Windows.Forms.Label();
            this.lblTransactionTitle = new System.Windows.Forms.Label();
            this.lblTransactionDateTime = new System.Windows.Forms.Label();
            this.tbTransactionTitle = new System.Windows.Forms.TextBox();
            this.btnTransactionDelete = new System.Windows.Forms.Button();
            this.tbTransactionType = new System.Windows.Forms.TextBox();
            this.tbTransactionTime = new System.Windows.Forms.TextBox();
            this.tbTransactionAccount = new System.Windows.Forms.TextBox();
            this.tbTransactionAmount = new System.Windows.Forms.TextBox();
            this.tbTransactionTags = new System.Windows.Forms.TextBox();
            this.lblTransactionPlan = new System.Windows.Forms.Label();
            this.tbTransactionPlan = new System.Windows.Forms.TextBox();
            this.lblMonthPlannedTotals = new System.Windows.Forms.Label();
            this.lblAssets = new System.Windows.Forms.Label();
            this.chartAssets = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.lblMonthActualTotals = new System.Windows.Forms.Label();
            this.chartDebts = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.lblDebts = new System.Windows.Forms.Label();
            this.gbMonthPlans = new System.Windows.Forms.GroupBox();
            this.dgvPlans = new System.Windows.Forms.DataGridView();
            this.dgvcPlansDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dgvcPlansTransactionType = new System.Windows.Forms.DataGridViewImageColumn();
            this.dgvcPlansAmount = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dgvcPlansTitle = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.gbRecentTransactions = new System.Windows.Forms.GroupBox();
            this.dgvRecentTransactions = new System.Windows.Forms.DataGridView();
            this.dgvcRecentDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dgvcRecentTransactionType = new System.Windows.Forms.DataGridViewImageColumn();
            this.dgvcRecentAmount = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dgvcRecentTitle = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tsMain = new System.Windows.Forms.ToolStrip();
            this.tsddbNewTransaction = new System.Windows.Forms.ToolStripDropDownButton();
            this.tsmiNewPaymentTransaction = new System.Windows.Forms.ToolStripMenuItem();
            this.tsmiNewIncomeTransaction = new System.Windows.Forms.ToolStripMenuItem();
            this.tsddbNewPlan = new System.Windows.Forms.ToolStripDropDownButton();
            this.tsmiPlanAPayment = new System.Windows.Forms.ToolStripMenuItem();
            this.tsmiPlanAnIncome = new System.Windows.Forms.ToolStripMenuItem();
            this.tsbMonthBalance = new System.Windows.Forms.ToolStripButton();
            this.tsstbSearchString = new easyMoney.Controls.ToolStripSpringTextBox();
            this.tsbSearch = new System.Windows.Forms.ToolStripButton();
            this.imageListTabs = new System.Windows.Forms.ImageList(this.components);
            this.toolTipMain = new System.Windows.Forms.ToolTip(this.components);
            this.cmsSearchResults = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.tsmiOpenResult = new System.Windows.Forms.ToolStripMenuItem();
            this.tsmiEditResult = new System.Windows.Forms.ToolStripMenuItem();
            this.tsmiAccountBalanceCorrection = new System.Windows.Forms.ToolStripMenuItem();
            this.tsmiSubmitPlanTransaction = new System.Windows.Forms.ToolStripMenuItem();
            this.tssSearchResultsSeparator = new System.Windows.Forms.ToolStripSeparator();
            this.tsmiDeleteResult = new System.Windows.Forms.ToolStripMenuItem();
            this.cmsTag = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.tsmiShowTagUsages = new System.Windows.Forms.ToolStripMenuItem();
            this.tsmiRenameTag = new System.Windows.Forms.ToolStripMenuItem();
            this.tsmiDeleteTag = new System.Windows.Forms.ToolStripMenuItem();
            this.BottomToolStripPanel = new System.Windows.Forms.ToolStripPanel();
            this.TopToolStripPanel = new System.Windows.Forms.ToolStripPanel();
            this.RightToolStripPanel = new System.Windows.Forms.ToolStripPanel();
            this.LeftToolStripPanel = new System.Windows.Forms.ToolStripPanel();
            this.ContentPanel = new System.Windows.Forms.ToolStripContentPanel();
            this.tabsMain = new System.Windows.Forms.TabControl();
            this.tabWelcome = new System.Windows.Forms.TabPage();
            this.tabTransactions = new System.Windows.Forms.TabPage();
            this.tabPlannedTransactions = new System.Windows.Forms.TabPage();
            this.tabAccounts = new System.Windows.Forms.TabPage();
            this.tabReports = new System.Windows.Forms.TabPage();
            this.tabSearch = new System.Windows.Forms.TabPage();
            this.tabSettings = new System.Windows.Forms.TabPage();
            this.tabAbout = new System.Windows.Forms.TabPage();
            this.bgwUpdateCheck = new System.ComponentModel.BackgroundWorker();
            this.fdOpenData = new System.Windows.Forms.OpenFileDialog();
            this.fdSaveData = new System.Windows.Forms.SaveFileDialog();
            tssTagSeparator = new System.Windows.Forms.ToolStripSeparator();
            gbTags = new System.Windows.Forms.GroupBox();
            gbSearch = new System.Windows.Forms.GroupBox();
            tlpSearchResults = new System.Windows.Forms.TableLayoutPanel();
            tlpAbout = new System.Windows.Forms.TableLayoutPanel();
            gbLogo = new System.Windows.Forms.GroupBox();
            gbThirdPartyComponents = new System.Windows.Forms.GroupBox();
            tlpThirdPartyComponents = new System.Windows.Forms.TableLayoutPanel();
            llblSilkHomepage = new System.Windows.Forms.LinkLabel();
            lblSilkIconSetAuthor = new System.Windows.Forms.Label();
            llblIconsLink = new System.Windows.Forms.LinkLabel();
            lblPopupAuthor = new System.Windows.Forms.Label();
            lblIconsAuthor = new System.Windows.Forms.Label();
            llblPopupLink = new System.Windows.Forms.LinkLabel();
            llblToolStripLink = new System.Windows.Forms.LinkLabel();
            lblToolStripAuthor = new System.Windows.Forms.Label();
            gbVersionInfo = new System.Windows.Forms.GroupBox();
            tlpVersions = new System.Windows.Forms.TableLayoutPanel();
            lblBuildDateLabel = new System.Windows.Forms.Label();
            lblAssemblyVersion = new System.Windows.Forms.Label();
            lblApplicationVersion = new System.Windows.Forms.Label();
            lblAboutApplication = new System.Windows.Forms.Label();
            gbActions = new System.Windows.Forms.GroupBox();
            tlpSettings = new System.Windows.Forms.TableLayoutPanel();
            gbUISettings = new System.Windows.Forms.GroupBox();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            lblUISettingAppliedAfterRestart = new System.Windows.Forms.Label();
            gbCustomMetadata = new System.Windows.Forms.GroupBox();
            tlpCustomMetadata = new System.Windows.Forms.TableLayoutPanel();
            gbPortableSettings = new System.Windows.Forms.GroupBox();
            tlpPortabilitySettings = new System.Windows.Forms.TableLayoutPanel();
            lblFileOptions = new System.Windows.Forms.Label();
            gbConnectivity = new System.Windows.Forms.GroupBox();
            tlpConnectivityOptions = new System.Windows.Forms.TableLayoutPanel();
            lblConnectivitySettingsAppliedAfterRestart = new System.Windows.Forms.Label();
            tlpReports = new System.Windows.Forms.TableLayoutPanel();
            gbReportList = new System.Windows.Forms.GroupBox();
            gbExternalReports = new System.Windows.Forms.GroupBox();
            tlpExternalReports = new System.Windows.Forms.TableLayoutPanel();
            gbReportParemeters = new System.Windows.Forms.GroupBox();
            tlpAccounts = new System.Windows.Forms.TableLayoutPanel();
            gbAccountList = new System.Windows.Forms.GroupBox();
            tlpAccountList = new System.Windows.Forms.TableLayoutPanel();
            tlpPlans = new System.Windows.Forms.TableLayoutPanel();
            gbPlannedTransactionList = new System.Windows.Forms.GroupBox();
            tlpPlannedTransactionList = new System.Windows.Forms.TableLayoutPanel();
            tlpTransactions = new System.Windows.Forms.TableLayoutPanel();
            gbTransactionList = new System.Windows.Forms.GroupBox();
            tlpTransactionList = new System.Windows.Forms.TableLayoutPanel();
            tlpWelcome = new System.Windows.Forms.TableLayoutPanel();
            gbDebitAccounts = new System.Windows.Forms.GroupBox();
            tlpAssets = new System.Windows.Forms.TableLayoutPanel();
            lblAssetsTitle = new System.Windows.Forms.Label();
            gbCreditAccounts = new System.Windows.Forms.GroupBox();
            tlpDebts = new System.Windows.Forms.TableLayoutPanel();
            lblDebtsTitle = new System.Windows.Forms.Label();
            tssSeparator = new System.Windows.Forms.ToolStripSeparator();
            tslSearch = new System.Windows.Forms.ToolStripLabel();
            ((System.ComponentModel.ISupportInitialize)(this.scSearchTabSplit)).BeginInit();
            this.scSearchTabSplit.Panel1.SuspendLayout();
            this.scSearchTabSplit.Panel2.SuspendLayout();
            this.scSearchTabSplit.SuspendLayout();
            gbTags.SuspendLayout();
            gbSearch.SuspendLayout();
            tlpSearchResults.SuspendLayout();
            this.tsSearch.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgvSearchResults)).BeginInit();
            tlpAbout.SuspendLayout();
            gbLogo.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            gbThirdPartyComponents.SuspendLayout();
            tlpThirdPartyComponents.SuspendLayout();
            gbVersionInfo.SuspendLayout();
            tlpVersions.SuspendLayout();
            gbActions.SuspendLayout();
            this.tlpMaintenanceActions.SuspendLayout();
            tlpSettings.SuspendLayout();
            gbUISettings.SuspendLayout();
            tableLayoutPanel1.SuspendLayout();
            gbCustomMetadata.SuspendLayout();
            tlpCustomMetadata.SuspendLayout();
            gbPortableSettings.SuspendLayout();
            tlpPortabilitySettings.SuspendLayout();
            gbConnectivity.SuspendLayout();
            tlpConnectivityOptions.SuspendLayout();
            tlpReports.SuspendLayout();
            gbReportList.SuspendLayout();
            gbExternalReports.SuspendLayout();
            tlpExternalReports.SuspendLayout();
            gbReportParemeters.SuspendLayout();
            this.tlpReportParameters.SuspendLayout();
            tlpAccounts.SuspendLayout();
            gbAccountList.SuspendLayout();
            tlpAccountList.SuspendLayout();
            this.gbAccountDetails.SuspendLayout();
            this.tlpAccountDetails.SuspendLayout();
            tlpPlans.SuspendLayout();
            gbPlannedTransactionList.SuspendLayout();
            tlpPlannedTransactionList.SuspendLayout();
            this.gbPlannedTransactionDetails.SuspendLayout();
            this.tlpPlannedTransactionDetails.SuspendLayout();
            tlpTransactions.SuspendLayout();
            gbTransactionList.SuspendLayout();
            tlpTransactionList.SuspendLayout();
            this.gbTransactionDetails.SuspendLayout();
            this.tlpTransactionDetails.SuspendLayout();
            tlpWelcome.SuspendLayout();
            gbDebitAccounts.SuspendLayout();
            tlpAssets.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartAssets)).BeginInit();
            gbCreditAccounts.SuspendLayout();
            tlpDebts.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartDebts)).BeginInit();
            this.gbMonthPlans.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPlans)).BeginInit();
            this.gbRecentTransactions.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgvRecentTransactions)).BeginInit();
            this.tsMain.SuspendLayout();
            this.cmsSearchResults.SuspendLayout();
            this.cmsTag.SuspendLayout();
            this.tabsMain.SuspendLayout();
            this.tabWelcome.SuspendLayout();
            this.tabTransactions.SuspendLayout();
            this.tabPlannedTransactions.SuspendLayout();
            this.tabAccounts.SuspendLayout();
            this.tabReports.SuspendLayout();
            this.tabSearch.SuspendLayout();
            this.tabSettings.SuspendLayout();
            this.tabAbout.SuspendLayout();
            this.SuspendLayout();
            // 
            // tssTagSeparator
            // 
            resources.ApplyResources(tssTagSeparator, "tssTagSeparator");
            tssTagSeparator.Name = "tssTagSeparator";
            // 
            // scSearchTabSplit
            // 
            resources.ApplyResources(this.scSearchTabSplit, "scSearchTabSplit");
            this.scSearchTabSplit.Name = "scSearchTabSplit";
            // 
            // scSearchTabSplit.Panel1
            // 
            resources.ApplyResources(this.scSearchTabSplit.Panel1, "scSearchTabSplit.Panel1");
            this.scSearchTabSplit.Panel1.Controls.Add(gbTags);
            this.toolTipMain.SetToolTip(this.scSearchTabSplit.Panel1, resources.GetString("scSearchTabSplit.Panel1.ToolTip"));
            // 
            // scSearchTabSplit.Panel2
            // 
            resources.ApplyResources(this.scSearchTabSplit.Panel2, "scSearchTabSplit.Panel2");
            this.scSearchTabSplit.Panel2.Controls.Add(gbSearch);
            this.toolTipMain.SetToolTip(this.scSearchTabSplit.Panel2, resources.GetString("scSearchTabSplit.Panel2.ToolTip"));
            this.scSearchTabSplit.TabStop = false;
            this.toolTipMain.SetToolTip(this.scSearchTabSplit, resources.GetString("scSearchTabSplit.ToolTip"));
            // 
            // gbTags
            // 
            resources.ApplyResources(gbTags, "gbTags");
            gbTags.Controls.Add(this.flpTagFlow);
            gbTags.Name = "gbTags";
            gbTags.TabStop = false;
            this.toolTipMain.SetToolTip(gbTags, resources.GetString("gbTags.ToolTip"));
            // 
            // flpTagFlow
            // 
            resources.ApplyResources(this.flpTagFlow, "flpTagFlow");
            this.flpTagFlow.Name = "flpTagFlow";
            this.toolTipMain.SetToolTip(this.flpTagFlow, resources.GetString("flpTagFlow.ToolTip"));
            // 
            // gbSearch
            // 
            resources.ApplyResources(gbSearch, "gbSearch");
            gbSearch.Controls.Add(tlpSearchResults);
            gbSearch.Name = "gbSearch";
            gbSearch.TabStop = false;
            this.toolTipMain.SetToolTip(gbSearch, resources.GetString("gbSearch.ToolTip"));
            // 
            // tlpSearchResults
            // 
            resources.ApplyResources(tlpSearchResults, "tlpSearchResults");
            tlpSearchResults.Controls.Add(this.tsSearch, 0, 0);
            tlpSearchResults.Controls.Add(this.dgvSearchResults, 0, 1);
            tlpSearchResults.Name = "tlpSearchResults";
            this.toolTipMain.SetToolTip(tlpSearchResults, resources.GetString("tlpSearchResults.ToolTip"));
            // 
            // tsSearch
            // 
            resources.ApplyResources(this.tsSearch, "tsSearch");
            this.tsSearch.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.tsSearch.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsstbSearchText,
            this.tsbDisplaySearchResults});
            this.tsSearch.Name = "tsSearch";
            this.tsSearch.TabStop = true;
            this.toolTipMain.SetToolTip(this.tsSearch, resources.GetString("tsSearch.ToolTip"));
            // 
            // tsstbSearchText
            // 
            resources.ApplyResources(this.tsstbSearchText, "tsstbSearchText");
            this.tsstbSearchText.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
            this.tsstbSearchText.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
            this.tsstbSearchText.Name = "tsstbSearchText";
            this.tsstbSearchText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tsstbSearchText_KeyDown);
            // 
            // tsbDisplaySearchResults
            // 
            resources.ApplyResources(this.tsbDisplaySearchResults, "tsbDisplaySearchResults");
            this.tsbDisplaySearchResults.Image = global::easyMoney.Manager.Properties.Resources.magnifier;
            this.tsbDisplaySearchResults.Name = "tsbDisplaySearchResults";
            this.tsbDisplaySearchResults.Click += new System.EventHandler(this.tsbDisplaySearchResults_Click);
            // 
            // dgvSearchResults
            // 
            resources.ApplyResources(this.dgvSearchResults, "dgvSearchResults");
            this.dgvSearchResults.AllowUserToAddRows = false;
            this.dgvSearchResults.AllowUserToDeleteRows = false;
            this.dgvSearchResults.AllowUserToOrderColumns = true;
            this.dgvSearchResults.AllowUserToResizeRows = false;
            this.dgvSearchResults.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvSearchResults.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            this.dgvSearchResults.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvSearchResults.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
            this.dgvSearchResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvSearchResults.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dgvcSearchResultsType,
            this.dgvcSearchResultsTitle,
            this.dgvcSearchResultsDate,
            this.dgvcSearchResultsAmount,
            this.dgvcSearchResultsTags});
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvSearchResults.DefaultCellStyle = dataGridViewCellStyle4;
            this.dgvSearchResults.MultiSelect = false;
            this.dgvSearchResults.Name = "dgvSearchResults";
            this.dgvSearchResults.ReadOnly = true;
            this.dgvSearchResults.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvSearchResults.RowHeadersDefaultCellStyle = dataGridViewCellStyle5;
            this.dgvSearchResults.RowHeadersVisible = false;
            this.dgvSearchResults.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvSearchResults.ShowEditingIcon = false;
            this.toolTipMain.SetToolTip(this.dgvSearchResults, resources.GetString("dgvSearchResults.ToolTip"));
            this.dgvSearchResults.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvSearchResults_CellDoubleClick);
            this.dgvSearchResults.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dgvSearchResults_KeyDown);
            this.dgvSearchResults.MouseClick += new System.Windows.Forms.MouseEventHandler(this.dgvSearchResults_MouseClick);
            // 
            // dgvcSearchResultsType
            // 
            resources.ApplyResources(this.dgvcSearchResultsType, "dgvcSearchResultsType");
            this.dgvcSearchResultsType.Name = "dgvcSearchResultsType";
            this.dgvcSearchResultsType.ReadOnly = true;
            // 
            // dgvcSearchResultsTitle
            // 
            resources.ApplyResources(this.dgvcSearchResultsTitle, "dgvcSearchResultsTitle");
            this.dgvcSearchResultsTitle.Name = "dgvcSearchResultsTitle";
            this.dgvcSearchResultsTitle.ReadOnly = true;
            // 
            // dgvcSearchResultsDate
            // 
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle2.Format = "d";
            this.dgvcSearchResultsDate.DefaultCellStyle = dataGridViewCellStyle2;
            resources.ApplyResources(this.dgvcSearchResultsDate, "dgvcSearchResultsDate");
            this.dgvcSearchResultsDate.Name = "dgvcSearchResultsDate";
            this.dgvcSearchResultsDate.ReadOnly = true;
            // 
            // dgvcSearchResultsAmount
            // 
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.dgvcSearchResultsAmount.DefaultCellStyle = dataGridViewCellStyle3;
            resources.ApplyResources(this.dgvcSearchResultsAmount, "dgvcSearchResultsAmount");
            this.dgvcSearchResultsAmount.Name = "dgvcSearchResultsAmount";
            this.dgvcSearchResultsAmount.ReadOnly = true;
            // 
            // dgvcSearchResultsTags
            // 
            this.dgvcSearchResultsTags.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.dgvcSearchResultsTags, "dgvcSearchResultsTags");
            this.dgvcSearchResultsTags.Name = "dgvcSearchResultsTags";
            this.dgvcSearchResultsTags.ReadOnly = true;
            // 
            // tlpAbout
            // 
            resources.ApplyResources(tlpAbout, "tlpAbout");
            tlpAbout.Controls.Add(gbLogo, 0, 0);
            tlpAbout.Controls.Add(gbThirdPartyComponents, 0, 1);
            tlpAbout.Controls.Add(gbVersionInfo, 1, 0);
            tlpAbout.Controls.Add(gbActions, 1, 1);
            tlpAbout.Name = "tlpAbout";
            this.toolTipMain.SetToolTip(tlpAbout, resources.GetString("tlpAbout.ToolTip"));
            // 
            // gbLogo
            // 
            resources.ApplyResources(gbLogo, "gbLogo");
            gbLogo.Controls.Add(this.pictureBox1);
            gbLogo.Name = "gbLogo";
            gbLogo.TabStop = false;
            this.toolTipMain.SetToolTip(gbLogo, resources.GetString("gbLogo.ToolTip"));
            // 
            // pictureBox1
            // 
            resources.ApplyResources(this.pictureBox1, "pictureBox1");
            this.pictureBox1.Image = global::easyMoney.Manager.Properties.Resources.Coins_256x256;
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.TabStop = false;
            this.toolTipMain.SetToolTip(this.pictureBox1, resources.GetString("pictureBox1.ToolTip"));
            // 
            // gbThirdPartyComponents
            // 
            resources.ApplyResources(gbThirdPartyComponents, "gbThirdPartyComponents");
            gbThirdPartyComponents.Controls.Add(tlpThirdPartyComponents);
            gbThirdPartyComponents.Name = "gbThirdPartyComponents";
            gbThirdPartyComponents.TabStop = false;
            this.toolTipMain.SetToolTip(gbThirdPartyComponents, resources.GetString("gbThirdPartyComponents.ToolTip"));
            // 
            // tlpThirdPartyComponents
            // 
            resources.ApplyResources(tlpThirdPartyComponents, "tlpThirdPartyComponents");
            tlpThirdPartyComponents.Controls.Add(llblSilkHomepage, 0, 10);
            tlpThirdPartyComponents.Controls.Add(lblSilkIconSetAuthor, 0, 9);
            tlpThirdPartyComponents.Controls.Add(llblIconsLink, 0, 7);
            tlpThirdPartyComponents.Controls.Add(lblPopupAuthor, 0, 0);
            tlpThirdPartyComponents.Controls.Add(lblIconsAuthor, 0, 6);
            tlpThirdPartyComponents.Controls.Add(llblPopupLink, 0, 1);
            tlpThirdPartyComponents.Controls.Add(llblToolStripLink, 0, 4);
            tlpThirdPartyComponents.Controls.Add(lblToolStripAuthor, 0, 3);
            tlpThirdPartyComponents.Name = "tlpThirdPartyComponents";
            this.toolTipMain.SetToolTip(tlpThirdPartyComponents, resources.GetString("tlpThirdPartyComponents.ToolTip"));
            // 
            // llblSilkHomepage
            // 
            resources.ApplyResources(llblSilkHomepage, "llblSilkHomepage");
            llblSilkHomepage.Name = "llblSilkHomepage";
            llblSilkHomepage.TabStop = true;
            this.toolTipMain.SetToolTip(llblSilkHomepage, resources.GetString("llblSilkHomepage.ToolTip"));
            llblSilkHomepage.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
            // 
            // lblSilkIconSetAuthor
            // 
            resources.ApplyResources(lblSilkIconSetAuthor, "lblSilkIconSetAuthor");
            lblSilkIconSetAuthor.Name = "lblSilkIconSetAuthor";
            this.toolTipMain.SetToolTip(lblSilkIconSetAuthor, resources.GetString("lblSilkIconSetAuthor.ToolTip"));
            // 
            // llblIconsLink
            // 
            resources.ApplyResources(llblIconsLink, "llblIconsLink");
            llblIconsLink.Name = "llblIconsLink";
            llblIconsLink.TabStop = true;
            this.toolTipMain.SetToolTip(llblIconsLink, resources.GetString("llblIconsLink.ToolTip"));
            llblIconsLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
            // 
            // lblPopupAuthor
            // 
            resources.ApplyResources(lblPopupAuthor, "lblPopupAuthor");
            lblPopupAuthor.Name = "lblPopupAuthor";
            this.toolTipMain.SetToolTip(lblPopupAuthor, resources.GetString("lblPopupAuthor.ToolTip"));
            // 
            // lblIconsAuthor
            // 
            resources.ApplyResources(lblIconsAuthor, "lblIconsAuthor");
            lblIconsAuthor.Name = "lblIconsAuthor";
            this.toolTipMain.SetToolTip(lblIconsAuthor, resources.GetString("lblIconsAuthor.ToolTip"));
            // 
            // llblPopupLink
            // 
            resources.ApplyResources(llblPopupLink, "llblPopupLink");
            llblPopupLink.Name = "llblPopupLink";
            llblPopupLink.TabStop = true;
            this.toolTipMain.SetToolTip(llblPopupLink, resources.GetString("llblPopupLink.ToolTip"));
            llblPopupLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
            // 
            // llblToolStripLink
            // 
            resources.ApplyResources(llblToolStripLink, "llblToolStripLink");
            llblToolStripLink.Name = "llblToolStripLink";
            llblToolStripLink.TabStop = true;
            this.toolTipMain.SetToolTip(llblToolStripLink, resources.GetString("llblToolStripLink.ToolTip"));
            llblToolStripLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
            // 
            // lblToolStripAuthor
            // 
            resources.ApplyResources(lblToolStripAuthor, "lblToolStripAuthor");
            lblToolStripAuthor.Name = "lblToolStripAuthor";
            this.toolTipMain.SetToolTip(lblToolStripAuthor, resources.GetString("lblToolStripAuthor.ToolTip"));
            // 
            // gbVersionInfo
            // 
            resources.ApplyResources(gbVersionInfo, "gbVersionInfo");
            gbVersionInfo.Controls.Add(tlpVersions);
            gbVersionInfo.Name = "gbVersionInfo";
            gbVersionInfo.TabStop = false;
            this.toolTipMain.SetToolTip(gbVersionInfo, resources.GetString("gbVersionInfo.ToolTip"));
            // 
            // tlpVersions
            // 
            resources.ApplyResources(tlpVersions, "tlpVersions");
            tlpVersions.Controls.Add(this.lblBuildDate, 1, 2);
            tlpVersions.Controls.Add(this.lblVersionAssembly, 1, 1);
            tlpVersions.Controls.Add(lblBuildDateLabel, 0, 2);
            tlpVersions.Controls.Add(lblAssemblyVersion, 0, 1);
            tlpVersions.Controls.Add(lblApplicationVersion, 0, 0);
            tlpVersions.Controls.Add(this.lblVersionApplication, 1, 0);
            tlpVersions.Controls.Add(lblAboutApplication, 0, 3);
            tlpVersions.Controls.Add(this.btnShowIntroduction, 1, 4);
            tlpVersions.Name = "tlpVersions";
            this.toolTipMain.SetToolTip(tlpVersions, resources.GetString("tlpVersions.ToolTip"));
            // 
            // lblBuildDate
            // 
            resources.ApplyResources(this.lblBuildDate, "lblBuildDate");
            this.lblBuildDate.Name = "lblBuildDate";
            this.toolTipMain.SetToolTip(this.lblBuildDate, resources.GetString("lblBuildDate.ToolTip"));
            // 
            // lblVersionAssembly
            // 
            resources.ApplyResources(this.lblVersionAssembly, "lblVersionAssembly");
            this.lblVersionAssembly.Name = "lblVersionAssembly";
            this.toolTipMain.SetToolTip(this.lblVersionAssembly, resources.GetString("lblVersionAssembly.ToolTip"));
            // 
            // lblBuildDateLabel
            // 
            resources.ApplyResources(lblBuildDateLabel, "lblBuildDateLabel");
            lblBuildDateLabel.Name = "lblBuildDateLabel";
            this.toolTipMain.SetToolTip(lblBuildDateLabel, resources.GetString("lblBuildDateLabel.ToolTip"));
            // 
            // lblAssemblyVersion
            // 
            resources.ApplyResources(lblAssemblyVersion, "lblAssemblyVersion");
            lblAssemblyVersion.Name = "lblAssemblyVersion";
            this.toolTipMain.SetToolTip(lblAssemblyVersion, resources.GetString("lblAssemblyVersion.ToolTip"));
            // 
            // lblApplicationVersion
            // 
            resources.ApplyResources(lblApplicationVersion, "lblApplicationVersion");
            lblApplicationVersion.Name = "lblApplicationVersion";
            this.toolTipMain.SetToolTip(lblApplicationVersion, resources.GetString("lblApplicationVersion.ToolTip"));
            // 
            // lblVersionApplication
            // 
            resources.ApplyResources(this.lblVersionApplication, "lblVersionApplication");
            this.lblVersionApplication.Name = "lblVersionApplication";
            this.toolTipMain.SetToolTip(this.lblVersionApplication, resources.GetString("lblVersionApplication.ToolTip"));
            // 
            // lblAboutApplication
            // 
            resources.ApplyResources(lblAboutApplication, "lblAboutApplication");
            tlpVersions.SetColumnSpan(lblAboutApplication, 2);
            lblAboutApplication.Name = "lblAboutApplication";
            this.toolTipMain.SetToolTip(lblAboutApplication, resources.GetString("lblAboutApplication.ToolTip"));
            // 
            // btnShowIntroduction
            // 
            resources.ApplyResources(this.btnShowIntroduction, "btnShowIntroduction");
            this.btnShowIntroduction.Image = global::easyMoney.Manager.Properties.Resources.help;
            this.btnShowIntroduction.Name = "btnShowIntroduction";
            this.toolTipMain.SetToolTip(this.btnShowIntroduction, resources.GetString("btnShowIntroduction.ToolTip"));
            this.btnShowIntroduction.UseVisualStyleBackColor = true;
            this.btnShowIntroduction.Click += new System.EventHandler(this.btnShowIntroduction_Click);
            // 
            // gbActions
            // 
            resources.ApplyResources(gbActions, "gbActions");
            gbActions.Controls.Add(this.tlpMaintenanceActions);
            gbActions.Name = "gbActions";
            gbActions.TabStop = false;
            this.toolTipMain.SetToolTip(gbActions, resources.GetString("gbActions.ToolTip"));
            // 
            // tlpMaintenanceActions
            // 
            resources.ApplyResources(this.tlpMaintenanceActions, "tlpMaintenanceActions");
            this.tlpMaintenanceActions.Controls.Add(this.btnCheckForUpdates, 1, 1);
            this.tlpMaintenanceActions.Controls.Add(this.lblMaintenanceActions, 0, 0);
            this.tlpMaintenanceActions.Controls.Add(this.btnOpenDevelopmentSite, 0, 1);
            this.tlpMaintenanceActions.Name = "tlpMaintenanceActions";
            this.toolTipMain.SetToolTip(this.tlpMaintenanceActions, resources.GetString("tlpMaintenanceActions.ToolTip"));
            // 
            // btnCheckForUpdates
            // 
            resources.ApplyResources(this.btnCheckForUpdates, "btnCheckForUpdates");
            this.btnCheckForUpdates.Image = global::easyMoney.Manager.Properties.Resources.lightbulb;
            this.btnCheckForUpdates.Name = "btnCheckForUpdates";
            this.toolTipMain.SetToolTip(this.btnCheckForUpdates, resources.GetString("btnCheckForUpdates.ToolTip"));
            this.btnCheckForUpdates.UseVisualStyleBackColor = true;
            this.btnCheckForUpdates.Click += new System.EventHandler(this.btnCheckForUpdates_Click);
            // 
            // lblMaintenanceActions
            // 
            resources.ApplyResources(this.lblMaintenanceActions, "lblMaintenanceActions");
            this.tlpMaintenanceActions.SetColumnSpan(this.lblMaintenanceActions, 2);
            this.lblMaintenanceActions.Name = "lblMaintenanceActions";
            this.toolTipMain.SetToolTip(this.lblMaintenanceActions, resources.GetString("lblMaintenanceActions.ToolTip"));
            // 
            // btnOpenDevelopmentSite
            // 
            resources.ApplyResources(this.btnOpenDevelopmentSite, "btnOpenDevelopmentSite");
            this.btnOpenDevelopmentSite.Image = global::easyMoney.Manager.Properties.Resources.world;
            this.btnOpenDevelopmentSite.Name = "btnOpenDevelopmentSite";
            this.toolTipMain.SetToolTip(this.btnOpenDevelopmentSite, resources.GetString("btnOpenDevelopmentSite.ToolTip"));
            this.btnOpenDevelopmentSite.UseVisualStyleBackColor = true;
            this.btnOpenDevelopmentSite.Click += new System.EventHandler(this.btnOpenDevelopmentSite_Click);
            // 
            // tlpSettings
            // 
            resources.ApplyResources(tlpSettings, "tlpSettings");
            tlpSettings.Controls.Add(gbUISettings, 0, 0);
            tlpSettings.Controls.Add(gbCustomMetadata, 1, 0);
            tlpSettings.Controls.Add(gbPortableSettings, 0, 1);
            tlpSettings.Controls.Add(gbConnectivity, 1, 1);
            tlpSettings.Name = "tlpSettings";
            this.toolTipMain.SetToolTip(tlpSettings, resources.GetString("tlpSettings.ToolTip"));
            // 
            // gbUISettings
            // 
            resources.ApplyResources(gbUISettings, "gbUISettings");
            gbUISettings.Controls.Add(tableLayoutPanel1);
            gbUISettings.Name = "gbUISettings";
            gbUISettings.TabStop = false;
            this.toolTipMain.SetToolTip(gbUISettings, resources.GetString("gbUISettings.ToolTip"));
            // 
            // tableLayoutPanel1
            // 
            resources.ApplyResources(tableLayoutPanel1, "tableLayoutPanel1");
            tableLayoutPanel1.Controls.Add(this.lblInterfaceLanguage, 0, 0);
            tableLayoutPanel1.Controls.Add(this.rbLanguageSystemDefault, 0, 1);
            tableLayoutPanel1.Controls.Add(this.rbLanguageEnglish, 0, 2);
            tableLayoutPanel1.Controls.Add(this.rbLanguageRussian, 0, 3);
            tableLayoutPanel1.Controls.Add(this.cbShowFilenameInTitle, 0, 4);
            tableLayoutPanel1.Controls.Add(lblUISettingAppliedAfterRestart, 0, 8);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.toolTipMain.SetToolTip(tableLayoutPanel1, resources.GetString("tableLayoutPanel1.ToolTip"));
            // 
            // lblInterfaceLanguage
            // 
            resources.ApplyResources(this.lblInterfaceLanguage, "lblInterfaceLanguage");
            this.lblInterfaceLanguage.Name = "lblInterfaceLanguage";
            this.toolTipMain.SetToolTip(this.lblInterfaceLanguage, resources.GetString("lblInterfaceLanguage.ToolTip"));
            // 
            // rbLanguageSystemDefault
            // 
            resources.ApplyResources(this.rbLanguageSystemDefault, "rbLanguageSystemDefault");
            this.rbLanguageSystemDefault.Name = "rbLanguageSystemDefault";
            this.rbLanguageSystemDefault.TabStop = true;
            this.toolTipMain.SetToolTip(this.rbLanguageSystemDefault, resources.GetString("rbLanguageSystemDefault.ToolTip"));
            this.rbLanguageSystemDefault.UseVisualStyleBackColor = true;
            this.rbLanguageSystemDefault.CheckedChanged += new System.EventHandler(this.rbLanguage_CheckedChanged);
            // 
            // rbLanguageEnglish
            // 
            resources.ApplyResources(this.rbLanguageEnglish, "rbLanguageEnglish");
            this.rbLanguageEnglish.Name = "rbLanguageEnglish";
            this.rbLanguageEnglish.TabStop = true;
            this.toolTipMain.SetToolTip(this.rbLanguageEnglish, resources.GetString("rbLanguageEnglish.ToolTip"));
            this.rbLanguageEnglish.UseVisualStyleBackColor = true;
            this.rbLanguageEnglish.CheckedChanged += new System.EventHandler(this.rbLanguage_CheckedChanged);
            // 
            // rbLanguageRussian
            // 
            resources.ApplyResources(this.rbLanguageRussian, "rbLanguageRussian");
            this.rbLanguageRussian.Name = "rbLanguageRussian";
            this.rbLanguageRussian.TabStop = true;
            this.toolTipMain.SetToolTip(this.rbLanguageRussian, resources.GetString("rbLanguageRussian.ToolTip"));
            this.rbLanguageRussian.UseVisualStyleBackColor = true;
            this.rbLanguageRussian.CheckedChanged += new System.EventHandler(this.rbLanguage_CheckedChanged);
            // 
            // cbShowFilenameInTitle
            // 
            resources.ApplyResources(this.cbShowFilenameInTitle, "cbShowFilenameInTitle");
            this.cbShowFilenameInTitle.Name = "cbShowFilenameInTitle";
            this.toolTipMain.SetToolTip(this.cbShowFilenameInTitle, resources.GetString("cbShowFilenameInTitle.ToolTip"));
            this.cbShowFilenameInTitle.UseVisualStyleBackColor = true;
            this.cbShowFilenameInTitle.CheckedChanged += new System.EventHandler(this.cbShowFilenameInTitle_CheckedChanged);
            // 
            // lblUISettingAppliedAfterRestart
            // 
            resources.ApplyResources(lblUISettingAppliedAfterRestart, "lblUISettingAppliedAfterRestart");
            lblUISettingAppliedAfterRestart.Name = "lblUISettingAppliedAfterRestart";
            this.toolTipMain.SetToolTip(lblUISettingAppliedAfterRestart, resources.GetString("lblUISettingAppliedAfterRestart.ToolTip"));
            // 
            // gbCustomMetadata
            // 
            resources.ApplyResources(gbCustomMetadata, "gbCustomMetadata");
            gbCustomMetadata.Controls.Add(tlpCustomMetadata);
            gbCustomMetadata.Name = "gbCustomMetadata";
            gbCustomMetadata.TabStop = false;
            this.toolTipMain.SetToolTip(gbCustomMetadata, resources.GetString("gbCustomMetadata.ToolTip"));
            // 
            // tlpCustomMetadata
            // 
            resources.ApplyResources(tlpCustomMetadata, "tlpCustomMetadata");
            tlpCustomMetadata.Controls.Add(this.btnMetadata, 0, 1);
            tlpCustomMetadata.Controls.Add(this.lblMetadataDescription, 0, 0);
            tlpCustomMetadata.Controls.Add(this.btnClearCustomMetadata, 1, 1);
            tlpCustomMetadata.Name = "tlpCustomMetadata";
            this.toolTipMain.SetToolTip(tlpCustomMetadata, resources.GetString("tlpCustomMetadata.ToolTip"));
            // 
            // btnMetadata
            // 
            resources.ApplyResources(this.btnMetadata, "btnMetadata");
            this.btnMetadata.Image = global::easyMoney.Manager.Properties.Resources.page;
            this.btnMetadata.Name = "btnMetadata";
            this.toolTipMain.SetToolTip(this.btnMetadata, resources.GetString("btnMetadata.ToolTip"));
            this.btnMetadata.UseVisualStyleBackColor = true;
            this.btnMetadata.Click += new System.EventHandler(this.btnMetadata_Click);
            // 
            // lblMetadataDescription
            // 
            resources.ApplyResources(this.lblMetadataDescription, "lblMetadataDescription");
            tlpCustomMetadata.SetColumnSpan(this.lblMetadataDescription, 2);
            this.lblMetadataDescription.Name = "lblMetadataDescription";
            this.toolTipMain.SetToolTip(this.lblMetadataDescription, resources.GetString("lblMetadataDescription.ToolTip"));
            // 
            // btnClearCustomMetadata
            // 
            resources.ApplyResources(this.btnClearCustomMetadata, "btnClearCustomMetadata");
            this.btnClearCustomMetadata.Image = global::easyMoney.Manager.Properties.Resources.exclamation;
            this.btnClearCustomMetadata.Name = "btnClearCustomMetadata";
            this.toolTipMain.SetToolTip(this.btnClearCustomMetadata, resources.GetString("btnClearCustomMetadata.ToolTip"));
            this.btnClearCustomMetadata.UseVisualStyleBackColor = true;
            this.btnClearCustomMetadata.Click += new System.EventHandler(this.btnClearCustomMetadata_Click);
            // 
            // gbPortableSettings
            // 
            resources.ApplyResources(gbPortableSettings, "gbPortableSettings");
            gbPortableSettings.Controls.Add(tlpPortabilitySettings);
            gbPortableSettings.Name = "gbPortableSettings";
            gbPortableSettings.TabStop = false;
            this.toolTipMain.SetToolTip(gbPortableSettings, resources.GetString("gbPortableSettings.ToolTip"));
            // 
            // tlpPortabilitySettings
            // 
            resources.ApplyResources(tlpPortabilitySettings, "tlpPortabilitySettings");
            tlpPortabilitySettings.Controls.Add(this.lblFilePassword2, 0, 5);
            tlpPortabilitySettings.Controls.Add(this.tbFilePassword2, 1, 5);
            tlpPortabilitySettings.Controls.Add(this.cbShowOpenDialogEachStart, 0, 0);
            tlpPortabilitySettings.Controls.Add(this.btnOpenDataFile, 0, 6);
            tlpPortabilitySettings.Controls.Add(this.btnSaveAsDataFile, 1, 6);
            tlpPortabilitySettings.Controls.Add(lblFileOptions, 0, 2);
            tlpPortabilitySettings.Controls.Add(this.cbEncryptFileWithPassword, 0, 3);
            tlpPortabilitySettings.Controls.Add(this.tbFilePassword1, 1, 4);
            tlpPortabilitySettings.Controls.Add(this.lblPasswordValid, 1, 3);
            tlpPortabilitySettings.Controls.Add(this.lblFilePassword1, 0, 4);
            tlpPortabilitySettings.Controls.Add(this.lblPortabilityInfo, 0, 1);
            tlpPortabilitySettings.Name = "tlpPortabilitySettings";
            this.toolTipMain.SetToolTip(tlpPortabilitySettings, resources.GetString("tlpPortabilitySettings.ToolTip"));
            // 
            // lblFilePassword2
            // 
            resources.ApplyResources(this.lblFilePassword2, "lblFilePassword2");
            this.lblFilePassword2.Name = "lblFilePassword2";
            this.toolTipMain.SetToolTip(this.lblFilePassword2, resources.GetString("lblFilePassword2.ToolTip"));
            // 
            // tbFilePassword2
            // 
            resources.ApplyResources(this.tbFilePassword2, "tbFilePassword2");
            this.tbFilePassword2.Name = "tbFilePassword2";
            this.toolTipMain.SetToolTip(this.tbFilePassword2, resources.GetString("tbFilePassword2.ToolTip"));
            this.tbFilePassword2.UseSystemPasswordChar = true;
            this.tbFilePassword2.TextChanged += new System.EventHandler(this.tbFilePassword_TextChanged);
            // 
            // cbShowOpenDialogEachStart
            // 
            resources.ApplyResources(this.cbShowOpenDialogEachStart, "cbShowOpenDialogEachStart");
            tlpPortabilitySettings.SetColumnSpan(this.cbShowOpenDialogEachStart, 2);
            this.cbShowOpenDialogEachStart.Name = "cbShowOpenDialogEachStart";
            this.toolTipMain.SetToolTip(this.cbShowOpenDialogEachStart, resources.GetString("cbShowOpenDialogEachStart.ToolTip"));
            this.cbShowOpenDialogEachStart.UseVisualStyleBackColor = true;
            this.cbShowOpenDialogEachStart.CheckedChanged += new System.EventHandler(this.cbShowOpenDialogEachStart_CheckedChanged);
            // 
            // btnOpenDataFile
            // 
            resources.ApplyResources(this.btnOpenDataFile, "btnOpenDataFile");
            this.btnOpenDataFile.Image = global::easyMoney.Manager.Properties.Resources.folder_page;
            this.btnOpenDataFile.Name = "btnOpenDataFile";
            this.toolTipMain.SetToolTip(this.btnOpenDataFile, resources.GetString("btnOpenDataFile.ToolTip"));
            this.btnOpenDataFile.UseVisualStyleBackColor = true;
            this.btnOpenDataFile.Click += new System.EventHandler(this.btnOpenDataFile_Click);
            // 
            // btnSaveAsDataFile
            // 
            resources.ApplyResources(this.btnSaveAsDataFile, "btnSaveAsDataFile");
            this.btnSaveAsDataFile.Image = global::easyMoney.Manager.Properties.Resources.disk;
            this.btnSaveAsDataFile.Name = "btnSaveAsDataFile";
            this.toolTipMain.SetToolTip(this.btnSaveAsDataFile, resources.GetString("btnSaveAsDataFile.ToolTip"));
            this.btnSaveAsDataFile.UseVisualStyleBackColor = true;
            this.btnSaveAsDataFile.Click += new System.EventHandler(this.btnSaveAsDataFile_Click);
            // 
            // lblFileOptions
            // 
            resources.ApplyResources(lblFileOptions, "lblFileOptions");
            tlpPortabilitySettings.SetColumnSpan(lblFileOptions, 2);
            lblFileOptions.Name = "lblFileOptions";
            this.toolTipMain.SetToolTip(lblFileOptions, resources.GetString("lblFileOptions.ToolTip"));
            // 
            // cbEncryptFileWithPassword
            // 
            resources.ApplyResources(this.cbEncryptFileWithPassword, "cbEncryptFileWithPassword");
            this.cbEncryptFileWithPassword.Name = "cbEncryptFileWithPassword";
            this.toolTipMain.SetToolTip(this.cbEncryptFileWithPassword, resources.GetString("cbEncryptFileWithPassword.ToolTip"));
            this.cbEncryptFileWithPassword.UseVisualStyleBackColor = true;
            this.cbEncryptFileWithPassword.CheckedChanged += new System.EventHandler(this.cbEncryptFileWithPassword_CheckedChanged);
            // 
            // tbFilePassword1
            // 
            resources.ApplyResources(this.tbFilePassword1, "tbFilePassword1");
            this.tbFilePassword1.Name = "tbFilePassword1";
            this.toolTipMain.SetToolTip(this.tbFilePassword1, resources.GetString("tbFilePassword1.ToolTip"));
            this.tbFilePassword1.UseSystemPasswordChar = true;
            this.tbFilePassword1.TextChanged += new System.EventHandler(this.tbFilePassword_TextChanged);
            // 
            // lblPasswordValid
            // 
            resources.ApplyResources(this.lblPasswordValid, "lblPasswordValid");
            this.lblPasswordValid.Name = "lblPasswordValid";
            this.toolTipMain.SetToolTip(this.lblPasswordValid, resources.GetString("lblPasswordValid.ToolTip"));
            // 
            // lblFilePassword1
            // 
            resources.ApplyResources(this.lblFilePassword1, "lblFilePassword1");
            this.lblFilePassword1.Name = "lblFilePassword1";
            this.toolTipMain.SetToolTip(this.lblFilePassword1, resources.GetString("lblFilePassword1.ToolTip"));
            // 
            // lblPortabilityInfo
            // 
            resources.ApplyResources(this.lblPortabilityInfo, "lblPortabilityInfo");
            tlpPortabilitySettings.SetColumnSpan(this.lblPortabilityInfo, 2);
            this.lblPortabilityInfo.Name = "lblPortabilityInfo";
            this.toolTipMain.SetToolTip(this.lblPortabilityInfo, resources.GetString("lblPortabilityInfo.ToolTip"));
            // 
            // gbConnectivity
            // 
            resources.ApplyResources(gbConnectivity, "gbConnectivity");
            gbConnectivity.Controls.Add(tlpConnectivityOptions);
            gbConnectivity.Name = "gbConnectivity";
            gbConnectivity.TabStop = false;
            this.toolTipMain.SetToolTip(gbConnectivity, resources.GetString("gbConnectivity.ToolTip"));
            // 
            // tlpConnectivityOptions
            // 
            resources.ApplyResources(tlpConnectivityOptions, "tlpConnectivityOptions");
            tlpConnectivityOptions.Controls.Add(lblConnectivitySettingsAppliedAfterRestart, 0, 6);
            tlpConnectivityOptions.Controls.Add(this.cbAllowAutoUpdate, 0, 0);
            tlpConnectivityOptions.Name = "tlpConnectivityOptions";
            this.toolTipMain.SetToolTip(tlpConnectivityOptions, resources.GetString("tlpConnectivityOptions.ToolTip"));
            // 
            // lblConnectivitySettingsAppliedAfterRestart
            // 
            resources.ApplyResources(lblConnectivitySettingsAppliedAfterRestart, "lblConnectivitySettingsAppliedAfterRestart");
            lblConnectivitySettingsAppliedAfterRestart.Name = "lblConnectivitySettingsAppliedAfterRestart";
            this.toolTipMain.SetToolTip(lblConnectivitySettingsAppliedAfterRestart, resources.GetString("lblConnectivitySettingsAppliedAfterRestart.ToolTip"));
            // 
            // cbAllowAutoUpdate
            // 
            resources.ApplyResources(this.cbAllowAutoUpdate, "cbAllowAutoUpdate");
            this.cbAllowAutoUpdate.Name = "cbAllowAutoUpdate";
            this.toolTipMain.SetToolTip(this.cbAllowAutoUpdate, resources.GetString("cbAllowAutoUpdate.ToolTip"));
            this.cbAllowAutoUpdate.UseVisualStyleBackColor = true;
            this.cbAllowAutoUpdate.CheckedChanged += new System.EventHandler(this.cbAllowAutoUpdate_CheckedChanged);
            // 
            // tlpReports
            // 
            resources.ApplyResources(tlpReports, "tlpReports");
            tlpReports.Controls.Add(gbReportList, 0, 0);
            tlpReports.Controls.Add(gbExternalReports, 0, 1);
            tlpReports.Controls.Add(gbReportParemeters, 1, 0);
            tlpReports.Name = "tlpReports";
            this.toolTipMain.SetToolTip(tlpReports, resources.GetString("tlpReports.ToolTip"));
            // 
            // gbReportList
            // 
            resources.ApplyResources(gbReportList, "gbReportList");
            gbReportList.Controls.Add(this.lbReports);
            gbReportList.Name = "gbReportList";
            gbReportList.TabStop = false;
            this.toolTipMain.SetToolTip(gbReportList, resources.GetString("gbReportList.ToolTip"));
            // 
            // lbReports
            // 
            resources.ApplyResources(this.lbReports, "lbReports");
            this.lbReports.FormattingEnabled = true;
            this.lbReports.Name = "lbReports";
            this.toolTipMain.SetToolTip(this.lbReports, resources.GetString("lbReports.ToolTip"));
            this.lbReports.SelectedIndexChanged += new System.EventHandler(this.lbReports_SelectedIndexChanged);
            // 
            // gbExternalReports
            // 
            resources.ApplyResources(gbExternalReports, "gbExternalReports");
            gbExternalReports.Controls.Add(tlpExternalReports);
            gbExternalReports.Name = "gbExternalReports";
            gbExternalReports.TabStop = false;
            this.toolTipMain.SetToolTip(gbExternalReports, resources.GetString("gbExternalReports.ToolTip"));
            // 
            // tlpExternalReports
            // 
            resources.ApplyResources(tlpExternalReports, "tlpExternalReports");
            tlpExternalReports.Controls.Add(this.btnOpenExternalReports, 1, 1);
            tlpExternalReports.Controls.Add(this.lblExternalReports, 0, 0);
            tlpExternalReports.Name = "tlpExternalReports";
            this.toolTipMain.SetToolTip(tlpExternalReports, resources.GetString("tlpExternalReports.ToolTip"));
            // 
            // btnOpenExternalReports
            // 
            resources.ApplyResources(this.btnOpenExternalReports, "btnOpenExternalReports");
            this.btnOpenExternalReports.Image = global::easyMoney.Manager.Properties.Resources.chart_curve;
            this.btnOpenExternalReports.Name = "btnOpenExternalReports";
            this.toolTipMain.SetToolTip(this.btnOpenExternalReports, resources.GetString("btnOpenExternalReports.ToolTip"));
            this.btnOpenExternalReports.UseVisualStyleBackColor = true;
            // 
            // lblExternalReports
            // 
            resources.ApplyResources(this.lblExternalReports, "lblExternalReports");
            this.lblExternalReports.AutoEllipsis = true;
            tlpExternalReports.SetColumnSpan(this.lblExternalReports, 3);
            this.lblExternalReports.Name = "lblExternalReports";
            this.toolTipMain.SetToolTip(this.lblExternalReports, resources.GetString("lblExternalReports.ToolTip"));
            // 
            // gbReportParemeters
            // 
            resources.ApplyResources(gbReportParemeters, "gbReportParemeters");
            gbReportParemeters.Controls.Add(this.tlpReportParameters);
            gbReportParemeters.Name = "gbReportParemeters";
            tlpReports.SetRowSpan(gbReportParemeters, 2);
            gbReportParemeters.TabStop = false;
            this.toolTipMain.SetToolTip(gbReportParemeters, resources.GetString("gbReportParemeters.ToolTip"));
            // 
            // tlpReportParameters
            // 
            resources.ApplyResources(this.tlpReportParameters, "tlpReportParameters");
            this.tlpReportParameters.Controls.Add(this.btnRunReport, 1, 1);
            this.tlpReportParameters.Controls.Add(this.panelReportParameters, 0, 0);
            this.tlpReportParameters.Name = "tlpReportParameters";
            this.toolTipMain.SetToolTip(this.tlpReportParameters, resources.GetString("tlpReportParameters.ToolTip"));
            // 
            // btnRunReport
            // 
            resources.ApplyResources(this.btnRunReport, "btnRunReport");
            this.btnRunReport.Image = global::easyMoney.Manager.Properties.Resources.chart_pie;
            this.btnRunReport.Name = "btnRunReport";
            this.toolTipMain.SetToolTip(this.btnRunReport, resources.GetString("btnRunReport.ToolTip"));
            this.btnRunReport.UseVisualStyleBackColor = true;
            this.btnRunReport.Click += new System.EventHandler(this.btnRunReport_Click);
            // 
            // panelReportParameters
            // 
            resources.ApplyResources(this.panelReportParameters, "panelReportParameters");
            this.tlpReportParameters.SetColumnSpan(this.panelReportParameters, 3);
            this.panelReportParameters.Name = "panelReportParameters";
            this.toolTipMain.SetToolTip(this.panelReportParameters, resources.GetString("panelReportParameters.ToolTip"));
            // 
            // tlpAccounts
            // 
            resources.ApplyResources(tlpAccounts, "tlpAccounts");
            tlpAccounts.Controls.Add(gbAccountList, 0, 0);
            tlpAccounts.Controls.Add(this.gbAccountDetails, 2, 0);
            tlpAccounts.Name = "tlpAccounts";
            this.toolTipMain.SetToolTip(tlpAccounts, resources.GetString("tlpAccounts.ToolTip"));
            // 
            // gbAccountList
            // 
            resources.ApplyResources(gbAccountList, "gbAccountList");
            tlpAccounts.SetColumnSpan(gbAccountList, 2);
            gbAccountList.Controls.Add(tlpAccountList);
            gbAccountList.Name = "gbAccountList";
            gbAccountList.TabStop = false;
            this.toolTipMain.SetToolTip(gbAccountList, resources.GetString("gbAccountList.ToolTip"));
            // 
            // tlpAccountList
            // 
            resources.ApplyResources(tlpAccountList, "tlpAccountList");
            tlpAccountList.Controls.Add(this.btnNewCreditAccount, 1, 2);
            tlpAccountList.Controls.Add(this.lbAccounts, 0, 0);
            tlpAccountList.Controls.Add(this.btnNewDebitAccount, 0, 2);
            tlpAccountList.Controls.Add(this.cbAccountsShowAll, 0, 1);
            tlpAccountList.Name = "tlpAccountList";
            this.toolTipMain.SetToolTip(tlpAccountList, resources.GetString("tlpAccountList.ToolTip"));
            // 
            // btnNewCreditAccount
            // 
            resources.ApplyResources(this.btnNewCreditAccount, "btnNewCreditAccount");
            this.btnNewCreditAccount.Image = global::easyMoney.Manager.Properties.Resources.creditcards;
            this.btnNewCreditAccount.Name = "btnNewCreditAccount";
            this.toolTipMain.SetToolTip(this.btnNewCreditAccount, resources.GetString("btnNewCreditAccount.ToolTip"));
            this.btnNewCreditAccount.UseVisualStyleBackColor = true;
            this.btnNewCreditAccount.Click += new System.EventHandler(this.btnNewAccount_Click);
            // 
            // lbAccounts
            // 
            resources.ApplyResources(this.lbAccounts, "lbAccounts");
            tlpAccountList.SetColumnSpan(this.lbAccounts, 2);
            this.lbAccounts.FormattingEnabled = true;
            this.lbAccounts.Name = "lbAccounts";
            this.toolTipMain.SetToolTip(this.lbAccounts, resources.GetString("lbAccounts.ToolTip"));
            this.lbAccounts.SelectedIndexChanged += new System.EventHandler(this.lbAccounts_SelectedIndexChanged);
            // 
            // btnNewDebitAccount
            // 
            resources.ApplyResources(this.btnNewDebitAccount, "btnNewDebitAccount");
            this.btnNewDebitAccount.Image = global::easyMoney.Manager.Properties.Resources.money;
            this.btnNewDebitAccount.Name = "btnNewDebitAccount";
            this.toolTipMain.SetToolTip(this.btnNewDebitAccount, resources.GetString("btnNewDebitAccount.ToolTip"));
            this.btnNewDebitAccount.UseVisualStyleBackColor = true;
            this.btnNewDebitAccount.Click += new System.EventHandler(this.btnNewAccount_Click);
            // 
            // cbAccountsShowAll
            // 
            resources.ApplyResources(this.cbAccountsShowAll, "cbAccountsShowAll");
            tlpAccountList.SetColumnSpan(this.cbAccountsShowAll, 3);
            this.cbAccountsShowAll.Name = "cbAccountsShowAll";
            this.toolTipMain.SetToolTip(this.cbAccountsShowAll, resources.GetString("cbAccountsShowAll.ToolTip"));
            this.cbAccountsShowAll.UseVisualStyleBackColor = true;
            this.cbAccountsShowAll.CheckedChanged += new System.EventHandler(this.cbAccountsShowAll_CheckedChanged);
            // 
            // gbAccountDetails
            // 
            resources.ApplyResources(this.gbAccountDetails, "gbAccountDetails");
            tlpAccounts.SetColumnSpan(this.gbAccountDetails, 2);
            this.gbAccountDetails.Controls.Add(this.tlpAccountDetails);
            this.gbAccountDetails.Name = "gbAccountDetails";
            this.gbAccountDetails.TabStop = false;
            this.toolTipMain.SetToolTip(this.gbAccountDetails, resources.GetString("gbAccountDetails.ToolTip"));
            // 
            // tlpAccountDetails
            // 
            resources.ApplyResources(this.tlpAccountDetails, "tlpAccountDetails");
            this.tlpAccountDetails.Controls.Add(this.tbAccountTags, 0, 9);
            this.tlpAccountDetails.Controls.Add(this.tbAccountBalance, 0, 5);
            this.tlpAccountDetails.Controls.Add(this.lblAccountTags, 0, 8);
            this.tlpAccountDetails.Controls.Add(this.tbAccountDescription, 0, 7);
            this.tlpAccountDetails.Controls.Add(this.lblAccountDescription, 0, 6);
            this.tlpAccountDetails.Controls.Add(this.lblAccountBalance, 0, 4);
            this.tlpAccountDetails.Controls.Add(this.lblAccountType, 0, 0);
            this.tlpAccountDetails.Controls.Add(this.lblAccountTitle, 0, 2);
            this.tlpAccountDetails.Controls.Add(this.tbAccountTitle, 0, 3);
            this.tlpAccountDetails.Controls.Add(this.btnAccountEdit, 0, 11);
            this.tlpAccountDetails.Controls.Add(this.btnAccountBalance, 1, 10);
            this.tlpAccountDetails.Controls.Add(this.btnAccountDelete, 1, 11);
            this.tlpAccountDetails.Controls.Add(this.tbAccountType, 0, 1);
            this.tlpAccountDetails.Name = "tlpAccountDetails";
            this.toolTipMain.SetToolTip(this.tlpAccountDetails, resources.GetString("tlpAccountDetails.ToolTip"));
            // 
            // tbAccountTags
            // 
            resources.ApplyResources(this.tbAccountTags, "tbAccountTags");
            this.tlpAccountDetails.SetColumnSpan(this.tbAccountTags, 2);
            this.tbAccountTags.Name = "tbAccountTags";
            this.tbAccountTags.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbAccountTags, resources.GetString("tbAccountTags.ToolTip"));
            // 
            // tbAccountBalance
            // 
            resources.ApplyResources(this.tbAccountBalance, "tbAccountBalance");
            this.tlpAccountDetails.SetColumnSpan(this.tbAccountBalance, 2);
            this.tbAccountBalance.Name = "tbAccountBalance";
            this.tbAccountBalance.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbAccountBalance, resources.GetString("tbAccountBalance.ToolTip"));
            // 
            // lblAccountTags
            // 
            resources.ApplyResources(this.lblAccountTags, "lblAccountTags");
            this.tlpAccountDetails.SetColumnSpan(this.lblAccountTags, 2);
            this.lblAccountTags.Name = "lblAccountTags";
            this.toolTipMain.SetToolTip(this.lblAccountTags, resources.GetString("lblAccountTags.ToolTip"));
            // 
            // tbAccountDescription
            // 
            resources.ApplyResources(this.tbAccountDescription, "tbAccountDescription");
            this.tlpAccountDetails.SetColumnSpan(this.tbAccountDescription, 2);
            this.tbAccountDescription.Name = "tbAccountDescription";
            this.tbAccountDescription.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbAccountDescription, resources.GetString("tbAccountDescription.ToolTip"));
            // 
            // lblAccountDescription
            // 
            resources.ApplyResources(this.lblAccountDescription, "lblAccountDescription");
            this.tlpAccountDetails.SetColumnSpan(this.lblAccountDescription, 2);
            this.lblAccountDescription.Name = "lblAccountDescription";
            this.toolTipMain.SetToolTip(this.lblAccountDescription, resources.GetString("lblAccountDescription.ToolTip"));
            // 
            // lblAccountBalance
            // 
            resources.ApplyResources(this.lblAccountBalance, "lblAccountBalance");
            this.tlpAccountDetails.SetColumnSpan(this.lblAccountBalance, 2);
            this.lblAccountBalance.Name = "lblAccountBalance";
            this.toolTipMain.SetToolTip(this.lblAccountBalance, resources.GetString("lblAccountBalance.ToolTip"));
            // 
            // lblAccountType
            // 
            resources.ApplyResources(this.lblAccountType, "lblAccountType");
            this.tlpAccountDetails.SetColumnSpan(this.lblAccountType, 2);
            this.lblAccountType.Name = "lblAccountType";
            this.toolTipMain.SetToolTip(this.lblAccountType, resources.GetString("lblAccountType.ToolTip"));
            // 
            // lblAccountTitle
            // 
            resources.ApplyResources(this.lblAccountTitle, "lblAccountTitle");
            this.tlpAccountDetails.SetColumnSpan(this.lblAccountTitle, 2);
            this.lblAccountTitle.Name = "lblAccountTitle";
            this.toolTipMain.SetToolTip(this.lblAccountTitle, resources.GetString("lblAccountTitle.ToolTip"));
            // 
            // tbAccountTitle
            // 
            resources.ApplyResources(this.tbAccountTitle, "tbAccountTitle");
            this.tlpAccountDetails.SetColumnSpan(this.tbAccountTitle, 2);
            this.tbAccountTitle.Name = "tbAccountTitle";
            this.tbAccountTitle.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbAccountTitle, resources.GetString("tbAccountTitle.ToolTip"));
            // 
            // btnAccountEdit
            // 
            resources.ApplyResources(this.btnAccountEdit, "btnAccountEdit");
            this.btnAccountEdit.Image = global::easyMoney.Manager.Properties.Resources.pencil;
            this.btnAccountEdit.Name = "btnAccountEdit";
            this.toolTipMain.SetToolTip(this.btnAccountEdit, resources.GetString("btnAccountEdit.ToolTip"));
            this.btnAccountEdit.UseVisualStyleBackColor = true;
            this.btnAccountEdit.Click += new System.EventHandler(this.btnAccountEdit_Click);
            // 
            // btnAccountBalance
            // 
            resources.ApplyResources(this.btnAccountBalance, "btnAccountBalance");
            this.btnAccountBalance.Image = global::easyMoney.Manager.Properties.Resources.calculator;
            this.btnAccountBalance.Name = "btnAccountBalance";
            this.toolTipMain.SetToolTip(this.btnAccountBalance, resources.GetString("btnAccountBalance.ToolTip"));
            this.btnAccountBalance.UseVisualStyleBackColor = true;
            this.btnAccountBalance.Click += new System.EventHandler(this.btnAccountBalance_Click);
            // 
            // btnAccountDelete
            // 
            resources.ApplyResources(this.btnAccountDelete, "btnAccountDelete");
            this.btnAccountDelete.Image = global::easyMoney.Manager.Properties.Resources.delete;
            this.btnAccountDelete.Name = "btnAccountDelete";
            this.toolTipMain.SetToolTip(this.btnAccountDelete, resources.GetString("btnAccountDelete.ToolTip"));
            this.btnAccountDelete.UseVisualStyleBackColor = true;
            this.btnAccountDelete.Click += new System.EventHandler(this.btnAccountDelete_Click);
            // 
            // tbAccountType
            // 
            resources.ApplyResources(this.tbAccountType, "tbAccountType");
            this.tlpAccountDetails.SetColumnSpan(this.tbAccountType, 2);
            this.tbAccountType.Name = "tbAccountType";
            this.tbAccountType.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbAccountType, resources.GetString("tbAccountType.ToolTip"));
            // 
            // tlpPlans
            // 
            resources.ApplyResources(tlpPlans, "tlpPlans");
            tlpPlans.Controls.Add(gbPlannedTransactionList, 0, 0);
            tlpPlans.Controls.Add(this.gbPlannedTransactionDetails, 2, 0);
            tlpPlans.Name = "tlpPlans";
            this.toolTipMain.SetToolTip(tlpPlans, resources.GetString("tlpPlans.ToolTip"));
            // 
            // gbPlannedTransactionList
            // 
            resources.ApplyResources(gbPlannedTransactionList, "gbPlannedTransactionList");
            tlpPlans.SetColumnSpan(gbPlannedTransactionList, 2);
            gbPlannedTransactionList.Controls.Add(tlpPlannedTransactionList);
            gbPlannedTransactionList.Name = "gbPlannedTransactionList";
            gbPlannedTransactionList.TabStop = false;
            this.toolTipMain.SetToolTip(gbPlannedTransactionList, resources.GetString("gbPlannedTransactionList.ToolTip"));
            // 
            // tlpPlannedTransactionList
            // 
            resources.ApplyResources(tlpPlannedTransactionList, "tlpPlannedTransactionList");
            tlpPlannedTransactionList.Controls.Add(this.btnPlanIncome, 1, 2);
            tlpPlannedTransactionList.Controls.Add(this.lbPlannedTransactions, 0, 0);
            tlpPlannedTransactionList.Controls.Add(this.btnPlanPayment, 0, 2);
            tlpPlannedTransactionList.Controls.Add(this.cbPlannedTransactionsShowAll, 0, 1);
            tlpPlannedTransactionList.Name = "tlpPlannedTransactionList";
            this.toolTipMain.SetToolTip(tlpPlannedTransactionList, resources.GetString("tlpPlannedTransactionList.ToolTip"));
            // 
            // btnPlanIncome
            // 
            resources.ApplyResources(this.btnPlanIncome, "btnPlanIncome");
            this.btnPlanIncome.Image = global::easyMoney.Manager.Properties.Resources.coins;
            this.btnPlanIncome.Name = "btnPlanIncome";
            this.toolTipMain.SetToolTip(this.btnPlanIncome, resources.GetString("btnPlanIncome.ToolTip"));
            this.btnPlanIncome.UseVisualStyleBackColor = true;
            this.btnPlanIncome.Click += new System.EventHandler(this.btnPlan_Click);
            // 
            // lbPlannedTransactions
            // 
            resources.ApplyResources(this.lbPlannedTransactions, "lbPlannedTransactions");
            tlpPlannedTransactionList.SetColumnSpan(this.lbPlannedTransactions, 2);
            this.lbPlannedTransactions.FormattingEnabled = true;
            this.lbPlannedTransactions.Name = "lbPlannedTransactions";
            this.toolTipMain.SetToolTip(this.lbPlannedTransactions, resources.GetString("lbPlannedTransactions.ToolTip"));
            this.lbPlannedTransactions.SelectedIndexChanged += new System.EventHandler(this.lbPlannedTransactions_SelectedIndexChanged);
            // 
            // btnPlanPayment
            // 
            resources.ApplyResources(this.btnPlanPayment, "btnPlanPayment");
            this.btnPlanPayment.Image = global::easyMoney.Manager.Properties.Resources.basket;
            this.btnPlanPayment.Name = "btnPlanPayment";
            this.toolTipMain.SetToolTip(this.btnPlanPayment, resources.GetString("btnPlanPayment.ToolTip"));
            this.btnPlanPayment.UseVisualStyleBackColor = true;
            this.btnPlanPayment.Click += new System.EventHandler(this.btnPlan_Click);
            // 
            // cbPlannedTransactionsShowAll
            // 
            resources.ApplyResources(this.cbPlannedTransactionsShowAll, "cbPlannedTransactionsShowAll");
            tlpPlannedTransactionList.SetColumnSpan(this.cbPlannedTransactionsShowAll, 2);
            this.cbPlannedTransactionsShowAll.Name = "cbPlannedTransactionsShowAll";
            this.toolTipMain.SetToolTip(this.cbPlannedTransactionsShowAll, resources.GetString("cbPlannedTransactionsShowAll.ToolTip"));
            this.cbPlannedTransactionsShowAll.UseVisualStyleBackColor = true;
            this.cbPlannedTransactionsShowAll.CheckedChanged += new System.EventHandler(this.cbPlannedTransactionsShowAll_CheckedChanged);
            // 
            // gbPlannedTransactionDetails
            // 
            resources.ApplyResources(this.gbPlannedTransactionDetails, "gbPlannedTransactionDetails");
            tlpPlans.SetColumnSpan(this.gbPlannedTransactionDetails, 2);
            this.gbPlannedTransactionDetails.Controls.Add(this.tlpPlannedTransactionDetails);
            this.gbPlannedTransactionDetails.Name = "gbPlannedTransactionDetails";
            this.gbPlannedTransactionDetails.TabStop = false;
            this.toolTipMain.SetToolTip(this.gbPlannedTransactionDetails, resources.GetString("gbPlannedTransactionDetails.ToolTip"));
            // 
            // tlpPlannedTransactionDetails
            // 
            resources.ApplyResources(this.tlpPlannedTransactionDetails, "tlpPlannedTransactionDetails");
            this.tlpPlannedTransactionDetails.Controls.Add(this.lblPlannedTransactionTags, 0, 14);
            this.tlpPlannedTransactionDetails.Controls.Add(this.tbPlannedTransactionDescription, 0, 13);
            this.tlpPlannedTransactionDetails.Controls.Add(this.lblPlannedTransactionDescription, 0, 12);
            this.tlpPlannedTransactionDetails.Controls.Add(this.lblPlannedTransactionAmount, 0, 8);
            this.tlpPlannedTransactionDetails.Controls.Add(this.lblPlannedTransactionAccountType, 0, 6);
            this.tlpPlannedTransactionDetails.Controls.Add(this.lblPlannedTransactionType, 0, 0);
            this.tlpPlannedTransactionDetails.Controls.Add(this.lblPlannedTransactionTitle, 0, 4);
            this.tlpPlannedTransactionDetails.Controls.Add(this.lblPlannedTransactionDateTime, 0, 2);
            this.tlpPlannedTransactionDetails.Controls.Add(this.tbPlannedTransactionTitle, 0, 5);
            this.tlpPlannedTransactionDetails.Controls.Add(this.btnPlannedTransactionEdit, 0, 17);
            this.tlpPlannedTransactionDetails.Controls.Add(this.btnPlannedTransactionCopy, 0, 16);
            this.tlpPlannedTransactionDetails.Controls.Add(this.btnPlannedTransactionDelete, 1, 17);
            this.tlpPlannedTransactionDetails.Controls.Add(this.lblPlannedTransactionRecurrency, 0, 10);
            this.tlpPlannedTransactionDetails.Controls.Add(this.tbPlannedTransactionType, 0, 1);
            this.tlpPlannedTransactionDetails.Controls.Add(this.tbPlannedTransactionStartDate, 0, 3);
            this.tlpPlannedTransactionDetails.Controls.Add(this.tbPlannedTransactionAccountType, 0, 7);
            this.tlpPlannedTransactionDetails.Controls.Add(this.tbPlannedTransactionAmount, 0, 9);
            this.tlpPlannedTransactionDetails.Controls.Add(this.tbPlannedTransactionRecurrency, 0, 11);
            this.tlpPlannedTransactionDetails.Controls.Add(this.tbPlannedTransactionTags, 0, 15);
            this.tlpPlannedTransactionDetails.Controls.Add(this.btnPlannedTransactionImplement, 1, 16);
            this.tlpPlannedTransactionDetails.Name = "tlpPlannedTransactionDetails";
            this.toolTipMain.SetToolTip(this.tlpPlannedTransactionDetails, resources.GetString("tlpPlannedTransactionDetails.ToolTip"));
            // 
            // lblPlannedTransactionTags
            // 
            resources.ApplyResources(this.lblPlannedTransactionTags, "lblPlannedTransactionTags");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.lblPlannedTransactionTags, 2);
            this.lblPlannedTransactionTags.Name = "lblPlannedTransactionTags";
            this.toolTipMain.SetToolTip(this.lblPlannedTransactionTags, resources.GetString("lblPlannedTransactionTags.ToolTip"));
            // 
            // tbPlannedTransactionDescription
            // 
            resources.ApplyResources(this.tbPlannedTransactionDescription, "tbPlannedTransactionDescription");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.tbPlannedTransactionDescription, 2);
            this.tbPlannedTransactionDescription.Name = "tbPlannedTransactionDescription";
            this.tbPlannedTransactionDescription.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbPlannedTransactionDescription, resources.GetString("tbPlannedTransactionDescription.ToolTip"));
            // 
            // lblPlannedTransactionDescription
            // 
            resources.ApplyResources(this.lblPlannedTransactionDescription, "lblPlannedTransactionDescription");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.lblPlannedTransactionDescription, 2);
            this.lblPlannedTransactionDescription.Name = "lblPlannedTransactionDescription";
            this.toolTipMain.SetToolTip(this.lblPlannedTransactionDescription, resources.GetString("lblPlannedTransactionDescription.ToolTip"));
            // 
            // lblPlannedTransactionAmount
            // 
            resources.ApplyResources(this.lblPlannedTransactionAmount, "lblPlannedTransactionAmount");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.lblPlannedTransactionAmount, 2);
            this.lblPlannedTransactionAmount.Name = "lblPlannedTransactionAmount";
            this.toolTipMain.SetToolTip(this.lblPlannedTransactionAmount, resources.GetString("lblPlannedTransactionAmount.ToolTip"));
            // 
            // lblPlannedTransactionAccountType
            // 
            resources.ApplyResources(this.lblPlannedTransactionAccountType, "lblPlannedTransactionAccountType");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.lblPlannedTransactionAccountType, 2);
            this.lblPlannedTransactionAccountType.Name = "lblPlannedTransactionAccountType";
            this.toolTipMain.SetToolTip(this.lblPlannedTransactionAccountType, resources.GetString("lblPlannedTransactionAccountType.ToolTip"));
            // 
            // lblPlannedTransactionType
            // 
            resources.ApplyResources(this.lblPlannedTransactionType, "lblPlannedTransactionType");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.lblPlannedTransactionType, 2);
            this.lblPlannedTransactionType.Name = "lblPlannedTransactionType";
            this.toolTipMain.SetToolTip(this.lblPlannedTransactionType, resources.GetString("lblPlannedTransactionType.ToolTip"));
            // 
            // lblPlannedTransactionTitle
            // 
            resources.ApplyResources(this.lblPlannedTransactionTitle, "lblPlannedTransactionTitle");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.lblPlannedTransactionTitle, 2);
            this.lblPlannedTransactionTitle.Name = "lblPlannedTransactionTitle";
            this.toolTipMain.SetToolTip(this.lblPlannedTransactionTitle, resources.GetString("lblPlannedTransactionTitle.ToolTip"));
            // 
            // lblPlannedTransactionDateTime
            // 
            resources.ApplyResources(this.lblPlannedTransactionDateTime, "lblPlannedTransactionDateTime");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.lblPlannedTransactionDateTime, 2);
            this.lblPlannedTransactionDateTime.Name = "lblPlannedTransactionDateTime";
            this.toolTipMain.SetToolTip(this.lblPlannedTransactionDateTime, resources.GetString("lblPlannedTransactionDateTime.ToolTip"));
            // 
            // tbPlannedTransactionTitle
            // 
            resources.ApplyResources(this.tbPlannedTransactionTitle, "tbPlannedTransactionTitle");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.tbPlannedTransactionTitle, 2);
            this.tbPlannedTransactionTitle.Name = "tbPlannedTransactionTitle";
            this.tbPlannedTransactionTitle.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbPlannedTransactionTitle, resources.GetString("tbPlannedTransactionTitle.ToolTip"));
            // 
            // btnPlannedTransactionEdit
            // 
            resources.ApplyResources(this.btnPlannedTransactionEdit, "btnPlannedTransactionEdit");
            this.btnPlannedTransactionEdit.Image = global::easyMoney.Manager.Properties.Resources.pencil;
            this.btnPlannedTransactionEdit.Name = "btnPlannedTransactionEdit";
            this.toolTipMain.SetToolTip(this.btnPlannedTransactionEdit, resources.GetString("btnPlannedTransactionEdit.ToolTip"));
            this.btnPlannedTransactionEdit.UseVisualStyleBackColor = true;
            this.btnPlannedTransactionEdit.Click += new System.EventHandler(this.btnPlannedTransactionEditCopy_Click);
            // 
            // btnPlannedTransactionCopy
            // 
            resources.ApplyResources(this.btnPlannedTransactionCopy, "btnPlannedTransactionCopy");
            this.btnPlannedTransactionCopy.Image = global::easyMoney.Manager.Properties.Resources.page_copy;
            this.btnPlannedTransactionCopy.Name = "btnPlannedTransactionCopy";
            this.toolTipMain.SetToolTip(this.btnPlannedTransactionCopy, resources.GetString("btnPlannedTransactionCopy.ToolTip"));
            this.btnPlannedTransactionCopy.UseVisualStyleBackColor = true;
            this.btnPlannedTransactionCopy.Click += new System.EventHandler(this.btnPlannedTransactionEditCopy_Click);
            // 
            // btnPlannedTransactionDelete
            // 
            resources.ApplyResources(this.btnPlannedTransactionDelete, "btnPlannedTransactionDelete");
            this.btnPlannedTransactionDelete.Image = global::easyMoney.Manager.Properties.Resources.delete;
            this.btnPlannedTransactionDelete.Name = "btnPlannedTransactionDelete";
            this.toolTipMain.SetToolTip(this.btnPlannedTransactionDelete, resources.GetString("btnPlannedTransactionDelete.ToolTip"));
            this.btnPlannedTransactionDelete.UseVisualStyleBackColor = true;
            this.btnPlannedTransactionDelete.Click += new System.EventHandler(this.btnPlannedTransactionDelete_Click);
            // 
            // lblPlannedTransactionRecurrency
            // 
            resources.ApplyResources(this.lblPlannedTransactionRecurrency, "lblPlannedTransactionRecurrency");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.lblPlannedTransactionRecurrency, 2);
            this.lblPlannedTransactionRecurrency.Name = "lblPlannedTransactionRecurrency";
            this.toolTipMain.SetToolTip(this.lblPlannedTransactionRecurrency, resources.GetString("lblPlannedTransactionRecurrency.ToolTip"));
            // 
            // tbPlannedTransactionType
            // 
            resources.ApplyResources(this.tbPlannedTransactionType, "tbPlannedTransactionType");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.tbPlannedTransactionType, 2);
            this.tbPlannedTransactionType.Name = "tbPlannedTransactionType";
            this.tbPlannedTransactionType.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbPlannedTransactionType, resources.GetString("tbPlannedTransactionType.ToolTip"));
            // 
            // tbPlannedTransactionStartDate
            // 
            resources.ApplyResources(this.tbPlannedTransactionStartDate, "tbPlannedTransactionStartDate");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.tbPlannedTransactionStartDate, 2);
            this.tbPlannedTransactionStartDate.Name = "tbPlannedTransactionStartDate";
            this.tbPlannedTransactionStartDate.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbPlannedTransactionStartDate, resources.GetString("tbPlannedTransactionStartDate.ToolTip"));
            // 
            // tbPlannedTransactionAccountType
            // 
            resources.ApplyResources(this.tbPlannedTransactionAccountType, "tbPlannedTransactionAccountType");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.tbPlannedTransactionAccountType, 2);
            this.tbPlannedTransactionAccountType.Name = "tbPlannedTransactionAccountType";
            this.tbPlannedTransactionAccountType.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbPlannedTransactionAccountType, resources.GetString("tbPlannedTransactionAccountType.ToolTip"));
            // 
            // tbPlannedTransactionAmount
            // 
            resources.ApplyResources(this.tbPlannedTransactionAmount, "tbPlannedTransactionAmount");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.tbPlannedTransactionAmount, 2);
            this.tbPlannedTransactionAmount.Name = "tbPlannedTransactionAmount";
            this.tbPlannedTransactionAmount.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbPlannedTransactionAmount, resources.GetString("tbPlannedTransactionAmount.ToolTip"));
            // 
            // tbPlannedTransactionRecurrency
            // 
            resources.ApplyResources(this.tbPlannedTransactionRecurrency, "tbPlannedTransactionRecurrency");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.tbPlannedTransactionRecurrency, 2);
            this.tbPlannedTransactionRecurrency.Name = "tbPlannedTransactionRecurrency";
            this.tbPlannedTransactionRecurrency.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbPlannedTransactionRecurrency, resources.GetString("tbPlannedTransactionRecurrency.ToolTip"));
            // 
            // tbPlannedTransactionTags
            // 
            resources.ApplyResources(this.tbPlannedTransactionTags, "tbPlannedTransactionTags");
            this.tlpPlannedTransactionDetails.SetColumnSpan(this.tbPlannedTransactionTags, 2);
            this.tbPlannedTransactionTags.Name = "tbPlannedTransactionTags";
            this.tbPlannedTransactionTags.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbPlannedTransactionTags, resources.GetString("tbPlannedTransactionTags.ToolTip"));
            // 
            // btnPlannedTransactionImplement
            // 
            resources.ApplyResources(this.btnPlannedTransactionImplement, "btnPlannedTransactionImplement");
            this.btnPlannedTransactionImplement.Image = global::easyMoney.Manager.Properties.Resources.table;
            this.btnPlannedTransactionImplement.Name = "btnPlannedTransactionImplement";
            this.toolTipMain.SetToolTip(this.btnPlannedTransactionImplement, resources.GetString("btnPlannedTransactionImplement.ToolTip"));
            this.btnPlannedTransactionImplement.UseVisualStyleBackColor = true;
            this.btnPlannedTransactionImplement.Click += new System.EventHandler(this.btnPlannedTransactionImplement_Click);
            // 
            // tlpTransactions
            // 
            resources.ApplyResources(tlpTransactions, "tlpTransactions");
            tlpTransactions.Controls.Add(gbTransactionList, 0, 0);
            tlpTransactions.Controls.Add(this.gbTransactionDetails, 2, 0);
            tlpTransactions.Name = "tlpTransactions";
            this.toolTipMain.SetToolTip(tlpTransactions, resources.GetString("tlpTransactions.ToolTip"));
            // 
            // gbTransactionList
            // 
            resources.ApplyResources(gbTransactionList, "gbTransactionList");
            tlpTransactions.SetColumnSpan(gbTransactionList, 2);
            gbTransactionList.Controls.Add(tlpTransactionList);
            gbTransactionList.Name = "gbTransactionList";
            gbTransactionList.TabStop = false;
            this.toolTipMain.SetToolTip(gbTransactionList, resources.GetString("gbTransactionList.ToolTip"));
            // 
            // tlpTransactionList
            // 
            resources.ApplyResources(tlpTransactionList, "tlpTransactionList");
            tlpTransactionList.Controls.Add(this.btnAddIncomeTransaction, 1, 2);
            tlpTransactionList.Controls.Add(this.lbTransactions, 0, 0);
            tlpTransactionList.Controls.Add(this.btnAddPaymentTransaction, 0, 2);
            tlpTransactionList.Controls.Add(this.cbTransactionsShowAll, 0, 1);
            tlpTransactionList.Name = "tlpTransactionList";
            this.toolTipMain.SetToolTip(tlpTransactionList, resources.GetString("tlpTransactionList.ToolTip"));
            // 
            // btnAddIncomeTransaction
            // 
            resources.ApplyResources(this.btnAddIncomeTransaction, "btnAddIncomeTransaction");
            this.btnAddIncomeTransaction.Image = global::easyMoney.Manager.Properties.Resources.coins;
            this.btnAddIncomeTransaction.Name = "btnAddIncomeTransaction";
            this.toolTipMain.SetToolTip(this.btnAddIncomeTransaction, resources.GetString("btnAddIncomeTransaction.ToolTip"));
            this.btnAddIncomeTransaction.UseVisualStyleBackColor = true;
            this.btnAddIncomeTransaction.Click += new System.EventHandler(this.btnAddTransaction_Click);
            // 
            // lbTransactions
            // 
            resources.ApplyResources(this.lbTransactions, "lbTransactions");
            tlpTransactionList.SetColumnSpan(this.lbTransactions, 2);
            this.lbTransactions.FormattingEnabled = true;
            this.lbTransactions.Name = "lbTransactions";
            this.toolTipMain.SetToolTip(this.lbTransactions, resources.GetString("lbTransactions.ToolTip"));
            this.lbTransactions.SelectedIndexChanged += new System.EventHandler(this.lbTransactions_SelectedIndexChanged);
            // 
            // btnAddPaymentTransaction
            // 
            resources.ApplyResources(this.btnAddPaymentTransaction, "btnAddPaymentTransaction");
            this.btnAddPaymentTransaction.Image = global::easyMoney.Manager.Properties.Resources.basket;
            this.btnAddPaymentTransaction.Name = "btnAddPaymentTransaction";
            this.toolTipMain.SetToolTip(this.btnAddPaymentTransaction, resources.GetString("btnAddPaymentTransaction.ToolTip"));
            this.btnAddPaymentTransaction.UseVisualStyleBackColor = true;
            this.btnAddPaymentTransaction.Click += new System.EventHandler(this.btnAddTransaction_Click);
            // 
            // cbTransactionsShowAll
            // 
            resources.ApplyResources(this.cbTransactionsShowAll, "cbTransactionsShowAll");
            tlpTransactionList.SetColumnSpan(this.cbTransactionsShowAll, 2);
            this.cbTransactionsShowAll.Name = "cbTransactionsShowAll";
            this.toolTipMain.SetToolTip(this.cbTransactionsShowAll, resources.GetString("cbTransactionsShowAll.ToolTip"));
            this.cbTransactionsShowAll.UseVisualStyleBackColor = true;
            this.cbTransactionsShowAll.CheckedChanged += new System.EventHandler(this.cbTransactionsShowAll_CheckedChanged);
            // 
            // gbTransactionDetails
            // 
            resources.ApplyResources(this.gbTransactionDetails, "gbTransactionDetails");
            tlpTransactions.SetColumnSpan(this.gbTransactionDetails, 2);
            this.gbTransactionDetails.Controls.Add(this.tlpTransactionDetails);
            this.gbTransactionDetails.Name = "gbTransactionDetails";
            this.gbTransactionDetails.TabStop = false;
            this.toolTipMain.SetToolTip(this.gbTransactionDetails, resources.GetString("gbTransactionDetails.ToolTip"));
            // 
            // tlpTransactionDetails
            // 
            resources.ApplyResources(this.tlpTransactionDetails, "tlpTransactionDetails");
            this.tlpTransactionDetails.Controls.Add(this.lblTransactionTags, 0, 14);
            this.tlpTransactionDetails.Controls.Add(this.tbTransactionDescription, 0, 11);
            this.tlpTransactionDetails.Controls.Add(this.lblTransactionDescription, 0, 10);
            this.tlpTransactionDetails.Controls.Add(this.lblTransactionAmount, 0, 8);
            this.tlpTransactionDetails.Controls.Add(this.lblTransactionAccount, 0, 6);
            this.tlpTransactionDetails.Controls.Add(this.lblTransactionType, 0, 0);
            this.tlpTransactionDetails.Controls.Add(this.lblTransactionTitle, 0, 4);
            this.tlpTransactionDetails.Controls.Add(this.lblTransactionDateTime, 0, 2);
            this.tlpTransactionDetails.Controls.Add(this.tbTransactionTitle, 0, 5);
            this.tlpTransactionDetails.Controls.Add(this.btnTransactionDelete, 1, 16);
            this.tlpTransactionDetails.Controls.Add(this.tbTransactionType, 0, 1);
            this.tlpTransactionDetails.Controls.Add(this.tbTransactionTime, 0, 3);
            this.tlpTransactionDetails.Controls.Add(this.tbTransactionAccount, 0, 7);
            this.tlpTransactionDetails.Controls.Add(this.tbTransactionAmount, 0, 9);
            this.tlpTransactionDetails.Controls.Add(this.tbTransactionTags, 0, 15);
            this.tlpTransactionDetails.Controls.Add(this.lblTransactionPlan, 0, 12);
            this.tlpTransactionDetails.Controls.Add(this.tbTransactionPlan, 0, 13);
            this.tlpTransactionDetails.Name = "tlpTransactionDetails";
            this.toolTipMain.SetToolTip(this.tlpTransactionDetails, resources.GetString("tlpTransactionDetails.ToolTip"));
            // 
            // lblTransactionTags
            // 
            resources.ApplyResources(this.lblTransactionTags, "lblTransactionTags");
            this.tlpTransactionDetails.SetColumnSpan(this.lblTransactionTags, 2);
            this.lblTransactionTags.Name = "lblTransactionTags";
            this.toolTipMain.SetToolTip(this.lblTransactionTags, resources.GetString("lblTransactionTags.ToolTip"));
            // 
            // tbTransactionDescription
            // 
            resources.ApplyResources(this.tbTransactionDescription, "tbTransactionDescription");
            this.tlpTransactionDetails.SetColumnSpan(this.tbTransactionDescription, 2);
            this.tbTransactionDescription.Name = "tbTransactionDescription";
            this.tbTransactionDescription.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbTransactionDescription, resources.GetString("tbTransactionDescription.ToolTip"));
            // 
            // lblTransactionDescription
            // 
            resources.ApplyResources(this.lblTransactionDescription, "lblTransactionDescription");
            this.tlpTransactionDetails.SetColumnSpan(this.lblTransactionDescription, 2);
            this.lblTransactionDescription.Name = "lblTransactionDescription";
            this.toolTipMain.SetToolTip(this.lblTransactionDescription, resources.GetString("lblTransactionDescription.ToolTip"));
            // 
            // lblTransactionAmount
            // 
            resources.ApplyResources(this.lblTransactionAmount, "lblTransactionAmount");
            this.tlpTransactionDetails.SetColumnSpan(this.lblTransactionAmount, 2);
            this.lblTransactionAmount.Name = "lblTransactionAmount";
            this.toolTipMain.SetToolTip(this.lblTransactionAmount, resources.GetString("lblTransactionAmount.ToolTip"));
            // 
            // lblTransactionAccount
            // 
            resources.ApplyResources(this.lblTransactionAccount, "lblTransactionAccount");
            this.tlpTransactionDetails.SetColumnSpan(this.lblTransactionAccount, 2);
            this.lblTransactionAccount.Name = "lblTransactionAccount";
            this.toolTipMain.SetToolTip(this.lblTransactionAccount, resources.GetString("lblTransactionAccount.ToolTip"));
            // 
            // lblTransactionType
            // 
            resources.ApplyResources(this.lblTransactionType, "lblTransactionType");
            this.tlpTransactionDetails.SetColumnSpan(this.lblTransactionType, 2);
            this.lblTransactionType.Name = "lblTransactionType";
            this.toolTipMain.SetToolTip(this.lblTransactionType, resources.GetString("lblTransactionType.ToolTip"));
            // 
            // lblTransactionTitle
            // 
            resources.ApplyResources(this.lblTransactionTitle, "lblTransactionTitle");
            this.tlpTransactionDetails.SetColumnSpan(this.lblTransactionTitle, 2);
            this.lblTransactionTitle.Name = "lblTransactionTitle";
            this.toolTipMain.SetToolTip(this.lblTransactionTitle, resources.GetString("lblTransactionTitle.ToolTip"));
            // 
            // lblTransactionDateTime
            // 
            resources.ApplyResources(this.lblTransactionDateTime, "lblTransactionDateTime");
            this.tlpTransactionDetails.SetColumnSpan(this.lblTransactionDateTime, 2);
            this.lblTransactionDateTime.Name = "lblTransactionDateTime";
            this.toolTipMain.SetToolTip(this.lblTransactionDateTime, resources.GetString("lblTransactionDateTime.ToolTip"));
            // 
            // tbTransactionTitle
            // 
            resources.ApplyResources(this.tbTransactionTitle, "tbTransactionTitle");
            this.tlpTransactionDetails.SetColumnSpan(this.tbTransactionTitle, 2);
            this.tbTransactionTitle.Name = "tbTransactionTitle";
            this.tbTransactionTitle.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbTransactionTitle, resources.GetString("tbTransactionTitle.ToolTip"));
            // 
            // btnTransactionDelete
            // 
            resources.ApplyResources(this.btnTransactionDelete, "btnTransactionDelete");
            this.btnTransactionDelete.Image = global::easyMoney.Manager.Properties.Resources.delete;
            this.btnTransactionDelete.Name = "btnTransactionDelete";
            this.toolTipMain.SetToolTip(this.btnTransactionDelete, resources.GetString("btnTransactionDelete.ToolTip"));
            this.btnTransactionDelete.UseVisualStyleBackColor = true;
            this.btnTransactionDelete.Click += new System.EventHandler(this.btnTransactionDelete_Click);
            // 
            // tbTransactionType
            // 
            resources.ApplyResources(this.tbTransactionType, "tbTransactionType");
            this.tlpTransactionDetails.SetColumnSpan(this.tbTransactionType, 2);
            this.tbTransactionType.Name = "tbTransactionType";
            this.tbTransactionType.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbTransactionType, resources.GetString("tbTransactionType.ToolTip"));
            // 
            // tbTransactionTime
            // 
            resources.ApplyResources(this.tbTransactionTime, "tbTransactionTime");
            this.tlpTransactionDetails.SetColumnSpan(this.tbTransactionTime, 2);
            this.tbTransactionTime.Name = "tbTransactionTime";
            this.tbTransactionTime.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbTransactionTime, resources.GetString("tbTransactionTime.ToolTip"));
            // 
            // tbTransactionAccount
            // 
            resources.ApplyResources(this.tbTransactionAccount, "tbTransactionAccount");
            this.tlpTransactionDetails.SetColumnSpan(this.tbTransactionAccount, 2);
            this.tbTransactionAccount.Name = "tbTransactionAccount";
            this.tbTransactionAccount.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbTransactionAccount, resources.GetString("tbTransactionAccount.ToolTip"));
            // 
            // tbTransactionAmount
            // 
            resources.ApplyResources(this.tbTransactionAmount, "tbTransactionAmount");
            this.tlpTransactionDetails.SetColumnSpan(this.tbTransactionAmount, 2);
            this.tbTransactionAmount.Name = "tbTransactionAmount";
            this.tbTransactionAmount.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbTransactionAmount, resources.GetString("tbTransactionAmount.ToolTip"));
            // 
            // tbTransactionTags
            // 
            resources.ApplyResources(this.tbTransactionTags, "tbTransactionTags");
            this.tlpTransactionDetails.SetColumnSpan(this.tbTransactionTags, 2);
            this.tbTransactionTags.Name = "tbTransactionTags";
            this.tbTransactionTags.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbTransactionTags, resources.GetString("tbTransactionTags.ToolTip"));
            // 
            // lblTransactionPlan
            // 
            resources.ApplyResources(this.lblTransactionPlan, "lblTransactionPlan");
            this.tlpTransactionDetails.SetColumnSpan(this.lblTransactionPlan, 2);
            this.lblTransactionPlan.Name = "lblTransactionPlan";
            this.toolTipMain.SetToolTip(this.lblTransactionPlan, resources.GetString("lblTransactionPlan.ToolTip"));
            // 
            // tbTransactionPlan
            // 
            resources.ApplyResources(this.tbTransactionPlan, "tbTransactionPlan");
            this.tlpTransactionDetails.SetColumnSpan(this.tbTransactionPlan, 2);
            this.tbTransactionPlan.Name = "tbTransactionPlan";
            this.tbTransactionPlan.ReadOnly = true;
            this.toolTipMain.SetToolTip(this.tbTransactionPlan, resources.GetString("tbTransactionPlan.ToolTip"));
            // 
            // tlpWelcome
            // 
            resources.ApplyResources(tlpWelcome, "tlpWelcome");
            tlpWelcome.Controls.Add(this.lblMonthPlannedTotals, 0, 3);
            tlpWelcome.Controls.Add(gbDebitAccounts, 0, 1);
            tlpWelcome.Controls.Add(this.lblMonthActualTotals, 1, 3);
            tlpWelcome.Controls.Add(gbCreditAccounts, 1, 1);
            tlpWelcome.Controls.Add(this.gbMonthPlans, 0, 2);
            tlpWelcome.Controls.Add(this.gbRecentTransactions, 1, 2);
            tlpWelcome.Controls.Add(this.tsMain, 0, 0);
            tlpWelcome.Name = "tlpWelcome";
            this.toolTipMain.SetToolTip(tlpWelcome, resources.GetString("tlpWelcome.ToolTip"));
            // 
            // lblMonthPlannedTotals
            // 
            resources.ApplyResources(this.lblMonthPlannedTotals, "lblMonthPlannedTotals");
            this.lblMonthPlannedTotals.Name = "lblMonthPlannedTotals";
            this.toolTipMain.SetToolTip(this.lblMonthPlannedTotals, resources.GetString("lblMonthPlannedTotals.ToolTip"));
            // 
            // gbDebitAccounts
            // 
            resources.ApplyResources(gbDebitAccounts, "gbDebitAccounts");
            gbDebitAccounts.Controls.Add(tlpAssets);
            gbDebitAccounts.Name = "gbDebitAccounts";
            gbDebitAccounts.TabStop = false;
            this.toolTipMain.SetToolTip(gbDebitAccounts, resources.GetString("gbDebitAccounts.ToolTip"));
            // 
            // tlpAssets
            // 
            resources.ApplyResources(tlpAssets, "tlpAssets");
            tlpAssets.Controls.Add(this.lblAssets, 1, 0);
            tlpAssets.Controls.Add(lblAssetsTitle, 0, 0);
            tlpAssets.Controls.Add(this.chartAssets, 0, 1);
            tlpAssets.Name = "tlpAssets";
            this.toolTipMain.SetToolTip(tlpAssets, resources.GetString("tlpAssets.ToolTip"));
            // 
            // lblAssets
            // 
            resources.ApplyResources(this.lblAssets, "lblAssets");
            this.lblAssets.ForeColor = System.Drawing.Color.Green;
            this.lblAssets.Name = "lblAssets";
            this.toolTipMain.SetToolTip(this.lblAssets, resources.GetString("lblAssets.ToolTip"));
            // 
            // lblAssetsTitle
            // 
            resources.ApplyResources(lblAssetsTitle, "lblAssetsTitle");
            lblAssetsTitle.Name = "lblAssetsTitle";
            this.toolTipMain.SetToolTip(lblAssetsTitle, resources.GetString("lblAssetsTitle.ToolTip"));
            // 
            // chartAssets
            // 
            resources.ApplyResources(this.chartAssets, "chartAssets");
            chartArea1.AxisX.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.IncreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.LightGray;
            chartArea1.AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
            chartArea1.AxisX.MaximumAutoSize = 100F;
            chartArea1.AxisY.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
            chartArea1.AxisY.LabelAutoFitMinFontSize = 8;
            chartArea1.AxisY.LabelStyle.Format = "N2";
            chartArea1.AxisY.LabelStyle.Interval = 0D;
            chartArea1.AxisY.LabelStyle.IntervalOffset = 0D;
            chartArea1.AxisY.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.LightGray;
            chartArea1.AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
            chartArea1.AxisY.MaximumAutoSize = 100F;
            chartArea1.Name = "MainChartArea";
            this.chartAssets.ChartAreas.Add(chartArea1);
            tlpAssets.SetColumnSpan(this.chartAssets, 2);
            this.chartAssets.Name = "chartAssets";
            this.chartAssets.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Light;
            series1.ChartArea = "MainChartArea";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
            series1.LabelToolTip = "#LABEL";
            series1.Legend = "Legend1";
            series1.Name = "Assets";
            series1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Light;
            series1.ShadowOffset = 1;
            series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
            series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
            this.chartAssets.Series.Add(series1);
            this.chartAssets.TabStop = false;
            this.toolTipMain.SetToolTip(this.chartAssets, resources.GetString("chartAssets.ToolTip"));
            // 
            // lblMonthActualTotals
            // 
            resources.ApplyResources(this.lblMonthActualTotals, "lblMonthActualTotals");
            this.lblMonthActualTotals.AutoEllipsis = true;
            this.lblMonthActualTotals.Name = "lblMonthActualTotals";
            this.toolTipMain.SetToolTip(this.lblMonthActualTotals, resources.GetString("lblMonthActualTotals.ToolTip"));
            // 
            // gbCreditAccounts
            // 
            resources.ApplyResources(gbCreditAccounts, "gbCreditAccounts");
            gbCreditAccounts.Controls.Add(tlpDebts);
            gbCreditAccounts.Name = "gbCreditAccounts";
            gbCreditAccounts.TabStop = false;
            this.toolTipMain.SetToolTip(gbCreditAccounts, resources.GetString("gbCreditAccounts.ToolTip"));
            // 
            // tlpDebts
            // 
            resources.ApplyResources(tlpDebts, "tlpDebts");
            tlpDebts.Controls.Add(this.chartDebts, 0, 1);
            tlpDebts.Controls.Add(this.lblDebts, 1, 0);
            tlpDebts.Controls.Add(lblDebtsTitle, 0, 0);
            tlpDebts.Name = "tlpDebts";
            this.toolTipMain.SetToolTip(tlpDebts, resources.GetString("tlpDebts.ToolTip"));
            // 
            // chartDebts
            // 
            resources.ApplyResources(this.chartDebts, "chartDebts");
            chartArea2.AxisX.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.IncreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea2.AxisX.MajorGrid.LineColor = System.Drawing.Color.LightGray;
            chartArea2.AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
            chartArea2.AxisX.MaximumAutoSize = 100F;
            chartArea2.AxisY.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
            chartArea2.AxisY.LabelAutoFitMinFontSize = 8;
            chartArea2.AxisY.LabelStyle.Format = "N2";
            chartArea2.AxisY.LabelStyle.Interval = 0D;
            chartArea2.AxisY.LabelStyle.IntervalOffset = 0D;
            chartArea2.AxisY.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY.MajorGrid.LineColor = System.Drawing.Color.LightGray;
            chartArea2.AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
            chartArea2.AxisY.MaximumAutoSize = 100F;
            chartArea2.Name = "MainChartArea";
            this.chartDebts.ChartAreas.Add(chartArea2);
            tlpDebts.SetColumnSpan(this.chartDebts, 2);
            this.chartDebts.Name = "chartDebts";
            this.chartDebts.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Light;
            series2.ChartArea = "MainChartArea";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
            series2.LabelToolTip = "#LABEL";
            series2.Legend = "Legend1";
            series2.Name = "Assets";
            series2.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Light;
            series2.ShadowOffset = 1;
            series2.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
            series2.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
            this.chartDebts.Series.Add(series2);
            this.chartDebts.TabStop = false;
            this.toolTipMain.SetToolTip(this.chartDebts, resources.GetString("chartDebts.ToolTip"));
            // 
            // lblDebts
            // 
            resources.ApplyResources(this.lblDebts, "lblDebts");
            this.lblDebts.ForeColor = System.Drawing.Color.Blue;
            this.lblDebts.Name = "lblDebts";
            this.toolTipMain.SetToolTip(this.lblDebts, resources.GetString("lblDebts.ToolTip"));
            // 
            // lblDebtsTitle
            // 
            resources.ApplyResources(lblDebtsTitle, "lblDebtsTitle");
            lblDebtsTitle.Name = "lblDebtsTitle";
            this.toolTipMain.SetToolTip(lblDebtsTitle, resources.GetString("lblDebtsTitle.ToolTip"));
            // 
            // gbMonthPlans
            // 
            resources.ApplyResources(this.gbMonthPlans, "gbMonthPlans");
            this.gbMonthPlans.Controls.Add(this.dgvPlans);
            this.gbMonthPlans.Name = "gbMonthPlans";
            this.gbMonthPlans.TabStop = false;
            this.toolTipMain.SetToolTip(this.gbMonthPlans, resources.GetString("gbMonthPlans.ToolTip"));
            // 
            // dgvPlans
            // 
            resources.ApplyResources(this.dgvPlans, "dgvPlans");
            this.dgvPlans.AllowUserToAddRows = false;
            this.dgvPlans.AllowUserToDeleteRows = false;
            this.dgvPlans.AllowUserToResizeRows = false;
            this.dgvPlans.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvPlans.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            this.dgvPlans.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            dataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPlans.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle6;
            this.dgvPlans.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvPlans.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dgvcPlansDate,
            this.dgvcPlansTransactionType,
            this.dgvcPlansAmount,
            this.dgvcPlansTitle});
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle10.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            dataGridViewCellStyle10.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle10.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle10.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvPlans.DefaultCellStyle = dataGridViewCellStyle10;
            this.dgvPlans.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
            this.dgvPlans.Name = "dgvPlans";
            this.dgvPlans.ReadOnly = true;
            this.dgvPlans.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle11.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            dataGridViewCellStyle11.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPlans.RowHeadersDefaultCellStyle = dataGridViewCellStyle11;
            this.dgvPlans.RowHeadersVisible = false;
            this.dgvPlans.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvPlans.ShowEditingIcon = false;
            this.toolTipMain.SetToolTip(this.dgvPlans, resources.GetString("dgvPlans.ToolTip"));
            this.dgvPlans.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvPlans_CellContentDoubleClick);
            // 
            // dgvcPlansDate
            // 
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
            dataGridViewCellStyle7.Format = "d";
            this.dgvcPlansDate.DefaultCellStyle = dataGridViewCellStyle7;
            resources.ApplyResources(this.dgvcPlansDate, "dgvcPlansDate");
            this.dgvcPlansDate.Name = "dgvcPlansDate";
            this.dgvcPlansDate.ReadOnly = true;
            // 
            // dgvcPlansTransactionType
            // 
            resources.ApplyResources(this.dgvcPlansTransactionType, "dgvcPlansTransactionType");
            this.dgvcPlansTransactionType.Name = "dgvcPlansTransactionType";
            this.dgvcPlansTransactionType.ReadOnly = true;
            // 
            // dgvcPlansAmount
            // 
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
            this.dgvcPlansAmount.DefaultCellStyle = dataGridViewCellStyle8;
            resources.ApplyResources(this.dgvcPlansAmount, "dgvcPlansAmount");
            this.dgvcPlansAmount.Name = "dgvcPlansAmount";
            this.dgvcPlansAmount.ReadOnly = true;
            // 
            // dgvcPlansTitle
            // 
            this.dgvcPlansTitle.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
            this.dgvcPlansTitle.DefaultCellStyle = dataGridViewCellStyle9;
            resources.ApplyResources(this.dgvcPlansTitle, "dgvcPlansTitle");
            this.dgvcPlansTitle.Name = "dgvcPlansTitle";
            this.dgvcPlansTitle.ReadOnly = true;
            // 
            // gbRecentTransactions
            // 
            resources.ApplyResources(this.gbRecentTransactions, "gbRecentTransactions");
            this.gbRecentTransactions.Controls.Add(this.dgvRecentTransactions);
            this.gbRecentTransactions.Name = "gbRecentTransactions";
            this.gbRecentTransactions.TabStop = false;
            this.toolTipMain.SetToolTip(this.gbRecentTransactions, resources.GetString("gbRecentTransactions.ToolTip"));
            // 
            // dgvRecentTransactions
            // 
            resources.ApplyResources(this.dgvRecentTransactions, "dgvRecentTransactions");
            this.dgvRecentTransactions.AllowUserToAddRows = false;
            this.dgvRecentTransactions.AllowUserToDeleteRows = false;
            this.dgvRecentTransactions.AllowUserToResizeRows = false;
            this.dgvRecentTransactions.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvRecentTransactions.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            this.dgvRecentTransactions.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle12.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            dataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvRecentTransactions.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle12;
            this.dgvRecentTransactions.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvRecentTransactions.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dgvcRecentDate,
            this.dgvcRecentTransactionType,
            this.dgvcRecentAmount,
            this.dgvcRecentTitle});
            dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle16.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            dataGridViewCellStyle16.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle16.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle16.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvRecentTransactions.DefaultCellStyle = dataGridViewCellStyle16;
            this.dgvRecentTransactions.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
            this.dgvRecentTransactions.Name = "dgvRecentTransactions";
            this.dgvRecentTransactions.ReadOnly = true;
            this.dgvRecentTransactions.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle17.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            dataGridViewCellStyle17.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle17.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle17.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvRecentTransactions.RowHeadersDefaultCellStyle = dataGridViewCellStyle17;
            this.dgvRecentTransactions.RowHeadersVisible = false;
            this.dgvRecentTransactions.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvRecentTransactions.ShowEditingIcon = false;
            this.toolTipMain.SetToolTip(this.dgvRecentTransactions, resources.GetString("dgvRecentTransactions.ToolTip"));
            this.dgvRecentTransactions.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvRecentTransactions_CellContentDoubleClick);
            // 
            // dgvcRecentDate
            // 
            dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
            dataGridViewCellStyle13.Format = "d";
            this.dgvcRecentDate.DefaultCellStyle = dataGridViewCellStyle13;
            resources.ApplyResources(this.dgvcRecentDate, "dgvcRecentDate");
            this.dgvcRecentDate.Name = "dgvcRecentDate";
            this.dgvcRecentDate.ReadOnly = true;
            // 
            // dgvcRecentTransactionType
            // 
            resources.ApplyResources(this.dgvcRecentTransactionType, "dgvcRecentTransactionType");
            this.dgvcRecentTransactionType.Name = "dgvcRecentTransactionType";
            this.dgvcRecentTransactionType.ReadOnly = true;
            // 
            // dgvcRecentAmount
            // 
            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
            this.dgvcRecentAmount.DefaultCellStyle = dataGridViewCellStyle14;
            resources.ApplyResources(this.dgvcRecentAmount, "dgvcRecentAmount");
            this.dgvcRecentAmount.Name = "dgvcRecentAmount";
            this.dgvcRecentAmount.ReadOnly = true;
            // 
            // dgvcRecentTitle
            // 
            this.dgvcRecentTitle.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
            this.dgvcRecentTitle.DefaultCellStyle = dataGridViewCellStyle15;
            resources.ApplyResources(this.dgvcRecentTitle, "dgvcRecentTitle");
            this.dgvcRecentTitle.Name = "dgvcRecentTitle";
            this.dgvcRecentTitle.ReadOnly = true;
            // 
            // tsMain
            // 
            resources.ApplyResources(this.tsMain, "tsMain");
            tlpWelcome.SetColumnSpan(this.tsMain, 2);
            this.tsMain.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.tsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsddbNewTransaction,
            this.tsddbNewPlan,
            this.tsbMonthBalance,
            tssSeparator,
            tslSearch,
            this.tsstbSearchString,
            this.tsbSearch});
            this.tsMain.Name = "tsMain";
            this.tsMain.TabStop = true;
            this.toolTipMain.SetToolTip(this.tsMain, resources.GetString("tsMain.ToolTip"));
            // 
            // tsddbNewTransaction
            // 
            resources.ApplyResources(this.tsddbNewTransaction, "tsddbNewTransaction");
            this.tsddbNewTransaction.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsmiNewPaymentTransaction,
            this.tsmiNewIncomeTransaction});
            this.tsddbNewTransaction.Image = global::easyMoney.Manager.Properties.Resources.application_form;
            this.tsddbNewTransaction.Name = "tsddbNewTransaction";
            // 
            // tsmiNewPaymentTransaction
            // 
            resources.ApplyResources(this.tsmiNewPaymentTransaction, "tsmiNewPaymentTransaction");
            this.tsmiNewPaymentTransaction.Image = global::easyMoney.Manager.Properties.Resources.basket;
            this.tsmiNewPaymentTransaction.Name = "tsmiNewPaymentTransaction";
            // 
            // tsmiNewIncomeTransaction
            // 
            resources.ApplyResources(this.tsmiNewIncomeTransaction, "tsmiNewIncomeTransaction");
            this.tsmiNewIncomeTransaction.Image = global::easyMoney.Manager.Properties.Resources.coins;
            this.tsmiNewIncomeTransaction.Name = "tsmiNewIncomeTransaction";
            // 
            // tsddbNewPlan
            // 
            resources.ApplyResources(this.tsddbNewPlan, "tsddbNewPlan");
            this.tsddbNewPlan.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsmiPlanAPayment,
            this.tsmiPlanAnIncome});
            this.tsddbNewPlan.Image = global::easyMoney.Manager.Properties.Resources.note;
            this.tsddbNewPlan.Name = "tsddbNewPlan";
            // 
            // tsmiPlanAPayment
            // 
            resources.ApplyResources(this.tsmiPlanAPayment, "tsmiPlanAPayment");
            this.tsmiPlanAPayment.Image = global::easyMoney.Manager.Properties.Resources.basket_add;
            this.tsmiPlanAPayment.Name = "tsmiPlanAPayment";
            // 
            // tsmiPlanAnIncome
            // 
            resources.ApplyResources(this.tsmiPlanAnIncome, "tsmiPlanAnIncome");
            this.tsmiPlanAnIncome.Image = global::easyMoney.Manager.Properties.Resources.coins_add;
            this.tsmiPlanAnIncome.Name = "tsmiPlanAnIncome";
            // 
            // tsbMonthBalance
            // 
            resources.ApplyResources(this.tsbMonthBalance, "tsbMonthBalance");
            this.tsbMonthBalance.Image = global::easyMoney.Manager.Properties.Resources.calendar;
            this.tsbMonthBalance.Name = "tsbMonthBalance";
            this.tsbMonthBalance.Click += new System.EventHandler(this.tsbMonthBalance_Click);
            // 
            // tssSeparator
            // 
            resources.ApplyResources(tssSeparator, "tssSeparator");
            tssSeparator.Name = "tssSeparator";
            // 
            // tslSearch
            // 
            resources.ApplyResources(tslSearch, "tslSearch");
            tslSearch.Name = "tslSearch";
            // 
            // tsstbSearchString
            // 
            resources.ApplyResources(this.tsstbSearchString, "tsstbSearchString");
            this.tsstbSearchString.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
            this.tsstbSearchString.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
            this.tsstbSearchString.Name = "tsstbSearchString";
            this.tsstbSearchString.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tsstbSearchString_KeyDown);
            // 
            // tsbSearch
            // 
            resources.ApplyResources(this.tsbSearch, "tsbSearch");
            this.tsbSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.tsbSearch.Image = global::easyMoney.Manager.Properties.Resources.magnifier;
            this.tsbSearch.Name = "tsbSearch";
            this.tsbSearch.Click += new System.EventHandler(this.tsbSearch_Click);
            // 
            // imageListTabs
            // 
            this.imageListTabs.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
            resources.ApplyResources(this.imageListTabs, "imageListTabs");
            this.imageListTabs.TransparentColor = System.Drawing.Color.Transparent;
            // 
            // cmsSearchResults
            // 
            resources.ApplyResources(this.cmsSearchResults, "cmsSearchResults");
            this.cmsSearchResults.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsmiOpenResult,
            this.tsmiEditResult,
            this.tsmiAccountBalanceCorrection,
            this.tsmiSubmitPlanTransaction,
            this.tssSearchResultsSeparator,
            this.tsmiDeleteResult});
            this.cmsSearchResults.Name = "cmsSearchResults";
            this.toolTipMain.SetToolTip(this.cmsSearchResults, resources.GetString("cmsSearchResults.ToolTip"));
            this.cmsSearchResults.Opening += new System.ComponentModel.CancelEventHandler(this.cmsSearchResults_Opening);
            // 
            // tsmiOpenResult
            // 
            resources.ApplyResources(this.tsmiOpenResult, "tsmiOpenResult");
            this.tsmiOpenResult.Name = "tsmiOpenResult";
            this.tsmiOpenResult.Click += new System.EventHandler(this.tsmiOpenResult_Click);
            // 
            // tsmiEditResult
            // 
            resources.ApplyResources(this.tsmiEditResult, "tsmiEditResult");
            this.tsmiEditResult.Image = global::easyMoney.Manager.Properties.Resources.pencil;
            this.tsmiEditResult.Name = "tsmiEditResult";
            this.tsmiEditResult.Click += new System.EventHandler(this.tsmiEditResult_Click);
            // 
            // tsmiAccountBalanceCorrection
            // 
            resources.ApplyResources(this.tsmiAccountBalanceCorrection, "tsmiAccountBalanceCorrection");
            this.tsmiAccountBalanceCorrection.Image = global::easyMoney.Manager.Properties.Resources.calculator;
            this.tsmiAccountBalanceCorrection.Name = "tsmiAccountBalanceCorrection";
            this.tsmiAccountBalanceCorrection.Click += new System.EventHandler(this.tsmiAccountBalanceCorrection_Click);
            // 
            // tsmiSubmitPlanTransaction
            // 
            resources.ApplyResources(this.tsmiSubmitPlanTransaction, "tsmiSubmitPlanTransaction");
            this.tsmiSubmitPlanTransaction.Image = global::easyMoney.Manager.Properties.Resources.application_form;
            this.tsmiSubmitPlanTransaction.Name = "tsmiSubmitPlanTransaction";
            this.tsmiSubmitPlanTransaction.Click += new System.EventHandler(this.tsmiSubmitPlanTransaction_Click);
            // 
            // tssSearchResultsSeparator
            // 
            resources.ApplyResources(this.tssSearchResultsSeparator, "tssSearchResultsSeparator");
            this.tssSearchResultsSeparator.Name = "tssSearchResultsSeparator";
            // 
            // tsmiDeleteResult
            // 
            resources.ApplyResources(this.tsmiDeleteResult, "tsmiDeleteResult");
            this.tsmiDeleteResult.Image = global::easyMoney.Manager.Properties.Resources.delete;
            this.tsmiDeleteResult.Name = "tsmiDeleteResult";
            this.tsmiDeleteResult.Click += new System.EventHandler(this.tsmiDeleteResult_Click);
            // 
            // cmsTag
            // 
            resources.ApplyResources(this.cmsTag, "cmsTag");
            this.cmsTag.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsmiShowTagUsages,
            this.tsmiRenameTag,
            tssTagSeparator,
            this.tsmiDeleteTag});
            this.cmsTag.Name = "cmsTag";
            this.toolTipMain.SetToolTip(this.cmsTag, resources.GetString("cmsTag.ToolTip"));
            // 
            // tsmiShowTagUsages
            // 
            resources.ApplyResources(this.tsmiShowTagUsages, "tsmiShowTagUsages");
            this.tsmiShowTagUsages.Image = global::easyMoney.Manager.Properties.Resources.table_multiple;
            this.tsmiShowTagUsages.Name = "tsmiShowTagUsages";
            this.tsmiShowTagUsages.Click += new System.EventHandler(this.tsmiShowTagUsages_Click);
            // 
            // tsmiRenameTag
            // 
            resources.ApplyResources(this.tsmiRenameTag, "tsmiRenameTag");
            this.tsmiRenameTag.Image = global::easyMoney.Manager.Properties.Resources.pencil;
            this.tsmiRenameTag.Name = "tsmiRenameTag";
            this.tsmiRenameTag.Click += new System.EventHandler(this.tsmiRenameTag_Click);
            // 
            // tsmiDeleteTag
            // 
            resources.ApplyResources(this.tsmiDeleteTag, "tsmiDeleteTag");
            this.tsmiDeleteTag.Image = global::easyMoney.Manager.Properties.Resources.delete;
            this.tsmiDeleteTag.Name = "tsmiDeleteTag";
            this.tsmiDeleteTag.Click += new System.EventHandler(this.tsmiDeleteTag_Click);
            // 
            // BottomToolStripPanel
            // 
            resources.ApplyResources(this.BottomToolStripPanel, "BottomToolStripPanel");
            this.BottomToolStripPanel.Name = "BottomToolStripPanel";
            this.BottomToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.BottomToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.toolTipMain.SetToolTip(this.BottomToolStripPanel, resources.GetString("BottomToolStripPanel.ToolTip"));
            // 
            // TopToolStripPanel
            // 
            resources.ApplyResources(this.TopToolStripPanel, "TopToolStripPanel");
            this.TopToolStripPanel.Name = "TopToolStripPanel";
            this.TopToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.TopToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.toolTipMain.SetToolTip(this.TopToolStripPanel, resources.GetString("TopToolStripPanel.ToolTip"));
            // 
            // RightToolStripPanel
            // 
            resources.ApplyResources(this.RightToolStripPanel, "RightToolStripPanel");
            this.RightToolStripPanel.Name = "RightToolStripPanel";
            this.RightToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.RightToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.toolTipMain.SetToolTip(this.RightToolStripPanel, resources.GetString("RightToolStripPanel.ToolTip"));
            // 
            // LeftToolStripPanel
            // 
            resources.ApplyResources(this.LeftToolStripPanel, "LeftToolStripPanel");
            this.LeftToolStripPanel.Name = "LeftToolStripPanel";
            this.LeftToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.LeftToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.toolTipMain.SetToolTip(this.LeftToolStripPanel, resources.GetString("LeftToolStripPanel.ToolTip"));
            // 
            // ContentPanel
            // 
            resources.ApplyResources(this.ContentPanel, "ContentPanel");
            this.toolTipMain.SetToolTip(this.ContentPanel, resources.GetString("ContentPanel.ToolTip"));
            // 
            // tabsMain
            // 
            resources.ApplyResources(this.tabsMain, "tabsMain");
            this.tabsMain.Controls.Add(this.tabWelcome);
            this.tabsMain.Controls.Add(this.tabTransactions);
            this.tabsMain.Controls.Add(this.tabPlannedTransactions);
            this.tabsMain.Controls.Add(this.tabAccounts);
            this.tabsMain.Controls.Add(this.tabReports);
            this.tabsMain.Controls.Add(this.tabSearch);
            this.tabsMain.Controls.Add(this.tabSettings);
            this.tabsMain.Controls.Add(this.tabAbout);
            this.tabsMain.ImageList = this.imageListTabs;
            this.tabsMain.Name = "tabsMain";
            this.tabsMain.SelectedIndex = 0;
            this.tabsMain.TabStop = false;
            this.toolTipMain.SetToolTip(this.tabsMain, resources.GetString("tabsMain.ToolTip"));
            this.tabsMain.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabsMain_Selecting);
            // 
            // tabWelcome
            // 
            resources.ApplyResources(this.tabWelcome, "tabWelcome");
            this.tabWelcome.Controls.Add(tlpWelcome);
            this.tabWelcome.Name = "tabWelcome";
            this.toolTipMain.SetToolTip(this.tabWelcome, resources.GetString("tabWelcome.ToolTip"));
            this.tabWelcome.UseVisualStyleBackColor = true;
            // 
            // tabTransactions
            // 
            resources.ApplyResources(this.tabTransactions, "tabTransactions");
            this.tabTransactions.Controls.Add(tlpTransactions);
            this.tabTransactions.Name = "tabTransactions";
            this.toolTipMain.SetToolTip(this.tabTransactions, resources.GetString("tabTransactions.ToolTip"));
            this.tabTransactions.UseVisualStyleBackColor = true;
            // 
            // tabPlannedTransactions
            // 
            resources.ApplyResources(this.tabPlannedTransactions, "tabPlannedTransactions");
            this.tabPlannedTransactions.Controls.Add(tlpPlans);
            this.tabPlannedTransactions.Name = "tabPlannedTransactions";
            this.toolTipMain.SetToolTip(this.tabPlannedTransactions, resources.GetString("tabPlannedTransactions.ToolTip"));
            this.tabPlannedTransactions.UseVisualStyleBackColor = true;
            // 
            // tabAccounts
            // 
            resources.ApplyResources(this.tabAccounts, "tabAccounts");
            this.tabAccounts.Controls.Add(tlpAccounts);
            this.tabAccounts.Name = "tabAccounts";
            this.toolTipMain.SetToolTip(this.tabAccounts, resources.GetString("tabAccounts.ToolTip"));
            this.tabAccounts.UseVisualStyleBackColor = true;
            // 
            // tabReports
            // 
            resources.ApplyResources(this.tabReports, "tabReports");
            this.tabReports.Controls.Add(tlpReports);
            this.tabReports.Name = "tabReports";
            this.toolTipMain.SetToolTip(this.tabReports, resources.GetString("tabReports.ToolTip"));
            this.tabReports.UseVisualStyleBackColor = true;
            // 
            // tabSearch
            // 
            resources.ApplyResources(this.tabSearch, "tabSearch");
            this.tabSearch.Controls.Add(this.scSearchTabSplit);
            this.tabSearch.Name = "tabSearch";
            this.toolTipMain.SetToolTip(this.tabSearch, resources.GetString("tabSearch.ToolTip"));
            this.tabSearch.UseVisualStyleBackColor = true;
            // 
            // tabSettings
            // 
            resources.ApplyResources(this.tabSettings, "tabSettings");
            this.tabSettings.Controls.Add(tlpSettings);
            this.tabSettings.Name = "tabSettings";
            this.toolTipMain.SetToolTip(this.tabSettings, resources.GetString("tabSettings.ToolTip"));
            this.tabSettings.UseVisualStyleBackColor = true;
            // 
            // tabAbout
            // 
            resources.ApplyResources(this.tabAbout, "tabAbout");
            this.tabAbout.Controls.Add(tlpAbout);
            this.tabAbout.Name = "tabAbout";
            this.toolTipMain.SetToolTip(this.tabAbout, resources.GetString("tabAbout.ToolTip"));
            this.tabAbout.UseVisualStyleBackColor = true;
            // 
            // bgwUpdateCheck
            // 
            this.bgwUpdateCheck.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwUpdateCheck_DoWork);
            this.bgwUpdateCheck.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwUpdateCheck_RunWorkerCompleted);
            // 
            // fdOpenData
            // 
            resources.ApplyResources(this.fdOpenData, "fdOpenData");
            // 
            // fdSaveData
            // 
            resources.ApplyResources(this.fdSaveData, "fdSaveData");
            // 
            // MainApplicationForm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.tabsMain);
            this.KeyPreview = true;
            this.Name = "MainApplicationForm";
            this.toolTipMain.SetToolTip(this, resources.GetString("$this.ToolTip"));
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainApplicationForm_FormClosing);
            this.Load += new System.EventHandler(this.MainApplicationForm_Load);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MainApplicationForm_KeyDown);
            this.scSearchTabSplit.Panel1.ResumeLayout(false);
            this.scSearchTabSplit.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.scSearchTabSplit)).EndInit();
            this.scSearchTabSplit.ResumeLayout(false);
            gbTags.ResumeLayout(false);
            gbSearch.ResumeLayout(false);
            tlpSearchResults.ResumeLayout(false);
            tlpSearchResults.PerformLayout();
            this.tsSearch.ResumeLayout(false);
            this.tsSearch.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgvSearchResults)).EndInit();
            tlpAbout.ResumeLayout(false);
            gbLogo.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            gbThirdPartyComponents.ResumeLayout(false);
            tlpThirdPartyComponents.ResumeLayout(false);
            tlpThirdPartyComponents.PerformLayout();
            gbVersionInfo.ResumeLayout(false);
            tlpVersions.ResumeLayout(false);
            tlpVersions.PerformLayout();
            gbActions.ResumeLayout(false);
            this.tlpMaintenanceActions.ResumeLayout(false);
            this.tlpMaintenanceActions.PerformLayout();
            tlpSettings.ResumeLayout(false);
            gbUISettings.ResumeLayout(false);
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            gbCustomMetadata.ResumeLayout(false);
            tlpCustomMetadata.ResumeLayout(false);
            tlpCustomMetadata.PerformLayout();
            gbPortableSettings.ResumeLayout(false);
            tlpPortabilitySettings.ResumeLayout(false);
            tlpPortabilitySettings.PerformLayout();
            gbConnectivity.ResumeLayout(false);
            tlpConnectivityOptions.ResumeLayout(false);
            tlpConnectivityOptions.PerformLayout();
            tlpReports.ResumeLayout(false);
            gbReportList.ResumeLayout(false);
            gbExternalReports.ResumeLayout(false);
            tlpExternalReports.ResumeLayout(false);
            tlpExternalReports.PerformLayout();
            gbReportParemeters.ResumeLayout(false);
            this.tlpReportParameters.ResumeLayout(false);
            tlpAccounts.ResumeLayout(false);
            gbAccountList.ResumeLayout(false);
            tlpAccountList.ResumeLayout(false);
            tlpAccountList.PerformLayout();
            this.gbAccountDetails.ResumeLayout(false);
            this.tlpAccountDetails.ResumeLayout(false);
            this.tlpAccountDetails.PerformLayout();
            tlpPlans.ResumeLayout(false);
            gbPlannedTransactionList.ResumeLayout(false);
            tlpPlannedTransactionList.ResumeLayout(false);
            tlpPlannedTransactionList.PerformLayout();
            this.gbPlannedTransactionDetails.ResumeLayout(false);
            this.tlpPlannedTransactionDetails.ResumeLayout(false);
            this.tlpPlannedTransactionDetails.PerformLayout();
            tlpTransactions.ResumeLayout(false);
            gbTransactionList.ResumeLayout(false);
            tlpTransactionList.ResumeLayout(false);
            tlpTransactionList.PerformLayout();
            this.gbTransactionDetails.ResumeLayout(false);
            this.tlpTransactionDetails.ResumeLayout(false);
            this.tlpTransactionDetails.PerformLayout();
            tlpWelcome.ResumeLayout(false);
            tlpWelcome.PerformLayout();
            gbDebitAccounts.ResumeLayout(false);
            tlpAssets.ResumeLayout(false);
            tlpAssets.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartAssets)).EndInit();
            gbCreditAccounts.ResumeLayout(false);
            tlpDebts.ResumeLayout(false);
            tlpDebts.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartDebts)).EndInit();
            this.gbMonthPlans.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dgvPlans)).EndInit();
            this.gbRecentTransactions.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dgvRecentTransactions)).EndInit();
            this.tsMain.ResumeLayout(false);
            this.tsMain.PerformLayout();
            this.cmsSearchResults.ResumeLayout(false);
            this.cmsTag.ResumeLayout(false);
            this.tabsMain.ResumeLayout(false);
            this.tabWelcome.ResumeLayout(false);
            this.tabTransactions.ResumeLayout(false);
            this.tabPlannedTransactions.ResumeLayout(false);
            this.tabAccounts.ResumeLayout(false);
            this.tabReports.ResumeLayout(false);
            this.tabSearch.ResumeLayout(false);
            this.tabSettings.ResumeLayout(false);
            this.tabAbout.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Ejemplo n.º 30
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.Windows.Forms.TableLayoutPanel        tableLayoutPanel5;
     DOL.Tools.QuestDesigner.Controls.HeaderStrip headerStrip2;
     System.Windows.Forms.ToolStripLabel          toolStripLabel2;
     DOL.Tools.QuestDesigner.Controls.HeaderStrip headerStrip1;
     System.Windows.Forms.ToolStripLabel          toolStripLabel1;
     System.Windows.Forms.DataGridViewCellStyle   dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.Label labelQuestName;
     System.Windows.Forms.Label labelTitle;
     System.Windows.Forms.Label labelAuthor;
     System.Windows.Forms.Label labelDate;
     System.Windows.Forms.Label labelVersion;
     System.Windows.Forms.Label labelNamespace;
     System.Windows.Forms.Label labelLevel;
     System.Windows.Forms.Label labelInvitingNPC;
     System.Windows.Forms.Label labelMaxQuestCount;
     System.Windows.Forms.Label labelNotes;
     this.QuestStep         = new System.Windows.Forms.DataGridView();
     this.QuestName         = new System.Windows.Forms.TextBox();
     this.Title             = new System.Windows.Forms.TextBox();
     this.Author            = new System.Windows.Forms.TextBox();
     this.scriptDate        = new System.Windows.Forms.DateTimePicker();
     this.Version           = new System.Windows.Forms.TextBox();
     this.Namespace         = new System.Windows.Forms.TextBox();
     this.LevelMin          = new System.Windows.Forms.NumericUpDown();
     this.LevelMax          = new System.Windows.Forms.NumericUpDown();
     this.InvitingNPC       = new System.Windows.Forms.ComboBox();
     this.MaxQuestCount     = new System.Windows.Forms.NumericUpDown();
     this.Notes             = new System.Windows.Forms.TextBox();
     this.labelClasses      = new System.Windows.Forms.Label();
     this.listBoxAllowed    = new System.Windows.Forms.ListBox();
     this.listBoxAvailable  = new System.Windows.Forms.ListBox();
     this.flowLayoutPanel1  = new System.Windows.Forms.FlowLayoutPanel();
     this.buttonAddClass    = new System.Windows.Forms.Button();
     this.buttonRemoveClass = new System.Windows.Forms.Button();
     this.errorProvider     = new System.Windows.Forms.ErrorProvider(this.components);
     tableLayoutPanel5      = new System.Windows.Forms.TableLayoutPanel();
     headerStrip2           = new DOL.Tools.QuestDesigner.Controls.HeaderStrip();
     toolStripLabel2        = new System.Windows.Forms.ToolStripLabel();
     headerStrip1           = new DOL.Tools.QuestDesigner.Controls.HeaderStrip();
     toolStripLabel1        = new System.Windows.Forms.ToolStripLabel();
     labelQuestName         = new System.Windows.Forms.Label();
     labelTitle             = new System.Windows.Forms.Label();
     labelAuthor            = new System.Windows.Forms.Label();
     labelDate          = new System.Windows.Forms.Label();
     labelVersion       = new System.Windows.Forms.Label();
     labelNamespace     = new System.Windows.Forms.Label();
     labelLevel         = new System.Windows.Forms.Label();
     labelInvitingNPC   = new System.Windows.Forms.Label();
     labelMaxQuestCount = new System.Windows.Forms.Label();
     labelNotes         = new System.Windows.Forms.Label();
     tableLayoutPanel5.SuspendLayout();
     headerStrip2.SuspendLayout();
     headerStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.QuestStep)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LevelMin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LevelMax)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaxQuestCount)).BeginInit();
     this.flowLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel5
     //
     tableLayoutPanel5.ColumnCount = 6;
     tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 112F));
     tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F));
     tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 112F));
     tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
     tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
     tableLayoutPanel5.Controls.Add(headerStrip2, 0, 0);
     tableLayoutPanel5.Controls.Add(headerStrip1, 0, 8);
     tableLayoutPanel5.Controls.Add(this.QuestStep, 0, 9);
     tableLayoutPanel5.Controls.Add(labelQuestName, 0, 1);
     tableLayoutPanel5.Controls.Add(this.QuestName, 1, 1);
     tableLayoutPanel5.Controls.Add(labelTitle, 0, 2);
     tableLayoutPanel5.Controls.Add(this.Title, 1, 2);
     tableLayoutPanel5.Controls.Add(labelAuthor, 0, 3);
     tableLayoutPanel5.Controls.Add(this.Author, 1, 3);
     tableLayoutPanel5.Controls.Add(labelDate, 0, 4);
     tableLayoutPanel5.Controls.Add(this.scriptDate, 1, 4);
     tableLayoutPanel5.Controls.Add(labelVersion, 0, 5);
     tableLayoutPanel5.Controls.Add(this.Version, 1, 5);
     tableLayoutPanel5.Controls.Add(labelNamespace, 0, 6);
     tableLayoutPanel5.Controls.Add(this.Namespace, 1, 6);
     tableLayoutPanel5.Controls.Add(labelLevel, 3, 1);
     tableLayoutPanel5.Controls.Add(this.LevelMin, 4, 1);
     tableLayoutPanel5.Controls.Add(this.LevelMax, 5, 1);
     tableLayoutPanel5.Controls.Add(labelInvitingNPC, 3, 2);
     tableLayoutPanel5.Controls.Add(this.InvitingNPC, 4, 2);
     tableLayoutPanel5.Controls.Add(labelMaxQuestCount, 3, 3);
     tableLayoutPanel5.Controls.Add(this.MaxQuestCount, 4, 3);
     tableLayoutPanel5.Controls.Add(labelNotes, 3, 4);
     tableLayoutPanel5.Controls.Add(this.Notes, 3, 5);
     tableLayoutPanel5.Controls.Add(this.labelClasses, 0, 7);
     tableLayoutPanel5.Controls.Add(this.listBoxAllowed, 1, 7);
     tableLayoutPanel5.Controls.Add(this.listBoxAvailable, 3, 7);
     tableLayoutPanel5.Controls.Add(this.flowLayoutPanel1, 2, 7);
     tableLayoutPanel5.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel5.Location = new System.Drawing.Point(0, 0);
     tableLayoutPanel5.Margin   = new System.Windows.Forms.Padding(2);
     tableLayoutPanel5.Name     = "tableLayoutPanel5";
     tableLayoutPanel5.RowCount = 9;
     tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
     tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 80F));
     tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutPanel5.Size     = new System.Drawing.Size(606, 464);
     tableLayoutPanel5.TabIndex = 8;
     //
     // headerStrip2
     //
     headerStrip2.AutoSize = false;
     tableLayoutPanel5.SetColumnSpan(headerStrip2, 6);
     headerStrip2.Dock      = System.Windows.Forms.DockStyle.Fill;
     headerStrip2.Font      = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     headerStrip2.ForeColor = System.Drawing.Color.White;
     headerStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     headerStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         toolStripLabel2
     });
     headerStrip2.Location = new System.Drawing.Point(0, 0);
     headerStrip2.Name     = "headerStrip2";
     headerStrip2.Size     = new System.Drawing.Size(606, 30);
     headerStrip2.TabIndex = 23;
     headerStrip2.Text     = "header";
     //
     // toolStripLabel2
     //
     toolStripLabel2.ForeColor = System.Drawing.Color.Gray;
     toolStripLabel2.Name      = "toolStripLabel2";
     toolStripLabel2.Size      = new System.Drawing.Size(110, 27);
     toolStripLabel2.Text      = "Quest Details";
     //
     // headerStrip1
     //
     headerStrip1.AutoSize = false;
     tableLayoutPanel5.SetColumnSpan(headerStrip1, 6);
     headerStrip1.Dock      = System.Windows.Forms.DockStyle.Fill;
     headerStrip1.Font      = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     headerStrip1.ForeColor = System.Drawing.Color.White;
     headerStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     headerStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         toolStripLabel1
     });
     headerStrip1.Location = new System.Drawing.Point(0, 266);
     headerStrip1.Name     = "headerStrip1";
     headerStrip1.Size     = new System.Drawing.Size(606, 25);
     headerStrip1.TabIndex = 22;
     headerStrip1.Text     = "header";
     //
     // toolStripLabel1
     //
     toolStripLabel1.Font      = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     toolStripLabel1.ForeColor = System.Drawing.Color.Gray;
     toolStripLabel1.Name      = "toolStripLabel1";
     toolStripLabel1.Size      = new System.Drawing.Size(94, 22);
     toolStripLabel1.Text      = "Quest Steps";
     //
     // QuestStep
     //
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.QuestStep.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.QuestStep.AutoSizeColumnsMode             = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.QuestStep.AutoSizeRowsMode            = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.QuestStep.BackgroundColor             = System.Drawing.SystemColors.Control;
     this.QuestStep.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     tableLayoutPanel5.SetColumnSpan(this.QuestStep, 6);
     this.QuestStep.DataMember         = "QuestStep";
     this.QuestStep.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.QuestStep.Location           = new System.Drawing.Point(3, 294);
     this.QuestStep.Name               = "QuestStep";
     this.QuestStep.RowTemplate.Height = 24;
     this.QuestStep.Size               = new System.Drawing.Size(600, 167);
     this.QuestStep.TabIndex           = 21;
     //
     // labelQuestName
     //
     labelQuestName.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     labelQuestName.AutoSize = true;
     labelQuestName.Location = new System.Drawing.Point(3, 36);
     labelQuestName.Name     = "labelQuestName";
     labelQuestName.Size     = new System.Drawing.Size(35, 13);
     labelQuestName.TabIndex = 0;
     labelQuestName.Text     = "Name";
     //
     // QuestName
     //
     this.QuestName.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.QuestName.Location    = new System.Drawing.Point(115, 33);
     this.QuestName.Name        = "QuestName";
     this.QuestName.Size        = new System.Drawing.Size(170, 20);
     this.QuestName.TabIndex    = 1;
     this.QuestName.Validating += new System.ComponentModel.CancelEventHandler(this.QuestName_Validating);
     //
     // labelTitle
     //
     labelTitle.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     labelTitle.AutoSize = true;
     labelTitle.Location = new System.Drawing.Point(3, 63);
     labelTitle.Name     = "labelTitle";
     labelTitle.Size     = new System.Drawing.Size(27, 13);
     labelTitle.TabIndex = 2;
     labelTitle.Text     = "Title";
     //
     // Title
     //
     this.Title.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.Title.Location = new System.Drawing.Point(115, 59);
     this.Title.Name     = "Title";
     this.Title.Size     = new System.Drawing.Size(170, 20);
     this.Title.TabIndex = 3;
     //
     // labelAuthor
     //
     labelAuthor.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     labelAuthor.AutoSize = true;
     labelAuthor.Location = new System.Drawing.Point(3, 89);
     labelAuthor.Name     = "labelAuthor";
     labelAuthor.Size     = new System.Drawing.Size(38, 13);
     labelAuthor.TabIndex = 4;
     labelAuthor.Text     = "Author";
     //
     // Author
     //
     this.Author.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.Author.Location = new System.Drawing.Point(115, 86);
     this.Author.Name     = "Author";
     this.Author.Size     = new System.Drawing.Size(170, 20);
     this.Author.TabIndex = 5;
     //
     // labelDate
     //
     labelDate.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     labelDate.AutoSize = true;
     labelDate.Location = new System.Drawing.Point(3, 115);
     labelDate.Name     = "labelDate";
     labelDate.Size     = new System.Drawing.Size(30, 13);
     labelDate.TabIndex = 6;
     labelDate.Text     = "Date";
     //
     // scriptDate
     //
     this.scriptDate.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.scriptDate.Location = new System.Drawing.Point(115, 112);
     this.scriptDate.Name     = "scriptDate";
     this.scriptDate.Size     = new System.Drawing.Size(170, 20);
     this.scriptDate.TabIndex = 7;
     //
     // labelVersion
     //
     labelVersion.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     labelVersion.AutoSize = true;
     labelVersion.Location = new System.Drawing.Point(3, 141);
     labelVersion.Name     = "labelVersion";
     labelVersion.Size     = new System.Drawing.Size(72, 13);
     labelVersion.TabIndex = 8;
     labelVersion.Text     = "Script Version";
     //
     // Version
     //
     this.Version.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.Version.Location = new System.Drawing.Point(115, 138);
     this.Version.Name     = "Version";
     this.Version.Size     = new System.Drawing.Size(170, 20);
     this.Version.TabIndex = 9;
     //
     // labelNamespace
     //
     labelNamespace.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     labelNamespace.AutoSize = true;
     labelNamespace.Location = new System.Drawing.Point(2, 167);
     labelNamespace.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     labelNamespace.Name     = "labelNamespace";
     labelNamespace.Size     = new System.Drawing.Size(64, 13);
     labelNamespace.TabIndex = 10;
     labelNamespace.Text     = "Namespace";
     //
     // Namespace
     //
     this.Namespace.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.Namespace.Location    = new System.Drawing.Point(114, 163);
     this.Namespace.Margin      = new System.Windows.Forms.Padding(2);
     this.Namespace.Name        = "Namespace";
     this.Namespace.Size        = new System.Drawing.Size(172, 20);
     this.Namespace.TabIndex    = 11;
     this.Namespace.Validating += new System.ComponentModel.CancelEventHandler(this.Namespace_Validating);
     //
     // labelLevel
     //
     labelLevel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     labelLevel.AutoSize = true;
     labelLevel.Location = new System.Drawing.Point(321, 36);
     labelLevel.Name     = "labelLevel";
     labelLevel.Size     = new System.Drawing.Size(86, 13);
     labelLevel.TabIndex = 12;
     labelLevel.Text     = "Level (min - max)";
     //
     // LevelMin
     //
     this.LevelMin.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.LevelMin.Location = new System.Drawing.Point(433, 33);
     this.LevelMin.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.LevelMin.Name     = "LevelMin";
     this.LevelMin.Size     = new System.Drawing.Size(82, 20);
     this.LevelMin.TabIndex = 13;
     //
     // LevelMax
     //
     this.LevelMax.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.LevelMax.Location = new System.Drawing.Point(521, 33);
     this.LevelMax.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.LevelMax.Name     = "LevelMax";
     this.LevelMax.Size     = new System.Drawing.Size(82, 20);
     this.LevelMax.TabIndex = 14;
     //
     // labelInvitingNPC
     //
     labelInvitingNPC.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     labelInvitingNPC.AutoSize = true;
     labelInvitingNPC.Location = new System.Drawing.Point(321, 63);
     labelInvitingNPC.Name     = "labelInvitingNPC";
     labelInvitingNPC.Size     = new System.Drawing.Size(66, 13);
     labelInvitingNPC.TabIndex = 15;
     labelInvitingNPC.Text     = "Inviting NPC";
     //
     // InvitingNPC
     //
     tableLayoutPanel5.SetColumnSpan(this.InvitingNPC, 2);
     this.InvitingNPC.DisplayMember     = "Name";
     this.InvitingNPC.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.InvitingNPC.FormattingEnabled = true;
     this.InvitingNPC.Location          = new System.Drawing.Point(433, 59);
     this.InvitingNPC.Name              = "InvitingNPC";
     this.InvitingNPC.Size              = new System.Drawing.Size(170, 21);
     this.InvitingNPC.TabIndex          = 16;
     this.InvitingNPC.ValueMember       = "ObjectName";
     //
     // labelMaxQuestCount
     //
     labelMaxQuestCount.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     labelMaxQuestCount.AutoSize = true;
     labelMaxQuestCount.Location = new System.Drawing.Point(321, 89);
     labelMaxQuestCount.Name     = "labelMaxQuestCount";
     labelMaxQuestCount.Size     = new System.Drawing.Size(83, 13);
     labelMaxQuestCount.TabIndex = 17;
     labelMaxQuestCount.Text     = "MaxQuestCount";
     //
     // MaxQuestCount
     //
     tableLayoutPanel5.SetColumnSpan(this.MaxQuestCount, 2);
     this.MaxQuestCount.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.MaxQuestCount.Location = new System.Drawing.Point(433, 86);
     this.MaxQuestCount.Maximum  = new decimal(new int[] {
         2147483647,
         0,
         0,
         0
     });
     this.MaxQuestCount.Name     = "MaxQuestCount";
     this.MaxQuestCount.Size     = new System.Drawing.Size(170, 20);
     this.MaxQuestCount.TabIndex = 18;
     //
     // labelNotes
     //
     labelNotes.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     labelNotes.AutoSize = true;
     labelNotes.Location = new System.Drawing.Point(321, 122);
     labelNotes.Name     = "labelNotes";
     labelNotes.Size     = new System.Drawing.Size(103, 13);
     labelNotes.TabIndex = 19;
     labelNotes.Text     = "Notes: (TODO\'s etc)";
     //
     // Notes
     //
     tableLayoutPanel5.SetColumnSpan(this.Notes, 3);
     this.Notes.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.Notes.Location  = new System.Drawing.Point(321, 138);
     this.Notes.Multiline = true;
     this.Notes.Name      = "Notes";
     tableLayoutPanel5.SetRowSpan(this.Notes, 2);
     this.Notes.Size     = new System.Drawing.Size(282, 45);
     this.Notes.TabIndex = 20;
     //
     // labelClasses
     //
     this.labelClasses.AutoSize = true;
     this.labelClasses.Location = new System.Drawing.Point(3, 189);
     this.labelClasses.Margin   = new System.Windows.Forms.Padding(3, 3, 3, 0);
     this.labelClasses.Name     = "labelClasses";
     this.labelClasses.Size     = new System.Drawing.Size(83, 13);
     this.labelClasses.TabIndex = 25;
     this.labelClasses.Text     = "Allowed Classes";
     //
     // listBoxAllowed
     //
     this.listBoxAllowed.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listBoxAllowed.FormattingEnabled = true;
     this.listBoxAllowed.Location          = new System.Drawing.Point(115, 189);
     this.listBoxAllowed.Name          = "listBoxAllowed";
     this.listBoxAllowed.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.listBoxAllowed.Size          = new System.Drawing.Size(170, 69);
     this.listBoxAllowed.TabIndex      = 26;
     //
     // listBoxAvailable
     //
     tableLayoutPanel5.SetColumnSpan(this.listBoxAvailable, 3);
     this.listBoxAvailable.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listBoxAvailable.FormattingEnabled = true;
     this.listBoxAvailable.Location          = new System.Drawing.Point(321, 189);
     this.listBoxAvailable.Name          = "listBoxAvailable";
     this.listBoxAvailable.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.listBoxAvailable.Size          = new System.Drawing.Size(282, 69);
     this.listBoxAvailable.TabIndex      = 27;
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.flowLayoutPanel1.Controls.Add(this.buttonAddClass);
     this.flowLayoutPanel1.Controls.Add(this.buttonRemoveClass);
     this.flowLayoutPanel1.Location = new System.Drawing.Point(291, 189);
     this.flowLayoutPanel1.Name     = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size     = new System.Drawing.Size(24, 74);
     this.flowLayoutPanel1.TabIndex = 28;
     //
     // buttonAddClass
     //
     this.buttonAddClass.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     this.buttonAddClass.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonAddClass.Location  = new System.Drawing.Point(1, 1);
     this.buttonAddClass.Margin    = new System.Windows.Forms.Padding(1);
     this.buttonAddClass.Name      = "buttonAddClass";
     this.buttonAddClass.Size      = new System.Drawing.Size(23, 23);
     this.buttonAddClass.TabIndex  = 0;
     this.buttonAddClass.Text      = "<";
     this.buttonAddClass.UseVisualStyleBackColor = true;
     this.buttonAddClass.Click += new System.EventHandler(this.buttonAddClass_Click);
     //
     // buttonRemoveClass
     //
     this.buttonRemoveClass.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     this.buttonRemoveClass.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonRemoveClass.Location  = new System.Drawing.Point(1, 26);
     this.buttonRemoveClass.Margin    = new System.Windows.Forms.Padding(1);
     this.buttonRemoveClass.Name      = "buttonRemoveClass";
     this.buttonRemoveClass.Size      = new System.Drawing.Size(23, 23);
     this.buttonRemoveClass.TabIndex  = 1;
     this.buttonRemoveClass.Text      = ">";
     this.buttonRemoveClass.UseVisualStyleBackColor = true;
     this.buttonRemoveClass.Click += new System.EventHandler(this.buttonRemoveClass_Click);
     //
     // errorProvider
     //
     this.errorProvider.ContainerControl = this;
     //
     // QuestInfo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(tableLayoutPanel5);
     this.Name = "QuestInfo";
     this.Size = new System.Drawing.Size(606, 464);
     tableLayoutPanel5.ResumeLayout(false);
     tableLayoutPanel5.PerformLayout();
     headerStrip2.ResumeLayout(false);
     headerStrip2.PerformLayout();
     headerStrip1.ResumeLayout(false);
     headerStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.QuestStep)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LevelMin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LevelMax)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaxQuestCount)).EndInit();
     this.flowLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.Windows.Forms.Label label10;
     System.Windows.Forms.Label label11;
     System.Windows.Forms.Label label13;
     System.Windows.Forms.Panel panel2;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StrataPage));
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel1;
     System.Windows.Forms.Label            label2;
     System.Windows.Forms.Label            label5;
     System.Windows.Forms.Label            label6;
     System.Windows.Forms.Label            label7;
     System.Windows.Forms.Label            label8;
     System.Windows.Forms.Label            label1;
     System.Windows.Forms.Label            label3;
     System.Windows.Forms.Label            label4;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
     this.StrataListBox              = new System.Windows.Forms.ListBox();
     this.StrataBindingSource        = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigator           = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel1            = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator3        = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator2        = new System.Windows.Forms.ToolStripSeparator();
     this.tableLayoutPanel2          = new System.Windows.Forms.TableLayoutPanel();
     this._kzTB                                  = new System.Windows.Forms.TextBox();
     this.YearComboBox                           = new FMSC.Controls.YearComboBox();
     this.MonthComboBox                          = new System.Windows.Forms.ComboBox();
     this.MethodComboBox                         = new System.Windows.Forms.ComboBox();
     this.CruiseMethodBindingSource              = new System.Windows.Forms.BindingSource(this.components);
     this.BAFTextBox                             = new System.Windows.Forms.TextBox();
     this.CodeTextBox                            = new System.Windows.Forms.TextBox();
     this.textBox3                               = new System.Windows.Forms.TextBox();
     this.FixedPlotSizeTextBox                   = new System.Windows.Forms.TextBox();
     this.yieldCombo                             = new System.Windows.Forms.ComboBox();
     this.CuttingUnitGridView                    = new FMSC.Controls.SelectedItemsGridView();
     this.codeDataGridViewTextBoxColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.areaDataGridViewTextBoxColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.descriptionDataGridViewTextBoxColumn   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.loggingMethodDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.paymentUnitDataGridViewTextBoxColumn   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CuttingUnitBindingSource               = new System.Windows.Forms.BindingSource(this.components);
     this.SampleGroupButton                      = new System.Windows.Forms.Button();
     this.CuttingUnitButton                      = new System.Windows.Forms.Button();
     this._btn_cancel                            = new System.Windows.Forms.Button();
     this.errorProvider1                         = new System.Windows.Forms.ErrorProvider(this.components);
     label10           = new System.Windows.Forms.Label();
     label11           = new System.Windows.Forms.Label();
     label13           = new System.Windows.Forms.Label();
     panel2            = new System.Windows.Forms.Panel();
     tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     label2            = new System.Windows.Forms.Label();
     label5            = new System.Windows.Forms.Label();
     label6            = new System.Windows.Forms.Label();
     label7            = new System.Windows.Forms.Label();
     label8            = new System.Windows.Forms.Label();
     label1            = new System.Windows.Forms.Label();
     label3            = new System.Windows.Forms.Label();
     label4            = new System.Windows.Forms.Label();
     tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.StrataBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator)).BeginInit();
     this.bindingNavigator.SuspendLayout();
     tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CruiseMethodBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CuttingUnitGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CuttingUnitBindingSource)).BeginInit();
     tableLayoutPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // label10
     //
     label10.AutoSize  = true;
     label10.Dock      = System.Windows.Forms.DockStyle.Fill;
     label10.Location  = new System.Drawing.Point(137, 56);
     label10.Name      = "label10";
     label10.Size      = new System.Drawing.Size(80, 28);
     label10.TabIndex  = 0;
     label10.Text      = "Year";
     label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label11
     //
     label11.AutoSize  = true;
     label11.Dock      = System.Windows.Forms.DockStyle.Fill;
     label11.Location  = new System.Drawing.Point(137, 0);
     label11.Name      = "label11";
     label11.Size      = new System.Drawing.Size(80, 28);
     label11.TabIndex  = 1;
     label11.Text      = "Method";
     label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label13
     //
     label13.AutoSize  = true;
     label13.Dock      = System.Windows.Forms.DockStyle.Fill;
     label13.Location  = new System.Drawing.Point(3, 56);
     label13.Name      = "label13";
     label13.Size      = new System.Drawing.Size(77, 28);
     label13.TabIndex  = 0;
     label13.Text      = "Month";
     label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panel2
     //
     panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     panel2.Controls.Add(this.StrataListBox);
     panel2.Controls.Add(this.bindingNavigator);
     panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     panel2.Location = new System.Drawing.Point(0, 0);
     panel2.Margin   = new System.Windows.Forms.Padding(0);
     panel2.Name     = "panel2";
     tableLayoutPanel1.SetRowSpan(panel2, 4);
     panel2.Size     = new System.Drawing.Size(160, 422);
     panel2.TabIndex = 1;
     //
     // StrataListBox
     //
     this.StrataListBox.DataSource          = this.StrataBindingSource;
     this.StrataListBox.Dock                = System.Windows.Forms.DockStyle.Fill;
     this.StrataListBox.FormatString        = "● [Code] - [Method]";
     this.StrataListBox.FormattingEnabled   = true;
     this.StrataListBox.IntegralHeight      = false;
     this.StrataListBox.Location            = new System.Drawing.Point(0, 46);
     this.StrataListBox.Margin              = new System.Windows.Forms.Padding(0);
     this.StrataListBox.Name                = "StrataListBox";
     this.StrataListBox.ScrollAlwaysVisible = true;
     this.StrataListBox.Size                = new System.Drawing.Size(156, 372);
     this.StrataListBox.TabIndex            = 0;
     //
     // StrataBindingSource
     //
     this.StrataBindingSource.DataSource      = typeof(CruiseDAL.DataObjects.StratumDO);
     this.StrataBindingSource.AddingNew      += new System.ComponentModel.AddingNewEventHandler(this.StrataBindingSource_AddingNew);
     this.StrataBindingSource.CurrentChanged += new System.EventHandler(this.StrataBindingSource_CurrentChanged);
     //
     // bindingNavigator
     //
     this.bindingNavigator.AddNewItem    = this.bindingNavigatorAddNewItem;
     this.bindingNavigator.BindingSource = this.StrataBindingSource;
     this.bindingNavigator.CountItem     = null;
     this.bindingNavigator.DeleteItem    = this.bindingNavigatorDeleteItem;
     this.bindingNavigator.GripStyle     = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.bindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripLabel1,
         this.bindingNavigatorAddNewItem,
         this.toolStripSeparator3,
         this.bindingNavigatorDeleteItem,
         this.toolStripSeparator2
     });
     this.bindingNavigator.LayoutStyle      = System.Windows.Forms.ToolStripLayoutStyle.Flow;
     this.bindingNavigator.Location         = new System.Drawing.Point(0, 0);
     this.bindingNavigator.MoveFirstItem    = null;
     this.bindingNavigator.MoveLastItem     = null;
     this.bindingNavigator.MoveNextItem     = null;
     this.bindingNavigator.MovePreviousItem = null;
     this.bindingNavigator.Name             = "bindingNavigator";
     this.bindingNavigator.PositionItem     = null;
     this.bindingNavigator.RenderMode       = System.Windows.Forms.ToolStripRenderMode.System;
     this.bindingNavigator.Size             = new System.Drawing.Size(156, 46);
     this.bindingNavigator.TabIndex         = 1;
     this.bindingNavigator.Text             = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.bindingNavigatorAddNewItem.Image     = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name      = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(74, 20);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name  = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(60, 20);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(40, 15);
     this.toolStripLabel1.Text = "Strata:";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 23);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 23);
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.ColumnCount = 2;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 160F));
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 1, 1);
     tableLayoutPanel1.Controls.Add(panel2, 0, 0);
     tableLayoutPanel1.Controls.Add(label3, 1, 2);
     tableLayoutPanel1.Controls.Add(label4, 1, 0);
     tableLayoutPanel1.Controls.Add(this.CuttingUnitGridView, 1, 3);
     tableLayoutPanel1.Controls.Add(tableLayoutPanel3, 0, 4);
     tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 5;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
     tableLayoutPanel1.Size     = new System.Drawing.Size(630, 472);
     tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.AutoScroll  = true;
     this.tableLayoutPanel2.AutoSize    = true;
     this.tableLayoutPanel2.ColumnCount = 6;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel2.Controls.Add(this._kzTB, 5, 1);
     this.tableLayoutPanel2.Controls.Add(this.YearComboBox, 3, 2);
     this.tableLayoutPanel2.Controls.Add(this.MonthComboBox, 1, 2);
     this.tableLayoutPanel2.Controls.Add(this.MethodComboBox, 3, 0);
     this.tableLayoutPanel2.Controls.Add(label13, 0, 2);
     this.tableLayoutPanel2.Controls.Add(this.BAFTextBox, 1, 1);
     this.tableLayoutPanel2.Controls.Add(this.CodeTextBox, 1, 0);
     this.tableLayoutPanel2.Controls.Add(label2, 0, 0);
     this.tableLayoutPanel2.Controls.Add(label5, 0, 1);
     this.tableLayoutPanel2.Controls.Add(this.textBox3, 1, 3);
     this.tableLayoutPanel2.Controls.Add(label6, 0, 3);
     this.tableLayoutPanel2.Controls.Add(label11, 2, 0);
     this.tableLayoutPanel2.Controls.Add(this.FixedPlotSizeTextBox, 3, 1);
     this.tableLayoutPanel2.Controls.Add(label7, 2, 1);
     this.tableLayoutPanel2.Controls.Add(label10, 2, 2);
     this.tableLayoutPanel2.Controls.Add(label8, 4, 2);
     this.tableLayoutPanel2.Controls.Add(label1, 4, 1);
     this.tableLayoutPanel2.Controls.Add(this.yieldCombo, 5, 2);
     this.tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(163, 24);
     this.tableLayoutPanel2.Name     = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 5;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel2.Size     = new System.Drawing.Size(464, 122);
     this.tableLayoutPanel2.TabIndex = 0;
     //
     // _kzTB
     //
     this._kzTB.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.StrataBindingSource, "KZ3PPNT", true));
     this._kzTB.Enabled  = false;
     this._kzTB.Location = new System.Drawing.Point(403, 31);
     this._kzTB.Name     = "_kzTB";
     this._kzTB.Size     = new System.Drawing.Size(42, 22);
     this._kzTB.TabIndex = 7;
     //
     // YearComboBox
     //
     this.YearComboBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.StrataBindingSource, "Year", true));
     this.YearComboBox.EndYear           = 2099;
     this.YearComboBox.FormattingEnabled = true;
     this.YearComboBox.Location          = new System.Drawing.Point(223, 59);
     this.YearComboBox.Name      = "YearComboBox";
     this.YearComboBox.Size      = new System.Drawing.Size(50, 21);
     this.YearComboBox.StartYear = 1950;
     this.YearComboBox.TabIndex  = 6;
     this.YearComboBox.Text      = "2014";
     //
     // MonthComboBox
     //
     this.MonthComboBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.StrataBindingSource, "Month", true));
     this.MonthComboBox.FormattingEnabled = true;
     this.MonthComboBox.Location          = new System.Drawing.Point(86, 59);
     this.MonthComboBox.Name     = "MonthComboBox";
     this.MonthComboBox.Size     = new System.Drawing.Size(45, 21);
     this.MonthComboBox.TabIndex = 2;
     //
     // MethodComboBox
     //
     this.MethodComboBox.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.Append;
     this.MethodComboBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.MethodComboBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.StrataBindingSource, "Method", true));
     this.MethodComboBox.DataSource        = this.CruiseMethodBindingSource;
     this.MethodComboBox.FormattingEnabled = true;
     this.MethodComboBox.Location          = new System.Drawing.Point(223, 3);
     this.MethodComboBox.Name                  = "MethodComboBox";
     this.MethodComboBox.Size                  = new System.Drawing.Size(73, 21);
     this.MethodComboBox.TabIndex              = 4;
     this.MethodComboBox.SelectedValueChanged += new System.EventHandler(this.MethodComboBox_SelectedValueChanged);
     //
     // CruiseMethodBindingSource
     //
     this.CruiseMethodBindingSource.DataSource = typeof(string);
     //
     // BAFTextBox
     //
     this.BAFTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.StrataBindingSource, "BasalAreaFactor", true));
     this.BAFTextBox.Enabled   = false;
     this.BAFTextBox.Location  = new System.Drawing.Point(86, 31);
     this.BAFTextBox.MaxLength = 6;
     this.BAFTextBox.Name      = "BAFTextBox";
     this.BAFTextBox.Size      = new System.Drawing.Size(45, 22);
     this.BAFTextBox.TabIndex  = 1;
     //
     // CodeTextBox
     //
     this.CodeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.StrataBindingSource, "Code", true));
     this.CodeTextBox.Location  = new System.Drawing.Point(86, 3);
     this.CodeTextBox.MaxLength = 2;
     this.CodeTextBox.Name      = "CodeTextBox";
     this.CodeTextBox.Size      = new System.Drawing.Size(35, 22);
     this.CodeTextBox.TabIndex  = 0;
     //
     // label2
     //
     label2.AutoSize  = true;
     label2.Dock      = System.Windows.Forms.DockStyle.Fill;
     label2.Location  = new System.Drawing.Point(3, 0);
     label2.Name      = "label2";
     label2.Size      = new System.Drawing.Size(77, 28);
     label2.TabIndex  = 12;
     label2.Text      = "Stratum Code";
     label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     label5.AutoSize  = true;
     label5.Dock      = System.Windows.Forms.DockStyle.Fill;
     label5.Location  = new System.Drawing.Point(3, 28);
     label5.Name      = "label5";
     label5.Size      = new System.Drawing.Size(77, 28);
     label5.TabIndex  = 13;
     label5.Text      = "BAF";
     label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBox3
     //
     this.tableLayoutPanel2.SetColumnSpan(this.textBox3, 5);
     this.textBox3.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.StrataBindingSource, "Description", true));
     this.textBox3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.textBox3.Location = new System.Drawing.Point(86, 87);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(438, 22);
     this.textBox3.TabIndex = 3;
     //
     // label6
     //
     label6.AutoSize  = true;
     label6.Dock      = System.Windows.Forms.DockStyle.Fill;
     label6.Location  = new System.Drawing.Point(3, 84);
     label6.Name      = "label6";
     label6.Size      = new System.Drawing.Size(77, 28);
     label6.TabIndex  = 15;
     label6.Text      = "Description";
     label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // FixedPlotSizeTextBox
     //
     this.FixedPlotSizeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.StrataBindingSource, "FixedPlotSize", true));
     this.FixedPlotSizeTextBox.Enabled   = false;
     this.FixedPlotSizeTextBox.Location  = new System.Drawing.Point(223, 31);
     this.FixedPlotSizeTextBox.MaxLength = 5;
     this.FixedPlotSizeTextBox.Name      = "FixedPlotSizeTextBox";
     this.FixedPlotSizeTextBox.Size      = new System.Drawing.Size(35, 22);
     this.FixedPlotSizeTextBox.TabIndex  = 5;
     //
     // label7
     //
     label7.AutoSize  = true;
     label7.Dock      = System.Windows.Forms.DockStyle.Fill;
     label7.Location  = new System.Drawing.Point(137, 28);
     label7.Name      = "label7";
     label7.Size      = new System.Drawing.Size(80, 28);
     label7.TabIndex  = 17;
     label7.Text      = "Fixed Plot Size";
     label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label8
     //
     label8.AutoSize  = true;
     label8.Dock      = System.Windows.Forms.DockStyle.Fill;
     label8.Location  = new System.Drawing.Point(302, 56);
     label8.Name      = "label8";
     label8.Size      = new System.Drawing.Size(95, 28);
     label8.TabIndex  = 19;
     label8.Text      = "Yield Component";
     label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     label1.AutoSize  = true;
     label1.Dock      = System.Windows.Forms.DockStyle.Fill;
     label1.Location  = new System.Drawing.Point(302, 28);
     label1.Name      = "label1";
     label1.Size      = new System.Drawing.Size(95, 28);
     label1.TabIndex  = 0;
     label1.Text      = "3PPNT KZ";
     label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // yieldCombo
     //
     this.yieldCombo.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.StrataBindingSource, "YieldComponent", true));
     this.yieldCombo.FormattingEnabled = true;
     this.yieldCombo.Items.AddRange(new object[] {
         "CL",
         "CD",
         "NL",
         "ND"
     });
     this.yieldCombo.Location = new System.Drawing.Point(403, 59);
     this.yieldCombo.Name     = "yieldCombo";
     this.yieldCombo.Size     = new System.Drawing.Size(42, 21);
     this.yieldCombo.TabIndex = 20;
     //
     // label3
     //
     label3.AutoSize  = true;
     label3.BackColor = System.Drawing.Color.DarkSeaGreen;
     label3.Dock      = System.Windows.Forms.DockStyle.Fill;
     label3.Location  = new System.Drawing.Point(160, 149);
     label3.Margin    = new System.Windows.Forms.Padding(0);
     label3.Name      = "label3";
     label3.Padding   = new System.Windows.Forms.Padding(5, 3, 0, 0);
     label3.Size      = new System.Drawing.Size(470, 16);
     label3.TabIndex  = 1;
     label3.Text      = "Cutting Units";
     //
     // label4
     //
     label4.AutoSize  = true;
     label4.BackColor = System.Drawing.Color.DarkSeaGreen;
     label4.Dock      = System.Windows.Forms.DockStyle.Fill;
     label4.Location  = new System.Drawing.Point(160, 0);
     label4.Margin    = new System.Windows.Forms.Padding(0, 0, 0, 5);
     label4.Name      = "label4";
     label4.Padding   = new System.Windows.Forms.Padding(5, 3, 0, 0);
     label4.Size      = new System.Drawing.Size(470, 16);
     label4.TabIndex  = 3;
     label4.Text      = "Stratum";
     //
     // CuttingUnitGridView
     //
     this.CuttingUnitGridView.AllowUserToAddRows          = false;
     this.CuttingUnitGridView.AllowUserToDeleteRows       = false;
     this.CuttingUnitGridView.AutoGenerateColumns         = false;
     this.CuttingUnitGridView.BorderStyle                 = System.Windows.Forms.BorderStyle.None;
     this.CuttingUnitGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.CuttingUnitGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.codeDataGridViewTextBoxColumn,
         this.areaDataGridViewTextBoxColumn,
         this.descriptionDataGridViewTextBoxColumn,
         this.loggingMethodDataGridViewTextBoxColumn,
         this.paymentUnitDataGridViewTextBoxColumn
     });
     this.CuttingUnitGridView.DataSource         = this.CuttingUnitBindingSource;
     this.CuttingUnitGridView.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.CuttingUnitGridView.Location           = new System.Drawing.Point(160, 165);
     this.CuttingUnitGridView.Margin             = new System.Windows.Forms.Padding(0);
     this.CuttingUnitGridView.Name               = "CuttingUnitGridView";
     this.CuttingUnitGridView.ReadOnly           = true;
     this.CuttingUnitGridView.RowHeadersVisible  = false;
     this.CuttingUnitGridView.RowTemplate.Height = 24;
     this.CuttingUnitGridView.SelectedItems      = null;
     this.CuttingUnitGridView.SelectionMode      = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.CuttingUnitGridView.Size               = new System.Drawing.Size(470, 257);
     this.CuttingUnitGridView.TabIndex           = 2;
     this.CuttingUnitGridView.VirtualMode        = true;
     //
     // codeDataGridViewTextBoxColumn
     //
     this.codeDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.codeDataGridViewTextBoxColumn.DataPropertyName = "Code";
     this.codeDataGridViewTextBoxColumn.HeaderText       = "Code";
     this.codeDataGridViewTextBoxColumn.Name             = "codeDataGridViewTextBoxColumn";
     this.codeDataGridViewTextBoxColumn.ReadOnly         = true;
     this.codeDataGridViewTextBoxColumn.ToolTipText      = "Cutting Unit Code";
     this.codeDataGridViewTextBoxColumn.Width            = 59;
     //
     // areaDataGridViewTextBoxColumn
     //
     this.areaDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.areaDataGridViewTextBoxColumn.DataPropertyName = "Area";
     this.areaDataGridViewTextBoxColumn.HeaderText       = "Area";
     this.areaDataGridViewTextBoxColumn.Name             = "areaDataGridViewTextBoxColumn";
     this.areaDataGridViewTextBoxColumn.ReadOnly         = true;
     this.areaDataGridViewTextBoxColumn.ToolTipText      = "Area in Acres";
     this.areaDataGridViewTextBoxColumn.Width            = 55;
     //
     // descriptionDataGridViewTextBoxColumn
     //
     this.descriptionDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.descriptionDataGridViewTextBoxColumn.DataPropertyName = "Description";
     this.descriptionDataGridViewTextBoxColumn.HeaderText       = "Description";
     this.descriptionDataGridViewTextBoxColumn.Name             = "descriptionDataGridViewTextBoxColumn";
     this.descriptionDataGridViewTextBoxColumn.ReadOnly         = true;
     this.descriptionDataGridViewTextBoxColumn.ToolTipText      = "Cutting Unit Description";
     this.descriptionDataGridViewTextBoxColumn.Width            = 91;
     //
     // loggingMethodDataGridViewTextBoxColumn
     //
     this.loggingMethodDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.loggingMethodDataGridViewTextBoxColumn.DataPropertyName = "LoggingMethod";
     this.loggingMethodDataGridViewTextBoxColumn.HeaderText       = "LogMeth";
     this.loggingMethodDataGridViewTextBoxColumn.Name             = "loggingMethodDataGridViewTextBoxColumn";
     this.loggingMethodDataGridViewTextBoxColumn.ReadOnly         = true;
     this.loggingMethodDataGridViewTextBoxColumn.ToolTipText      = "Logging Method Code";
     this.loggingMethodDataGridViewTextBoxColumn.Width            = 78;
     //
     // paymentUnitDataGridViewTextBoxColumn
     //
     this.paymentUnitDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.paymentUnitDataGridViewTextBoxColumn.DataPropertyName = "PaymentUnit";
     this.paymentUnitDataGridViewTextBoxColumn.HeaderText       = "PaymentUnit";
     this.paymentUnitDataGridViewTextBoxColumn.Name             = "paymentUnitDataGridViewTextBoxColumn";
     this.paymentUnitDataGridViewTextBoxColumn.ReadOnly         = true;
     this.paymentUnitDataGridViewTextBoxColumn.ToolTipText      = "Payment Unit Code";
     this.paymentUnitDataGridViewTextBoxColumn.Width            = 97;
     //
     // CuttingUnitBindingSource
     //
     this.CuttingUnitBindingSource.DataSource = typeof(CruiseDAL.DataObjects.CuttingUnitDO);
     //
     // tableLayoutPanel3
     //
     tableLayoutPanel3.BackColor   = System.Drawing.Color.DarkSeaGreen;
     tableLayoutPanel3.ColumnCount = 7;
     tableLayoutPanel1.SetColumnSpan(tableLayoutPanel3, 2);
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F));
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F));
     tableLayoutPanel3.Controls.Add(this.SampleGroupButton, 5, 1);
     tableLayoutPanel3.Controls.Add(this.CuttingUnitButton, 1, 1);
     tableLayoutPanel3.Controls.Add(this._btn_cancel, 3, 1);
     tableLayoutPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel3.Location = new System.Drawing.Point(0, 422);
     tableLayoutPanel3.Margin   = new System.Windows.Forms.Padding(0);
     tableLayoutPanel3.Name     = "tableLayoutPanel3";
     tableLayoutPanel3.RowCount = 3;
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel3.Size     = new System.Drawing.Size(630, 50);
     tableLayoutPanel3.TabIndex = 4;
     //
     // SampleGroupButton
     //
     this.SampleGroupButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.SampleGroupButton.AutoSize  = true;
     this.SampleGroupButton.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.SampleGroupButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.SampleGroupButton.Location  = new System.Drawing.Point(489, 12);
     this.SampleGroupButton.Margin    = new System.Windows.Forms.Padding(0);
     this.SampleGroupButton.Name      = "SampleGroupButton";
     this.SampleGroupButton.Size      = new System.Drawing.Size(111, 25);
     this.SampleGroupButton.TabIndex  = 0;
     this.SampleGroupButton.Text      = "Sample Group >>";
     this.SampleGroupButton.UseVisualStyleBackColor = false;
     this.SampleGroupButton.Click += new System.EventHandler(this.SampleGroupButton_Click);
     //
     // CuttingUnitButton
     //
     this.CuttingUnitButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.CuttingUnitButton.AutoSize  = true;
     this.CuttingUnitButton.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.CuttingUnitButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.CuttingUnitButton.Location  = new System.Drawing.Point(30, 12);
     this.CuttingUnitButton.Margin    = new System.Windows.Forms.Padding(0);
     this.CuttingUnitButton.Name      = "CuttingUnitButton";
     this.CuttingUnitButton.Size      = new System.Drawing.Size(107, 25);
     this.CuttingUnitButton.TabIndex  = 1;
     this.CuttingUnitButton.Text      = "<< Cutting Units";
     this.CuttingUnitButton.UseVisualStyleBackColor = false;
     this.CuttingUnitButton.Click += new System.EventHandler(this.CuttingUnitButton_Click);
     //
     // _btn_cancel
     //
     this._btn_cancel.BackColor = System.Drawing.SystemColors.ButtonFace;
     this._btn_cancel.Dock      = System.Windows.Forms.DockStyle.Fill;
     this._btn_cancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this._btn_cancel.Location  = new System.Drawing.Point(147, 12);
     this._btn_cancel.Margin    = new System.Windows.Forms.Padding(0);
     this._btn_cancel.Name      = "_btn_cancel";
     this._btn_cancel.Size      = new System.Drawing.Size(53, 25);
     this._btn_cancel.TabIndex  = 2;
     this._btn_cancel.Text      = "Cancel";
     this._btn_cancel.UseVisualStyleBackColor = false;
     this._btn_cancel.Click += new System.EventHandler(this._btn_cancel_Click);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.DataSource       = this.StrataBindingSource;
     //
     // StrataPage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(tableLayoutPanel1);
     this.Font        = global::CruiseManager.Properties.Settings.Default.AppFont;
     this.MinimumSize = new System.Drawing.Size(630, 0);
     this.Name        = "StrataPage";
     this.Size        = new System.Drawing.Size(630, 472);
     panel2.ResumeLayout(false);
     panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.StrataBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator)).EndInit();
     this.bindingNavigator.ResumeLayout(false);
     this.bindingNavigator.PerformLayout();
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CruiseMethodBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CuttingUnitGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CuttingUnitBindingSource)).EndInit();
     tableLayoutPanel3.ResumeLayout(false);
     tableLayoutPanel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }