本文整理汇总了C#中System.Windows.Forms.TabPage.PerformLayout方法的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.TabPage.PerformLayout方法的具体用法?C# System.Windows.Forms.TabPage.PerformLayout怎么用?C# System.Windows.Forms.TabPage.PerformLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.TabPage
的用法示例。
在下文中一共展示了System.Windows.Forms.TabPage.PerformLayout方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeComponent
//.........这里部分代码省略.........
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// checkedListBox1
//
this.checkedListBox1.CheckOnClick = true;
this.checkedListBox1.FormattingEnabled = true;
this.checkedListBox1.Location = new System.Drawing.Point(35, 182);
this.checkedListBox1.Name = "checkedListBox1";
this.checkedListBox1.Size = new System.Drawing.Size(328, 154);
this.checkedListBox1.TabIndex = 17;
//
// textBox5
//
this.textBox5.Location = new System.Drawing.Point(220, 147);
this.textBox5.Name = "textBox5";
this.textBox5.Size = new System.Drawing.Size(143, 20);
this.textBox5.TabIndex = 16;
//
// textBox6
//
this.textBox6.Location = new System.Drawing.Point(220, 72);
this.textBox6.Name = "textBox6";
this.textBox6.Size = new System.Drawing.Size(143, 20);
this.textBox6.TabIndex = 15;
//
// textBox8
//
this.textBox8.Location = new System.Drawing.Point(220, 6);
this.textBox8.Name = "textBox8";
this.textBox8.Size = new System.Drawing.Size(143, 20);
this.textBox8.TabIndex = 13;
//
// label7
//
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label7.ForeColor = System.Drawing.Color.Red;
this.label7.Location = new System.Drawing.Point(35, 147);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(45, 16);
this.label7.TabIndex = 12;
this.label7.Text = "Цена";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label8.ForeColor = System.Drawing.Color.Blue;
this.label8.Location = new System.Drawing.Point(32, 73);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(39, 16);
this.label8.TabIndex = 11;
this.label8.Text = "CPU";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label9.ForeColor = System.Drawing.Color.Blue;
this.label9.Location = new System.Drawing.Point(32, 40);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(29, 16);
this.label9.TabIndex = 10;
this.label9.Text = "OS";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label10.ForeColor = System.Drawing.Color.Blue;
this.label10.Location = new System.Drawing.Point(32, 10);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(64, 16);
this.label10.TabIndex = 9;
this.label10.Text = "Модель";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(735, 656);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.button4);
this.Controls.Add(this.button3);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.label1);
this.Controls.Add(this.listBox1);
this.Name = "Form1";
this.Text = "Mobile Store";
tabPage1.ResumeLayout(false);
tabPage1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.tabControl1.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.tabPage2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例2: InitializeComponent
//.........这里部分代码省略.........
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(339, 23);
this.button4.TabIndex = 0;
this.button4.Text = "Start Listening";
this.button4.UseVisualStyleBackColor = true;
this.button4.Click += new System.EventHandler(this.button4_Click);
//
// openFileDialog1
//
this.openFileDialog1.Filter = "Text File (.txt)|*.txt|Log File (.log)|*.log|Other|*.*";
//
// manualSendThread
//
this.manualSendThread.WorkerReportsProgress = true;
this.manualSendThread.WorkerSupportsCancellation = true;
this.manualSendThread.DoWork += new System.ComponentModel.DoWorkEventHandler(this.manualSendThread_DoWork);
this.manualSendThread.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.manualSendThread_RunWorkerCompleted);
this.manualSendThread.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.manualSendThread_ProgressChanged);
//
// fileDumpThread
//
this.fileDumpThread.WorkerReportsProgress = true;
this.fileDumpThread.WorkerSupportsCancellation = true;
this.fileDumpThread.DoWork += new System.ComponentModel.DoWorkEventHandler(this.fileDumpThread_DoWork);
this.fileDumpThread.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.fileDumpThread_RunWorkerCompleted);
this.fileDumpThread.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.fileDumpThread_ProgressChanged);
//
// receiveThread
//
this.receiveThread.WorkerSupportsCancellation = true;
this.receiveThread.DoWork += new System.ComponentModel.DoWorkEventHandler(this.receiveThread_DoWork);
//
// autoUpdateThread
//
this.autoUpdateThread.DoWork += new System.ComponentModel.DoWorkEventHandler(this.autoUpdateThread_DoWork);
//
// checkBox5
//
this.checkBox5.AutoSize = true;
this.checkBox5.Location = new System.Drawing.Point(113, 48);
this.checkBox5.Name = "checkBox5";
this.checkBox5.Size = new System.Drawing.Size(47, 17);
this.checkBox5.TabIndex = 8;
this.checkBox5.Text = "EOL";
this.checkBox5.UseVisualStyleBackColor = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(353, 406);
this.Controls.Add(this.splitContainer1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Data2Serial2";
this.TopMost = true;
this.Load += new System.EventHandler(this.Form1_Load);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
sendTab.ResumeLayout(false);
this.splitContainer2.Panel1.ResumeLayout(false);
this.splitContainer2.Panel2.ResumeLayout(false);
this.splitContainer2.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox8.ResumeLayout(false);
this.groupBox8.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
settingsTab.ResumeLayout(false);
settingsTab.PerformLayout();
this.groupBox11.ResumeLayout(false);
this.groupBox11.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
comPortTab.ResumeLayout(false);
this.splitContainer3.Panel1.ResumeLayout(false);
this.splitContainer3.Panel2.ResumeLayout(false);
this.splitContainer3.ResumeLayout(false);
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox7.ResumeLayout(false);
this.groupBox6.ResumeLayout(false);
this.groupBox5.ResumeLayout(false);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.ResumeLayout(false);
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.groupBox9.ResumeLayout(false);
this.groupBox9.PerformLayout();
this.groupBox12.ResumeLayout(false);
this.groupBox12.PerformLayout();
this.groupBox10.ResumeLayout(false);
this.groupBox10.PerformLayout();
this.ResumeLayout(false);
}
示例3: InitializeComponent
//.........这里部分代码省略.........
this.groupBox1.TabStop = false;
//
// freqBySecRadio
//
resources.ApplyResources(this.freqBySecRadio, "freqBySecRadio");
this.freqBySecRadio.Name = "freqBySecRadio";
this.freqBySecRadio.UseVisualStyleBackColor = true;
//
// freqBySecTextBox
//
resources.ApplyResources(this.freqBySecTextBox, "freqBySecTextBox");
this.freqBySecTextBox.Name = "freqBySecTextBox";
this.freqBySecTextBox.TextChanged += new System.EventHandler(this.freqBySecTextBox_TextChanged);
this.freqBySecTextBox.Validated += new System.EventHandler(this.freqBySecTextBox_Validated);
this.freqBySecTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.freqBySecTextBox_Validating);
//
// freqByStepRadio
//
resources.ApplyResources(this.freqByStepRadio, "freqByStepRadio");
this.freqByStepRadio.Checked = true;
this.freqByStepRadio.Name = "freqByStepRadio";
this.freqByStepRadio.TabStop = true;
this.freqByStepRadio.UseVisualStyleBackColor = true;
this.freqByStepRadio.CheckedChanged += new System.EventHandler(this.freqByStepRadio_CheckedChanged);
//
// freqByStepTextBox
//
resources.ApplyResources(this.freqByStepTextBox, "freqByStepTextBox");
this.freqByStepTextBox.Name = "freqByStepTextBox";
this.freqByStepTextBox.TextChanged += new System.EventHandler(this.freqByStepTextBox_TextChanged);
this.freqByStepTextBox.Validated += new System.EventHandler(this.freqByStepTextBox_Validated);
this.freqByStepTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.freqByStepTextBox_Validating);
//
// tabControl1
//
resources.ApplyResources(this.tabControl1, "tabControl1");
this.tabControl1.Controls.Add(perModelSimulationParametersPage);
this.tabControl1.Controls.Add(this.loggingPage);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
//
// SSImportButton
//
resources.ApplyResources(this.SSImportButton, "SSImportButton");
this.SSImportButton.Name = "SSImportButton";
this.SSImportButton.UseVisualStyleBackColor = true;
this.SSImportButton.Click += new System.EventHandler(this.ImportSimulationParameterClicked);
//
// SSExportButton
//
resources.ApplyResources(this.SSExportButton, "SSExportButton");
this.SSExportButton.Name = "SSExportButton";
this.SSExportButton.UseVisualStyleBackColor = true;
this.SSExportButton.Click += new System.EventHandler(this.ExportSimulationParameterClicked);
//
// SSOpenFileDialog
//
this.SSOpenFileDialog.FileName = "openFileDialog1";
//
// SimulationConfigurationDialog
//
this.AcceptButton = this.SSApplyButton;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.SSCloseButton;
this.Controls.Add(this.SSExportButton);
this.Controls.Add(this.SSImportButton);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.SSApplyButton);
this.Controls.Add(this.SSCloseButton);
this.Controls.Add(this.configurationLabel);
this.Controls.Add(this.SSDeleteButton);
this.Controls.Add(this.SSCreateButton);
this.Controls.Add(this.paramCombo);
this.Name = "SimulationConfigurationDialog";
this.Load += new System.EventHandler(this.SimulationConfigurationDialog_Load);
this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.SetupKeyPress);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SimulationConfigurationDialog_FormClosing);
perModelSimulationParametersPage.ResumeLayout(false);
perModelSimulationParametersPage.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.initialParameters)).EndInit();
this.initialContextMenuStrip.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.initialConditionsBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.perModelSimulationParameterBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.m_simParamSets)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.propertiesBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.propertiesBindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.steppersBindingSource)).EndInit();
this.loggingPage.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.tabControl1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
示例4: InitializeComponent
//.........这里部分代码省略.........
flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
flowLayoutPanel1.Location = new System.Drawing.Point(3, 433);
flowLayoutPanel1.Name = "flowLayoutPanel1";
flowLayoutPanel1.Size = new System.Drawing.Size(519, 29);
flowLayoutPanel1.TabIndex = 0;
//
// btnLoadModel
//
this.btnLoadModel.AutoSize = true;
this.btnLoadModel.Location = new System.Drawing.Point(3, 3);
this.btnLoadModel.Name = "btnLoadModel";
this.btnLoadModel.Size = new System.Drawing.Size(75, 23);
this.btnLoadModel.TabIndex = 0;
this.btnLoadModel.Text = "Load Model";
this.btnLoadModel.UseVisualStyleBackColor = true;
this.btnLoadModel.Click += new System.EventHandler(this.btnLoadModel_Click);
//
// btnCreateActor
//
this.btnCreateActor.AutoSize = true;
this.btnCreateActor.Location = new System.Drawing.Point(84, 3);
this.btnCreateActor.Name = "btnCreateActor";
this.btnCreateActor.Size = new System.Drawing.Size(76, 23);
this.btnCreateActor.TabIndex = 1;
this.btnCreateActor.Text = "Create Actor";
this.btnCreateActor.UseVisualStyleBackColor = true;
this.btnCreateActor.Click += new System.EventHandler(this.btnCreateActor_Click);
//
// tabPage2
//
tabPage2.Controls.Add(this.listActors);
tabPage2.Controls.Add(flowLayoutPanel2);
tabPage2.Location = new System.Drawing.Point(4, 22);
tabPage2.Name = "tabPage2";
tabPage2.Padding = new System.Windows.Forms.Padding(3);
tabPage2.Size = new System.Drawing.Size(525, 465);
tabPage2.TabIndex = 1;
tabPage2.Text = "Actors";
tabPage2.UseVisualStyleBackColor = true;
//
// listActors
//
this.listActors.Dock = System.Windows.Forms.DockStyle.Fill;
this.listActors.FormattingEnabled = true;
this.listActors.Location = new System.Drawing.Point(3, 3);
this.listActors.Name = "listActors";
this.listActors.Size = new System.Drawing.Size(519, 430);
this.listActors.Sorted = true;
this.listActors.TabIndex = 1;
this.listActors.SelectedIndexChanged += new System.EventHandler(this.listActors_SelectedIndexChanged);
//
// flowLayoutPanel2
//
flowLayoutPanel2.AutoSize = true;
flowLayoutPanel2.Controls.Add(this.btnDeleteActor);
flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
flowLayoutPanel2.Location = new System.Drawing.Point(3, 433);
flowLayoutPanel2.Name = "flowLayoutPanel2";
flowLayoutPanel2.Size = new System.Drawing.Size(519, 29);
flowLayoutPanel2.TabIndex = 0;
//
// btnDeleteActor
//
this.btnDeleteActor.AutoSize = true;
this.btnDeleteActor.Location = new System.Drawing.Point(3, 3);
this.btnDeleteActor.Name = "btnDeleteActor";
this.btnDeleteActor.Size = new System.Drawing.Size(76, 23);
this.btnDeleteActor.TabIndex = 0;
this.btnDeleteActor.Text = "Delete Actor";
this.btnDeleteActor.UseVisualStyleBackColor = true;
this.btnDeleteActor.Click += new System.EventHandler(this.btnDeleteActor_Click);
//
// BrowserForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(533, 515);
this.Controls.Add(tabControl1);
this.Controls.Add(menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = menuStrip1;
this.Name = "BrowserForm";
this.ShowInTaskbar = false;
this.Text = "Browser";
this.Load += new System.EventHandler(this.BrowserForm_Load);
menuStrip1.ResumeLayout(false);
menuStrip1.PerformLayout();
tabControl1.ResumeLayout(false);
tabPage1.ResumeLayout(false);
tabPage1.PerformLayout();
flowLayoutPanel1.ResumeLayout(false);
flowLayoutPanel1.PerformLayout();
tabPage2.ResumeLayout(false);
tabPage2.PerformLayout();
flowLayoutPanel2.ResumeLayout(false);
flowLayoutPanel2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例5: InitializeComponent
//.........这里部分代码省略.........
this.listViewCapabilities.UseCompatibleStateImageBehavior = false;
this.listViewCapabilities.View = System.Windows.Forms.View.Details;
//
// columnHeader3
//
this.columnHeader3.Text = "Name";
this.columnHeader3.Width = 210;
//
// columnHeader4
//
this.columnHeader4.Text = "Flags";
this.columnHeader4.Width = 194;
//
// txtPackageSid
//
this.txtPackageSid.Location = new System.Drawing.Point(142, 14);
this.txtPackageSid.Name = "txtPackageSid";
this.txtPackageSid.ReadOnly = true;
this.txtPackageSid.Size = new System.Drawing.Size(256, 20);
this.txtPackageSid.TabIndex = 9;
//
// tabPageMisc
//
this.tabPageMisc.Controls.Add(groupBox2);
this.tabPageMisc.Location = new System.Drawing.Point(4, 22);
this.tabPageMisc.Name = "tabPageMisc";
this.tabPageMisc.Padding = new System.Windows.Forms.Padding(3);
this.tabPageMisc.Size = new System.Drawing.Size(467, 451);
this.tabPageMisc.TabIndex = 6;
this.tabPageMisc.Text = "Misc";
this.tabPageMisc.UseVisualStyleBackColor = true;
//
// tabPageOperations
//
this.tabPageOperations.Controls.Add(groupBox4);
this.tabPageOperations.Controls.Add(groupBox3);
this.tabPageOperations.Controls.Add(groupBox1);
this.tabPageOperations.Controls.Add(groupBoxDuplicate);
this.tabPageOperations.Location = new System.Drawing.Point(4, 22);
this.tabPageOperations.Name = "tabPageOperations";
this.tabPageOperations.Padding = new System.Windows.Forms.Padding(3);
this.tabPageOperations.Size = new System.Drawing.Size(467, 451);
this.tabPageOperations.TabIndex = 5;
this.tabPageOperations.Text = "Operations";
this.tabPageOperations.UseVisualStyleBackColor = true;
//
// contextMenuStripPrivileges
//
this.contextMenuStripPrivileges.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.enablePrivilegeToolStripMenuItem});
this.contextMenuStripPrivileges.Name = "contextMenuStripPrivileges";
this.contextMenuStripPrivileges.Size = new System.Drawing.Size(158, 26);
this.contextMenuStripPrivileges.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStripPrivileges_Opening);
//
// enablePrivilegeToolStripMenuItem
//
this.enablePrivilegeToolStripMenuItem.Name = "enablePrivilegeToolStripMenuItem";
this.enablePrivilegeToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
this.enablePrivilegeToolStripMenuItem.Text = "Enable Privilege";
this.enablePrivilegeToolStripMenuItem.Click += new System.EventHandler(this.enablePrivilegeToolStripMenuItem_Click);
//
// TokenForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(475, 477);
this.Controls.Add(this.tabControlMain);
this.MinimumSize = new System.Drawing.Size(491, 516);
this.Name = "TokenForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Token View";
tabPageMain.ResumeLayout(false);
this.groupBoxSource.ResumeLayout(false);
this.groupBoxSource.PerformLayout();
groupBoxToken.ResumeLayout(false);
groupBoxToken.PerformLayout();
tabPageGroups.ResumeLayout(false);
tabPageDefaultDacl.ResumeLayout(false);
tabPageDefaultDacl.PerformLayout();
groupBoxDuplicate.ResumeLayout(false);
groupBoxDuplicate.PerformLayout();
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
groupBox3.ResumeLayout(false);
groupBox3.PerformLayout();
groupBox4.ResumeLayout(false);
groupBox4.PerformLayout();
this.tabControlMain.ResumeLayout(false);
this.tabPagePrivs.ResumeLayout(false);
this.tabPageRestricted.ResumeLayout(false);
this.tabPageAppContainer.ResumeLayout(false);
this.tabPageAppContainer.PerformLayout();
this.tabPageMisc.ResumeLayout(false);
this.tabPageOperations.ResumeLayout(false);
this.contextMenuStripPrivileges.ResumeLayout(false);
this.ResumeLayout(false);
}
示例6: InitializeComponent
//.........这里部分代码省略.........
0,
0,
-2147483648});
this.numConstantPhaseAdjustment.Name = "numConstantPhaseAdjustment";
this.numConstantPhaseAdjustment.Size = new System.Drawing.Size(56, 20);
this.numConstantPhaseAdjustment.TabIndex = 23;
//
// label31
//
this.label31.AutoSize = true;
this.label31.Location = new System.Drawing.Point(274, 104);
this.label31.Name = "label31";
this.label31.Size = new System.Drawing.Size(74, 13);
this.label31.TabIndex = 22;
this.label31.Text = "Add fix phase;";
//
// instrumentModelDataGridViewTextBoxColumn
//
this.instrumentModelDataGridViewTextBoxColumn.DataPropertyName = "InstrumentModel";
this.instrumentModelDataGridViewTextBoxColumn.HeaderText = "Instrument Model";
this.instrumentModelDataGridViewTextBoxColumn.Name = "instrumentModelDataGridViewTextBoxColumn";
this.instrumentModelDataGridViewTextBoxColumn.ReadOnly = true;
this.instrumentModelDataGridViewTextBoxColumn.Width = 200;
//
// statusDataGridViewTextBoxColumn
//
this.statusDataGridViewTextBoxColumn.DataPropertyName = "Status";
this.statusDataGridViewTextBoxColumn.HeaderText = "Status";
this.statusDataGridViewTextBoxColumn.Name = "statusDataGridViewTextBoxColumn";
this.statusDataGridViewTextBoxColumn.ReadOnly = true;
this.statusDataGridViewTextBoxColumn.Width = 200;
//
// instrumentStautsBindingSource
//
this.instrumentStautsBindingSource.DataSource = typeof(LaserModulation.Instruments.Classes.InstrumentStauts);
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1119, 520);
this.Controls.Add(this.tabMainForm);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FormMain";
this.Text = "Laser Modulation";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing);
tabpgGeneralSetting.ResumeLayout(false);
tabpgGeneralSetting.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numGeneratedSignalMin)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numGeneratedSignalMax)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numPointsInPeriod)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dgvConnectedInstruments)).EndInit();
this.tabMainForm.ResumeLayout(false);
this.tabpgExperimentsControl.ResumeLayout(false);
this.tabInstrumnets.ResumeLayout(false);
this.tabpgSignalGenerator.ResumeLayout(false);
this.tabpgSignalGenerator.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numSignalGeneratorVoltageLow)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numSignalGeneratorVoltageHigh)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numSignalGeneratorFrequency)).EndInit();
this.tabpScope.ResumeLayout(false);
this.tabpScope.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numBufferToRecord)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dgvExperiments)).EndInit();
this.tabpSignalFixer.ResumeLayout(false);
this.grpbGeneralAlgorithmSettings.ResumeLayout(false);
this.grpbGeneralAlgorithmSettings.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numSGFilterLength)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numSGPolyOrder)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numFixEveryNSample)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numFixFromSample)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numMaxErrorToFixFrom)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numIterationCount)).EndInit();
this.tabControl1.ResumeLayout(false);
this.tabpPIDSettings.ResumeLayout(false);
this.tabpPIDSettings.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numEpsilonFactor)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numDFactor)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numIFactor)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numPFactor)).EndInit();
this.tabpFreqDistortionSettings.ResumeLayout(false);
this.tabpFreqDistortionSettings.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numFFTScaling)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numFDAHarmony)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numRange)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numMidPoint)).EndInit();
this.tabpFrequencyDomain.ResumeLayout(false);
this.tabpFrequencyDomain.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numHarmonyToFix)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numFixEnd)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numFixStart)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numMaxHarmonic)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dgvIterationsData)).EndInit();
this.tabpGraphs.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.chartGraphs)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numConstantPhaseAdjustment)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.instrumentStautsBindingSource)).EndInit();
this.ResumeLayout(false);
}
示例7: InitializeComponent
//.........这里部分代码省略.........
columnHeader2});
this.listViewRestrictedSids.ContextMenuStrip = this.contextMenuStripRestrictedSids;
this.listViewRestrictedSids.FullRowSelect = true;
this.listViewRestrictedSids.Location = new System.Drawing.Point(3, 34);
this.listViewRestrictedSids.Name = "listViewRestrictedSids";
this.listViewRestrictedSids.Size = new System.Drawing.Size(687, 425);
this.listViewRestrictedSids.TabIndex = 1;
this.listViewRestrictedSids.UseCompatibleStateImageBehavior = false;
this.listViewRestrictedSids.View = System.Windows.Forms.View.Details;
//
// contextMenuStripRestrictedSids
//
this.contextMenuStripRestrictedSids.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.addSidToolStripMenuItem,
this.deleteSidToolStripMenuItem,
this.selectAllToolStripMenuItem});
this.contextMenuStripRestrictedSids.Name = "contextMenuStripRestrictedSids";
this.contextMenuStripRestrictedSids.Size = new System.Drawing.Size(165, 70);
//
// addSidToolStripMenuItem
//
this.addSidToolStripMenuItem.Name = "addSidToolStripMenuItem";
this.addSidToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Insert;
this.addSidToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
this.addSidToolStripMenuItem.Text = "Add Sid";
this.addSidToolStripMenuItem.Click += new System.EventHandler(this.addSidToolStripMenuItem_Click);
//
// deleteSidToolStripMenuItem
//
this.deleteSidToolStripMenuItem.Name = "deleteSidToolStripMenuItem";
this.deleteSidToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete;
this.deleteSidToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
this.deleteSidToolStripMenuItem.Text = "Delete Sid";
this.deleteSidToolStripMenuItem.Click += new System.EventHandler(this.deleteSidToolStripMenuItem_Click);
//
// selectAllToolStripMenuItem
//
this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
this.selectAllToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
this.selectAllToolStripMenuItem.Text = "Select All";
this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
//
// btnCreate
//
this.btnCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnCreate.Location = new System.Drawing.Point(172, 506);
this.btnCreate.Name = "btnCreate";
this.btnCreate.Size = new System.Drawing.Size(75, 23);
this.btnCreate.TabIndex = 1;
this.btnCreate.Text = "Create";
this.btnCreate.UseVisualStyleBackColor = true;
this.btnCreate.Click += new System.EventHandler(this.btnCreate_Click);
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(410, 506);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 2;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// btnCreateNew
//
this.btnCreateNew.Location = new System.Drawing.Point(290, 506);
this.btnCreateNew.Name = "btnCreateNew";
this.btnCreateNew.Size = new System.Drawing.Size(75, 23);
this.btnCreateNew.TabIndex = 3;
this.btnCreateNew.Text = "Create New";
this.btnCreateNew.UseVisualStyleBackColor = true;
this.btnCreateNew.Click += new System.EventHandler(this.btnCreateNew_Click);
//
// CreateRestrictedTokenForm
//
this.AcceptButton = this.btnCreate;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(697, 532);
this.Controls.Add(this.btnCreateNew);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnCreate);
this.Controls.Add(this.tabControl);
this.Name = "CreateRestrictedTokenForm";
this.Text = "Create Restricted Token";
tabPageDisableSids.ResumeLayout(false);
tabPageDisableSids.PerformLayout();
this.contextMenuStripGroups.ResumeLayout(false);
this.tabControl.ResumeLayout(false);
this.tabPageDeletePrivs.ResumeLayout(false);
this.tabPageDeletePrivs.PerformLayout();
this.contextMenuStripPrivs.ResumeLayout(false);
this.tabPageRestrictedSids.ResumeLayout(false);
this.contextMenuStripRestrictedSids.ResumeLayout(false);
this.ResumeLayout(false);
}
开发者ID:GabberBaby,项目名称:sandbox-attacksurface-analysis-tools,代码行数:101,代码来源:CreateRestrictedTokenForm.Designer.cs
示例8: InitializeComponent
//.........这里部分代码省略.........
this.txtSmtpLogin.TabIndex = 5;
this.txtSmtpLogin.TextChanged += new System.EventHandler(this.SaveSmtpSettings);
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(6, 90);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(45, 13);
this.label9.TabIndex = 6;
this.label9.Text = "Пароль";
//
// txtSmtpPass
//
this.txtSmtpPass.Location = new System.Drawing.Point(113, 87);
this.txtSmtpPass.Name = "txtSmtpPass";
this.txtSmtpPass.PasswordChar = '*';
this.txtSmtpPass.Size = new System.Drawing.Size(186, 20);
this.txtSmtpPass.TabIndex = 7;
this.txtSmtpPass.TextChanged += new System.EventHandler(this.SaveSmtpSettings);
//
// lblExchangeNote
//
this.lblExchangeNote.AutoSize = true;
this.lblExchangeNote.Location = new System.Drawing.Point(154, 250);
this.lblExchangeNote.Name = "lblExchangeNote";
this.lblExchangeNote.Size = new System.Drawing.Size(0, 13);
this.lblExchangeNote.TabIndex = 26;
//
// btnSmtpTest
//
this.btnSmtpTest.Location = new System.Drawing.Point(3, 223);
this.btnSmtpTest.Name = "btnSmtpTest";
this.btnSmtpTest.Size = new System.Drawing.Size(113, 23);
this.btnSmtpTest.TabIndex = 10;
this.btnSmtpTest.Text = "Тестовое письмо";
this.btnSmtpTest.UseVisualStyleBackColor = true;
this.btnSmtpTest.Click += new System.EventHandler(this.btnSmtpTest_Click);
//
// chkSave2Sent
//
this.chkSave2Sent.AutoSize = true;
this.chkSave2Sent.Location = new System.Drawing.Point(154, 8);
this.chkSave2Sent.Name = "chkSave2Sent";
this.chkSave2Sent.Size = new System.Drawing.Size(162, 17);
this.chkSave2Sent.TabIndex = 13;
this.chkSave2Sent.Text = "сохранять в отправленных";
this.chkSave2Sent.UseVisualStyleBackColor = true;
this.chkSave2Sent.CheckedChanged += new System.EventHandler(this.chkSave2Sent_CheckedChanged);
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(13, 199);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(79, 13);
this.label11.TabIndex = 31;
this.label11.Text = "Копия письма";
//
// txtMailCopyTo
//
this.txtMailCopyTo.Location = new System.Drawing.Point(120, 196);
this.txtMailCopyTo.Name = "txtMailCopyTo";
this.txtMailCopyTo.Size = new System.Drawing.Size(192, 20);
this.txtMailCopyTo.TabIndex = 32;
//
// Form1
//
this.ClientSize = new System.Drawing.Size(331, 314);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.label6);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximumSize = new System.Drawing.Size(1000, 1000);
this.MinimumSize = new System.Drawing.Size(347, 316);
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "UN1T Счетчик";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.Load += new System.EventHandler(this.Form1_Load);
this.Resize += new System.EventHandler(this.Form1_Resize);
tabImap.ResumeLayout(false);
tabImap.PerformLayout();
this.pnlIpRanges.ResumeLayout(false);
this.pnlIpRanges.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.exchangeDelay)).EndInit();
this.tabControl1.ResumeLayout(false);
this.tabScan.ResumeLayout(false);
this.tabScan.PerformLayout();
this.tabDevices.ResumeLayout(false);
this.tabExchange.ResumeLayout(false);
this.tabExchange.PerformLayout();
this.tcMail.ResumeLayout(false);
this.tabMsExchange.ResumeLayout(false);
this.tabMsExchange.PerformLayout();
this.tabSmtp.ResumeLayout(false);
this.tabSmtp.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例9: InitializeComponent
//.........这里部分代码省略.........
//
// oobCountryListBox
//
resources.ApplyResources(this.oobCountryListBox, "oobCountryListBox");
this.oobCountryListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.oobCountryListBox.FormattingEnabled = true;
this.oobCountryListBox.Name = "oobCountryListBox";
this.oobCountryListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCountryListBoxDrawItem);
this.oobCountryListBox.SelectedIndexChanged += new System.EventHandler(this.OnOobCountryListBoxSelectedIndexChanged);
//
// checkButton
//
resources.ApplyResources(this.checkButton, "checkButton");
this.checkButton.Name = "checkButton";
this.checkButton.UseVisualStyleBackColor = true;
this.checkButton.Click += new System.EventHandler(this.OnCheckButtonClick);
//
// ScenarioEditorForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.Controls.Add(this.checkButton);
this.Controls.Add(this.scenarioTabControl);
this.Controls.Add(this.closeButton);
this.Controls.Add(this.saveButton);
this.Controls.Add(this.reloadButton);
this.Name = "ScenarioEditorForm";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
this.Load += new System.EventHandler(this.OnFormLoad);
this.Move += new System.EventHandler(this.OnFormMove);
this.Resize += new System.EventHandler(this.OnFormResize);
technologyTabPage.ResumeLayout(false);
technologyTabPage.PerformLayout();
this.techTreePanel.ResumeLayout(false);
this.techTreePanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.techTreePictureBox)).EndInit();
this.provinceTabPage.ResumeLayout(false);
this.provinceTabPage.PerformLayout();
this.provinceCountryGroupBox.ResumeLayout(false);
this.provinceCountryGroupBox.PerformLayout();
this.mapFilterGroupBox.ResumeLayout(false);
this.mapFilterGroupBox.PerformLayout();
this.provinceInfoGroupBox.ResumeLayout(false);
this.provinceInfoGroupBox.PerformLayout();
this.provinceResourceGroupBox.ResumeLayout(false);
this.provinceResourceGroupBox.PerformLayout();
this.provinceBuildingGroupBox.ResumeLayout(false);
this.provinceBuildingGroupBox.PerformLayout();
this.provinceMapPanel.ResumeLayout(false);
this.provinceMapPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.provinceMapPictureBox)).EndInit();
this.governmentTabPage.ResumeLayout(false);
this.cabinetGroupBox.ResumeLayout(false);
this.cabinetGroupBox.PerformLayout();
this.politicalSliderGroupBox.ResumeLayout(false);
this.politicalSliderGroupBox.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.interventionismTrackBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.defenseLobbyTrackBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.professionalArmyTrackBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.freeMarketTrackBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.freedomTrackBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.politicalLeftTrackBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.democraticTrackBar)).EndInit();
this.countryTabPage.ResumeLayout(false);
this.countryModifierGroupBox.ResumeLayout(false);
示例10: InitializeComponent
//.........这里部分代码省略.........
// label1
//
label1.AutoSize = true;
label1.Location = new System.Drawing.Point(0, 0);
label1.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(72, 15);
label1.TabIndex = 0;
label1.Text = "&Namespace:";
//
// headerCheckBox
//
headerCheckBox.AutoSize = true;
headerCheckBox.Checked = global::ToolStripCustomizer.Properties.Settings.Default.IncludeHeader;
headerCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
headerCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ToolStripCustomizer.Properties.Settings.Default, "IncludeHeader", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
headerCheckBox.Location = new System.Drawing.Point(3, 51);
headerCheckBox.Margin = new System.Windows.Forms.Padding(3, 7, 3, 3);
headerCheckBox.Name = "headerCheckBox";
headerCheckBox.Size = new System.Drawing.Size(196, 19);
headerCheckBox.TabIndex = 4;
headerCheckBox.Text = "Print <auto-generated/> header";
headerCheckBox.UseVisualStyleBackColor = true;
//
// namespaceTextBox
//
this.namespaceTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.namespaceTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::ToolStripCustomizer.Properties.Settings.Default, "DefaultNamespace", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.namespaceTextBox.Location = new System.Drawing.Point(3, 18);
this.namespaceTextBox.Name = "namespaceTextBox";
this.namespaceTextBox.Size = new System.Drawing.Size(244, 23);
this.namespaceTextBox.TabIndex = 1;
this.namespaceTextBox.Text = global::ToolStripCustomizer.Properties.Settings.Default.DefaultNamespace;
//
// cancelButton
//
cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
cancelButton.Location = new System.Drawing.Point(206, 8);
cancelButton.Name = "cancelButton";
cancelButton.Size = new System.Drawing.Size(75, 23);
cancelButton.TabIndex = 2;
cancelButton.Text = "Cancel";
cancelButton.UseVisualStyleBackColor = true;
//
// okButton
//
okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
okButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
okButton.Location = new System.Drawing.Point(125, 8);
okButton.Name = "okButton";
okButton.Size = new System.Drawing.Size(75, 23);
okButton.TabIndex = 1;
okButton.Text = "OK";
okButton.UseVisualStyleBackColor = true;
//
// flowLayoutPanel1
//
flowLayoutPanel1.AutoSize = true;
flowLayoutPanel1.Controls.Add(cancelButton);
flowLayoutPanel1.Controls.Add(okButton);
flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
flowLayoutPanel1.Location = new System.Drawing.Point(5, 313);
flowLayoutPanel1.Name = "flowLayoutPanel1";
flowLayoutPanel1.Padding = new System.Windows.Forms.Padding(0, 5, 0, 0);
flowLayoutPanel1.Size = new System.Drawing.Size(284, 34);
flowLayoutPanel1.TabIndex = 3;
//
// OptionsForm
//
this.AcceptButton = okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = cancelButton;
this.ClientSize = new System.Drawing.Size(294, 352);
this.Controls.Add(tabControl1);
this.Controls.Add(flowLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "OptionsForm";
this.Padding = new System.Windows.Forms.Padding(5);
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Options";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OptionsFormFormClosing);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OptionsFormFormClosed);
tabControl1.ResumeLayout(false);
tabPage1.ResumeLayout(false);
tabPage1.PerformLayout();
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
tableLayoutPanel1.ResumeLayout(false);
tableLayoutPanel1.PerformLayout();
flowLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
示例11: InitializeComponent
//.........这里部分代码省略.........
//
// maxThrustForFlyingTextBox
//
this.maxThrustForFlyingTextBox.Increment = new decimal(new int[] {
10,
0,
0,
0});
this.maxThrustForFlyingTextBox.Location = new System.Drawing.Point(376, 187);
this.maxThrustForFlyingTextBox.Maximum = new decimal(new int[] {
1000,
0,
0,
0});
this.maxThrustForFlyingTextBox.Name = "maxThrustForFlyingTextBox";
this.maxThrustForFlyingTextBox.Size = new System.Drawing.Size(70, 20);
this.maxThrustForFlyingTextBox.TabIndex = 26;
//
// keepMotorsOnCheckBox
//
this.keepMotorsOnCheckBox.AutoSize = true;
this.keepMotorsOnCheckBox.Location = new System.Drawing.Point(283, 159);
this.keepMotorsOnCheckBox.Name = "keepMotorsOnCheckBox";
this.keepMotorsOnCheckBox.Size = new System.Drawing.Size(100, 17);
this.keepMotorsOnCheckBox.TabIndex = 24;
this.keepMotorsOnCheckBox.Text = "Keep motors on";
this.keepMotorsOnCheckBox.UseVisualStyleBackColor = true;
//
// negativeMixingCheckBox
//
this.negativeMixingCheckBox.AutoSize = true;
this.negativeMixingCheckBox.Location = new System.Drawing.Point(283, 136);
this.negativeMixingCheckBox.Name = "negativeMixingCheckBox";
this.negativeMixingCheckBox.Size = new System.Drawing.Size(101, 17);
this.negativeMixingCheckBox.TabIndex = 23;
this.negativeMixingCheckBox.Text = "Negative mixing";
this.negativeMixingCheckBox.UseVisualStyleBackColor = true;
//
// enableStabilizationCheckBox
//
this.enableStabilizationCheckBox.AutoSize = true;
this.enableStabilizationCheckBox.Location = new System.Drawing.Point(283, 113);
this.enableStabilizationCheckBox.Name = "enableStabilizationCheckBox";
this.enableStabilizationCheckBox.Size = new System.Drawing.Size(116, 17);
this.enableStabilizationCheckBox.TabIndex = 22;
this.enableStabilizationCheckBox.Text = "Enable stabilization";
this.enableStabilizationCheckBox.UseVisualStyleBackColor = true;
//
// applyButton
//
this.applyButton.Location = new System.Drawing.Point(645, -1);
this.applyButton.Name = "applyButton";
this.applyButton.Size = new System.Drawing.Size(62, 25);
this.applyButton.TabIndex = 1;
this.applyButton.Text = "Apply";
this.applyButton.UseVisualStyleBackColor = true;
this.applyButton.Click += new System.EventHandler(this.applyButton_Click);
//
// SettingsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(706, 438);
this.Controls.Add(this.applyButton);
this.Controls.Add(this.tabControl1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "SettingsForm";
this.Text = "Settings";
firmwareGroupBox.ResumeLayout(false);
firmwareGroupBox.PerformLayout();
quadrocopterPage.ResumeLayout(false);
quadrocopterPage.PerformLayout();
hardwareGroupBox.ResumeLayout(false);
hardwareGroupBox.PerformLayout();
motorsGroupBox.ResumeLayout(false);
motorsGroupBox.PerformLayout();
safetyGroupBox.ResumeLayout(false);
safetyGroupBox.PerformLayout();
pidPitchGroupBox.ResumeLayout(false);
pidPitchGroupBox.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pitchKdTextBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pitchKiTextBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pitchKpTextBox)).EndInit();
pidRollGroupBox.ResumeLayout(false);
pidRollGroupBox.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.rollKdTextBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.rollKiTextBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.rollKpTextBox)).EndInit();
pidYawGroupBox.ResumeLayout(false);
pidYawGroupBox.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.yawKdTextBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.yawKiTextBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.yawKpTextBox)).EndInit();
this.tabControl1.ResumeLayout(false);
this.flyingPage.ResumeLayout(false);
this.flyingPage.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.maxThrustForFlyingTextBox)).EndInit();
this.ResumeLayout(false);
}
示例12: InitializeComponent
//.........这里部分代码省略.........
this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.generalStatus,
this.speedStatus,
this.downloadedStatus,
this.pendingStatus,
this.timeRemainigStatus});
this.statusStrip.Location = new System.Drawing.Point(0, 585);
this.statusStrip.Name = "statusStrip";
this.statusStrip.Size = new System.Drawing.Size(1015, 22);
this.statusStrip.TabIndex = 2;
this.statusStrip.Text = "statusStrip1";
//
// generalStatus
//
this.generalStatus.Name = "generalStatus";
this.generalStatus.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
this.generalStatus.Size = new System.Drawing.Size(115, 17);
this.generalStatus.Text = "Ready ";
this.generalStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// speedStatus
//
this.speedStatus.Name = "speedStatus";
this.speedStatus.Size = new System.Drawing.Size(36, 17);
this.speedStatus.Text = "0KiB/s";
//
// downloadedStatus
//
this.downloadedStatus.Name = "downloadedStatus";
this.downloadedStatus.Size = new System.Drawing.Size(29, 17);
this.downloadedStatus.Text = "0MiB";
//
// pendingStatus
//
this.pendingStatus.Name = "pendingStatus";
this.pendingStatus.Size = new System.Drawing.Size(29, 17);
this.pendingStatus.Text = "0MiB";
//
// timeRemainigStatus
//
this.timeRemainigStatus.Name = "timeRemainigStatus";
this.timeRemainigStatus.Size = new System.Drawing.Size(45, 17);
this.timeRemainigStatus.Text = "0:00:00";
//
// filterPanel
//
this.filterPanel.Dock = System.Windows.Forms.DockStyle.Top;
this.filterPanel.Location = new System.Drawing.Point(0, 49);
this.filterPanel.Name = "filterPanel";
this.filterPanel.Size = new System.Drawing.Size(1015, 67);
this.filterPanel.TabIndex = 3;
//
// groupActiveSplit
//
this.groupActiveSplit.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupActiveSplit.Location = new System.Drawing.Point(0, 116);
this.groupActiveSplit.Name = "groupActiveSplit";
this.groupActiveSplit.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// groupActiveSplit.Panel1
//
this.groupActiveSplit.Panel1.Controls.Add(groupsDetailsSplit);
this.groupActiveSplit.Size = new System.Drawing.Size(1015, 469);
this.groupActiveSplit.SplitterDistance = 340;
this.groupActiveSplit.TabIndex = 4;
this.groupActiveSplit.Text = "splitContainer1";
//
// Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1015, 607);
this.Controls.Add(this.groupActiveSplit);
this.Controls.Add(this.filterPanel);
this.Controls.Add(this.toolbar);
this.Controls.Add(this.statusStrip);
this.Controls.Add(this.menu);
this.MainMenuStrip = this.menu;
this.Name = "Main";
this.Text = "SharpNews - 0.1Alpha";
groupsDetailsSplit.Panel1.ResumeLayout(false);
groupsDetailsSplit.Panel2.ResumeLayout(false);
groupsDetailsSplit.ResumeLayout(false);
this.groupTabs.ResumeLayout(false);
groupContentsPage.ResumeLayout(false);
this.DownloadsPage.ResumeLayout(false);
statusPage.ResumeLayout(false);
statusPage.PerformLayout();
this.menu.ResumeLayout(false);
this.menu.PerformLayout();
this.toolbar.ResumeLayout(false);
this.toolbar.PerformLayout();
this.statusStrip.ResumeLayout(false);
this.statusStrip.PerformLayout();
this.groupActiveSplit.Panel1.ResumeLayout(false);
this.groupActiveSplit.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
示例13: InitializeComponent
//.........这里部分代码省略.........
this.btnJoinBrowseFile.UseVisualStyleBackColor = true;
this.btnJoinBrowseFile.Click += new System.EventHandler(this.btnJoinBrowseFile_Click);
//
// prbJoining
//
this.prbJoining.Location = new System.Drawing.Point(13, 244);
this.prbJoining.Name = "prbJoining";
this.prbJoining.Size = new System.Drawing.Size(469, 12);
this.prbJoining.TabIndex = 21;
//
// btnJoinFile
//
this.btnJoinFile.Enabled = false;
this.btnJoinFile.Location = new System.Drawing.Point(249, 262);
this.btnJoinFile.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.btnJoinFile.Name = "btnJoinFile";
this.btnJoinFile.Size = new System.Drawing.Size(122, 26);
this.btnJoinFile.TabIndex = 10;
this.btnJoinFile.Text = "Join file";
this.btnJoinFile.UseVisualStyleBackColor = true;
this.btnJoinFile.Click += new System.EventHandler(this.btnJoinFile_Click);
//
// stsMain
//
this.stsMain.Location = new System.Drawing.Point(0, 397);
this.stsMain.Name = "stsMain";
this.stsMain.Size = new System.Drawing.Size(499, 22);
this.stsMain.TabIndex = 8;
this.stsMain.Text = "statusStrip1";
//
// ucBottom
//
this.ucBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucBottom.Location = new System.Drawing.Point(0, 419);
this.ucBottom.Margin = new System.Windows.Forms.Padding(0);
this.ucBottom.MaximumSize = new System.Drawing.Size(0, 36);
this.ucBottom.MinimumSize = new System.Drawing.Size(0, 36);
this.ucBottom.Name = "ucBottom";
this.ucBottom.Size = new System.Drawing.Size(499, 36);
this.ucBottom.TabIndex = 7;
//
// ucTop
//
this.ucTop.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(246)))), ((int)(((byte)(247)))));
this.ucTop.Dock = System.Windows.Forms.DockStyle.Top;
this.ucTop.Location = new System.Drawing.Point(0, 0);
this.ucTop.Name = "ucTop";
this.ucTop.Size = new System.Drawing.Size(499, 64);
this.ucTop.TabIndex = 6;
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(246)))), ((int)(((byte)(247)))));
this.ClientSize = new System.Drawing.Size(499, 455);
this.Controls.Add(this.stsMain);
this.Controls.Add(this.ucBottom);
this.Controls.Add(this.ucTop);
this.Controls.Add(this.tcMain);
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormMain";
this.Text = "File Splitter and Joiner";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
this.Load += new System.EventHandler(this.frmMain_Load);
tbpOptions.ResumeLayout(false);
tbpOptions.PerformLayout();
this.grbDebugVariables.ResumeLayout(false);
this.grbDebugVariables.PerformLayout();
this.cmnSize.ResumeLayout(false);
this.grbSplitFile.ResumeLayout(false);
this.grbSplitFile.PerformLayout();
this.grbSplitFolder.ResumeLayout(false);
this.grbSplitFolder.PerformLayout();
this.grbNumberOfBytes.ResumeLayout(false);
this.grbNumberOfBytes.PerformLayout();
this.grbSplitInfo.ResumeLayout(false);
this.grbSplitInfo.PerformLayout();
this.tcMain.ResumeLayout(false);
this.tbpFileSplitter.ResumeLayout(false);
this.tbpFileSplitter.PerformLayout();
this.grbNumberOfFiles.ResumeLayout(false);
this.grbNumberOfFiles.PerformLayout();
this.tbpFileJoiner.ResumeLayout(false);
this.tbpFileJoiner.PerformLayout();
this.grbJoinInfo.ResumeLayout(false);
this.grbJoinInfo.PerformLayout();
this.grbJoinFolder.ResumeLayout(false);
this.grbJoinFolder.PerformLayout();
this.grbJoinFile.ResumeLayout(false);
this.grbJoinFile.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例14: InitializeComponent
//.........这里部分代码省略.........
this.tabPage1.Text = "PluginResults";
this.tabPage1.UseVisualStyleBackColor = true;
//
// m_dgPluginResults
//
this.m_dgPluginResults.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)));
dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle19.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle19.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle19.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle19.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.m_dgPluginResults.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle19;
this.m_dgPluginResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle20.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle20.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle20.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle20.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle20.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.m_dgPluginResults.DefaultCellStyle = dataGridViewCellStyle20;
this.m_dgPluginResults.Location = new System.Drawing.Point(29, 18);
this.m_dgPluginResults.Name = "m_dgPluginResults";
dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle21.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle21.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle21.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle21.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle21.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.m_dgPluginResults.RowHeadersDefaultCellStyle = dataGridViewCellStyle21;
this.m_dgPluginResults.Size = new System.Drawing.Size(654, 196);
this.m_dgPluginResults.TabIndex = 2;
//
// panel2
//
this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.panel2.Controls.Add(this.btnNextPluginResult);
this.panel2.Controls.Add(this.btnPluginImportResults);
this.panel2.Location = new System.Drawing.Point(29, 217);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(626, 34);
this.panel2.TabIndex = 7;
//
// btnPluginImportResults
//
this.btnPluginImportResults.Location = new System.Drawing.Point(3, 7);
this.btnPluginImportResults.Name = "btnPluginImportResults";
this.btnPluginImportResults.Size = new System.Drawing.Size(91, 23);
this.btnPluginImportResults.TabIndex = 5;
this.btnPluginImportResults.Text = "Import Results";
this.btnPluginImportResults.UseVisualStyleBackColor = true;
this.btnPluginImportResults.Click += new System.EventHandler(this.btnPluginImportResults_Click);
//
// btnNextPluginResult
//
this.btnNextPluginResult.Location = new System.Drawing.Point(156, 7);
this.btnNextPluginResult.Name = "btnNextPluginResult";
this.btnNextPluginResult.Size = new System.Drawing.Size(75, 23);
this.btnNextPluginResult.TabIndex = 6;
this.btnNextPluginResult.Text = "Next Table";
this.btnNextPluginResult.UseVisualStyleBackColor = true;
this.btnNextPluginResult.Click += new System.EventHandler(this.btnNextPluginResult_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(801, 286);
this.Controls.Add(this.tabPages);
this.Name = "Form1";
this.Text = "FieldStat";
tpAssemblies.ResumeLayout(false);
tpAssemblies.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.m_dgAssemblies)).EndInit();
this.tabPages.ResumeLayout(false);
this.tpCoverage.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.m_dgCoverage)).EndInit();
this.tpType_Params.ResumeLayout(false);
this.tpType_Params.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.m_dgTypeFilters)).EndInit();
this.tpAnalysis.ResumeLayout(false);
this.tpAnalysis.PerformLayout();
this.tpAppStats.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.m_dgAppStats)).EndInit();
this.tpCodeRank.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.m_dgCodeRank)).EndInit();
this.tpResults.ResumeLayout(false);
this.panel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.m_dgResults)).EndInit();
this.tabPage1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.m_dgPluginResults)).EndInit();
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
示例15: InitializeComponent
//.........这里部分代码省略.........
//
this.txtSourceCode.AcceptsTab = true;
this.txtSourceCode.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtSourceCode.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtSourceCode.Location = new System.Drawing.Point(0, 0);
this.txtSourceCode.Multiline = true;
this.txtSourceCode.Name = "txtSourceCode";
this.txtSourceCode.Size = new System.Drawing.Size(253, 162);
this.txtSourceCode.TabIndex = 7;
this.txtSourceCode.TextChanged += new System.EventHandler(this.txtSourceCode_TextChanged);
this.txtSourceCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSourceCode_KeyDown);
//
// descriptionControlCopy
//
this.descriptionControlCopy.Dock = System.Windows.Forms.DockStyle.Fill;
this.descriptionControlCopy.Enabled = false;
this.descriptionControlCopy.Location = new System.Drawing.Point(0, 0);
this.descriptionControlCopy.Margin = new System.Windows.Forms.Padding(0);
this.descriptionControlCopy.Name = "descriptionControlCopy";
this.descriptionControlCopy.ShowLabel = false;
this.descriptionControlCopy.Size = new System.Drawing.Size(107, 162);
this.descriptionControlCopy.TabIndex = 8;
//
// txtMethodHeader
//
this.txtMethodHeader.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtMethodHeader.Location = new System.Drawing.Point(6, 3);
this.txtMethodHeader.Name = "txtMethodHeader";
this.txtMethodHeader.ReadOnly = true;
this.txtMethodHeader.Size = new System.Drawing.Size(364, 20);
this.txtMethodHeader.TabIndex = 5;
this.txtMethodHeader.DoubleClick += new System.EventHandler(this.txtMethodHeader_DoubleClick);
//
// tabPage2
//
tabPage2.Controls.Add(label1);
tabPage2.Controls.Add(this.txtNativeName);
tabPage2.Controls.Add(this.descriptionControl);
tabPage2.ImageKey = "document";
tabPage2.Location = new System.Drawing.Point(4, 22);
tabPage2.Name = "tabPage2";
tabPage2.Padding = new System.Windows.Forms.Padding(3);
tabPage2.Size = new System.Drawing.Size(376, 197);
tabPage2.TabIndex = 1;
tabPage2.Text = "Definition";
tabPage2.UseVisualStyleBackColor = true;
//
// descriptionControl
//
this.descriptionControl.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.descriptionControl.Location = new System.Drawing.Point(3, 33);
this.descriptionControl.Margin = new System.Windows.Forms.Padding(0);
this.descriptionControl.Name = "descriptionControl";
this.descriptionControl.ShowLabel = false;
this.descriptionControl.Size = new System.Drawing.Size(370, 161);
this.descriptionControl.TabIndex = 7;
//
// txtNativeName
//
this.txtNativeName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtNativeName.Location = new System.Drawing.Point(81, 7);
this.txtNativeName.Name = "txtNativeName";
this.txtNativeName.Size = new System.Drawing.Size(289, 20);
this.txtNativeName.TabIndex = 8;
this.txtNativeName.TextChanged += new System.EventHandler(this.txtNativeName_TextChanged);
//
// label1
//
label1.AutoSize = true;
label1.Location = new System.Drawing.Point(3, 10);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(72, 13);
label1.TabIndex = 9;
label1.Text = "Native Name:";
//
// MethodDefinitionControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(tabControl1);
this.Name = "MethodDefinitionControl";
this.Size = new System.Drawing.Size(384, 223);
this.Load += new System.EventHandler(this.MethodDefinitionControl_Load);
tabControl1.ResumeLayout(false);
tabPage1.ResumeLayout(false);
tabPage1.PerformLayout();
this.splitContainer.Panel1.ResumeLayout(false);
this.splitContainer.Panel1.PerformLayout();
this.splitContainer.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
this.splitContainer.ResumeLayout(false);
tabPage2.ResumeLayout(false);
tabPage2.PerformLayout();
this.ResumeLayout(false);
}