本文整理汇总了C#中System.Windows.Forms.TabPage.ResumeLayout方法的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.TabPage.ResumeLayout方法的具体用法?C# System.Windows.Forms.TabPage.ResumeLayout怎么用?C# System.Windows.Forms.TabPage.ResumeLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.TabPage
的用法示例。
在下文中一共展示了System.Windows.Forms.TabPage.ResumeLayout方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeComponent
/// <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.TabControl tabControl1;
System.Windows.Forms.TabPage tabPage2;
this.treeView1 = new System.Windows.Forms.TreeView();
tabControl1 = new System.Windows.Forms.TabControl();
tabPage2 = new System.Windows.Forms.TabPage();
tabControl1.SuspendLayout();
tabPage2.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
tabControl1.Controls.Add(tabPage2);
tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
tabControl1.Location = new System.Drawing.Point(0, 0);
tabControl1.Name = "tabControl1";
tabControl1.SelectedIndex = 0;
tabControl1.Size = new System.Drawing.Size(208, 356);
tabControl1.TabIndex = 1;
//
// tabPage2
//
tabPage2.BackColor = System.Drawing.SystemColors.Control;
tabPage2.Controls.Add(this.treeView1);
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(200, 330);
tabPage2.TabIndex = 1;
tabPage2.Text = "World";
//
// treeView1
//
this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeView1.Location = new System.Drawing.Point(3, 3);
this.treeView1.Name = "treeView1";
this.treeView1.Size = new System.Drawing.Size(194, 324);
this.treeView1.TabIndex = 0;
//
// WorldPage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(tabControl1);
this.Name = "WorldPage";
this.Size = new System.Drawing.Size(208, 356);
tabControl1.ResumeLayout(false);
tabPage2.ResumeLayout(false);
this.ResumeLayout(false);
}
示例2: InitializeComponent
/// <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.TabControl tabControl1;
System.Windows.Forms.TabPage tabPage2;
this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
tabControl1 = new System.Windows.Forms.TabControl();
tabPage2 = new System.Windows.Forms.TabPage();
tabControl1.SuspendLayout();
tabPage2.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
tabControl1.Controls.Add(tabPage2);
tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
tabControl1.Location = new System.Drawing.Point(0, 0);
tabControl1.Name = "tabControl1";
tabControl1.SelectedIndex = 0;
tabControl1.Size = new System.Drawing.Size(150, 348);
tabControl1.TabIndex = 0;
//
// tabPage2
//
tabPage2.BackColor = System.Drawing.SystemColors.Control;
tabPage2.Controls.Add(this.propertyGrid1);
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(142, 322);
tabPage2.TabIndex = 1;
tabPage2.Text = "Properties";
//
// propertyGrid1
//
this.propertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
this.propertyGrid1.Location = new System.Drawing.Point(3, 3);
this.propertyGrid1.Name = "propertyGrid1";
this.propertyGrid1.Size = new System.Drawing.Size(136, 316);
this.propertyGrid1.TabIndex = 0;
//
// PropertyPage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(tabControl1);
this.Name = "PropertyPage";
this.Size = new System.Drawing.Size(150, 348);
tabControl1.ResumeLayout(false);
tabPage2.ResumeLayout(false);
this.ResumeLayout(false);
}
示例3: InitializeComponent
//.........这里部分代码省略.........
_ContextMenuStripFiles.Name = "_ContextMenuStripFiles";
_ContextMenuStripFiles.Size = new System.Drawing.Size(185, 52);
//
// _ToolStripMenuItemAddFile
//
_ToolStripMenuItemAddFile.Name = "_ToolStripMenuItemAddFile";
_ToolStripMenuItemAddFile.Size = new System.Drawing.Size(184, 24);
_ToolStripMenuItemAddFile.Text = "Добавить файл";
_ToolStripMenuItemAddFile.Click += new System.EventHandler(EventHandler_ToolStripMenuItemAddFile_Click);
//
// _ToolStripMenuItemRemoveFile
//
_ToolStripMenuItemRemoveFile.Name = "_ToolStripMenuItemRemoveFile";
_ToolStripMenuItemRemoveFile.Size = new System.Drawing.Size(184, 24);
_ToolStripMenuItemRemoveFile.Text = "Удалить файл";
_ToolStripMenuItemRemoveFile.Click += new System.EventHandler(EventHandler_ToolStripMenuItemRemoveFile_Click);
//
// _DataGridViewRecords
//
_DataGridViewRecords.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
_DataGridViewRecords.ContextMenuStrip = _ContextMenuStripRecords;
_DataGridViewRecords.Dock = System.Windows.Forms.DockStyle.Fill;
_DataGridViewRecords.Location = new System.Drawing.Point(0, 0);
_DataGridViewRecords.Name = "_DataGridViewRecords";
_DataGridViewRecords.RowTemplate.Height = 24;
_DataGridViewRecords.Size = new System.Drawing.Size(576, 183);
_DataGridViewRecords.TabIndex = 0;
//
// _ContextMenuStripRecords
//
_ContextMenuStripRecords.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
_ToolStripMenuItemAddRecord,
_ToolStripMenuItemRemoveRecord});
_ContextMenuStripRecords.Name = "_ContextMenuStripRecords";
_ContextMenuStripRecords.Size = new System.Drawing.Size(198, 52);
//
// _ToolStripMenuItemAddRecord
//
_ToolStripMenuItemAddRecord.Name = "_ToolStripMenuItemAddRecord";
_ToolStripMenuItemAddRecord.Size = new System.Drawing.Size(197, 24);
_ToolStripMenuItemAddRecord.Text = "Добавить запись";
_ToolStripMenuItemAddRecord.Click += new System.EventHandler(EventHandler_ToolStripMenuItemAddRecord_Click);
//
// _ToolStripMenuItemRemoveRecord
//
_ToolStripMenuItemRemoveRecord.Name = "_ToolStripMenuItemRemoveRecord";
_ToolStripMenuItemRemoveRecord.Size = new System.Drawing.Size(197, 24);
_ToolStripMenuItemRemoveRecord.Text = "Удалить запись";
_ToolStripMenuItemRemoveRecord.Click += new System.EventHandler(EventHandler_ToolStripMenuItemRemoveRecord_Click);
//
// FormEditNetworkController
//
AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
AutoSize = true;
ClientSize = new System.Drawing.Size(880, 456);
Controls.Add(_SplitContainerMain);
Controls.Add(_StatusStripMain);
Controls.Add(_MenuStripMain);
MainMenuStrip = _MenuStripMain;
MaximizeBox = false;
MinimizeBox = false;
Name = "FormEditNetworkController";
ShowIcon = false;
ShowInTaskbar = false;
StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
Text = "Редактор сети Modbus";
Load += new System.EventHandler(EventHandler_FormEditNetworkController_Load);
FormClosed += new System.Windows.Forms.FormClosedEventHandler(EventHandler_FormEditNetworkController_FormClosed);
FormClosing += new System.Windows.Forms.FormClosingEventHandler(EventHandler_FormEditNetworkController_FormClosing);
_SplitContainerMain.Panel1.ResumeLayout(false);
_SplitContainerMain.Panel2.ResumeLayout(false);
_SplitContainerMain.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(_DataGridViewDevicesList)).EndInit();
_ContextMenuStripDevicesList.ResumeLayout(false);
_TabControlDevice.ResumeLayout(false);
_TabPageHoldingRegisters.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(_DataGridViewHoldingRegisters)).EndInit();
_ContextMenuStripHoldingRegisters.ResumeLayout(false);
_TabPageInputRegisters.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(_DataGridViewInputRegisters)).EndInit();
_ContextMenuStripInputRegisters.ResumeLayout(false);
_TabPageCoils.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(_DataGridViewCoils)).EndInit();
_ContextMenuStripCoils.ResumeLayout(false);
_TabPageDiscretesInputs.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(_DataGridViewDiscretesInputs)).EndInit();
_ContextMenuStripDiscretesInputs.ResumeLayout(false);
_TabPageFiles.ResumeLayout(false);
_SplitContainerFiles.Panel1.ResumeLayout(false);
_SplitContainerFiles.Panel2.ResumeLayout(false);
_SplitContainerFiles.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(_DataGridViewFiles)).EndInit();
_ContextMenuStripFiles.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(_DataGridViewRecords)).EndInit();
_ContextMenuStripRecords.ResumeLayout(false);
ResumeLayout(false);
PerformLayout();
}
示例4: InitializeComponent
//.........这里部分代码省略.........
//
resources.ApplyResources(this.label8, "label8");
this.label8.Name = "label8";
//
// label7
//
resources.ApplyResources(this.label7, "label7");
this.label7.Name = "label7";
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.Name = "label6";
//
// label5
//
resources.ApplyResources(this.label5, "label5");
this.label5.Name = "label5";
//
// mapDataGroupBox
//
this.mapDataGroupBox.Controls.Add(this.mapData1RadioButton);
this.mapDataGroupBox.Controls.Add(this.mapData0RadioButton);
resources.ApplyResources(this.mapDataGroupBox, "mapDataGroupBox");
this.mapDataGroupBox.Name = "mapDataGroupBox";
this.mapDataGroupBox.TabStop = false;
//
// mapData1RadioButton
//
resources.ApplyResources(this.mapData1RadioButton, "mapData1RadioButton");
this.mapData1RadioButton.Name = "mapData1RadioButton";
this.mapData1RadioButton.TabStop = true;
this.mapData1RadioButton.UseVisualStyleBackColor = true;
//
// mapData0RadioButton
//
resources.ApplyResources(this.mapData0RadioButton, "mapData0RadioButton");
this.mapData0RadioButton.Checked = true;
this.mapData0RadioButton.Name = "mapData0RadioButton";
this.mapData0RadioButton.TabStop = true;
this.mapData0RadioButton.UseVisualStyleBackColor = true;
this.mapData0RadioButton.CheckedChanged += new System.EventHandler(this.dataRadioButton_CheckedChanged);
//
// tileDataGroupBox
//
this.tileDataGroupBox.Controls.Add(this.tileData1RadioButton);
this.tileDataGroupBox.Controls.Add(this.tileData0RadioButton);
resources.ApplyResources(this.tileDataGroupBox, "tileDataGroupBox");
this.tileDataGroupBox.Name = "tileDataGroupBox";
this.tileDataGroupBox.TabStop = false;
//
// tileData1RadioButton
//
resources.ApplyResources(this.tileData1RadioButton, "tileData1RadioButton");
this.tileData1RadioButton.Name = "tileData1RadioButton";
this.tileData1RadioButton.TabStop = true;
this.tileData1RadioButton.UseVisualStyleBackColor = true;
//
// tileData0RadioButton
//
resources.ApplyResources(this.tileData0RadioButton, "tileData0RadioButton");
this.tileData0RadioButton.Checked = true;
this.tileData0RadioButton.Name = "tileData0RadioButton";
this.tileData0RadioButton.TabStop = true;
this.tileData0RadioButton.UseVisualStyleBackColor = true;
this.tileData0RadioButton.CheckedChanged += new System.EventHandler(this.dataRadioButton_CheckedChanged);
//
// MapViewerForm
//
this.AcceptButton = this.refreshButton;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.closeButton;
this.Controls.Add(this.tabControl);
this.Controls.Add(this.closeButton);
this.Controls.Add(this.refreshButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "MapViewerForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
backgroundMapGroupBox.ResumeLayout(false);
windowMapGroupBox.ResumeLayout(false);
customMapGroupBox.ResumeLayout(false);
autoMapsTabPage.ResumeLayout(false);
this.tabControl.ResumeLayout(false);
this.customMapsTabPage.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.informationGroupBox.ResumeLayout(false);
this.informationGroupBox.PerformLayout();
this.mapDataGroupBox.ResumeLayout(false);
this.mapDataGroupBox.PerformLayout();
this.tileDataGroupBox.ResumeLayout(false);
this.tileDataGroupBox.PerformLayout();
this.ResumeLayout(false);
}
示例5: InitializeComponent
//.........这里部分代码省略.........
this.guardarButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.guardarButton.Image = global::Kenwin.PPP.Cliente.Properties.Resources.Guardar;
this.guardarButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.guardarButton.Location = new System.Drawing.Point(969, 6);
this.guardarButton.Name = "guardarButton";
this.guardarButton.Size = new System.Drawing.Size(70, 30);
this.guardarButton.TabIndex = 2;
this.guardarButton.Text = "&Guardar";
this.guardarButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.guardarButton.Click += new System.EventHandler(this.GuardarButton_Click);
//
// cerrarButton
//
this.cerrarButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cerrarButton.ButtonType = Vemn.Fwk.Windows.Controls.VemnButton.ButtonTypeEnum.Cancel;
this.cerrarButton.Image = ((System.Drawing.Image)(resources.GetObject("cerrarButton.Image")));
this.cerrarButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.cerrarButton.Location = new System.Drawing.Point(1045, 6);
this.cerrarButton.Name = "cerrarButton";
this.cerrarButton.Size = new System.Drawing.Size(70, 30);
this.cerrarButton.TabIndex = 0;
this.cerrarButton.Text = "&Cerrar";
this.cerrarButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.cerrarButton.Click += new System.EventHandler(this.CerrarButton_Click);
//
// contextMenuStrip
//
this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.eliminarActividadToolStripMenuItem});
this.contextMenuStrip.Name = "contextMenuStrip1";
this.contextMenuStrip.Size = new System.Drawing.Size(171, 26);
//
// eliminarActividadToolStripMenuItem
//
this.eliminarActividadToolStripMenuItem.Name = "eliminarActividadToolStripMenuItem";
this.eliminarActividadToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
this.eliminarActividadToolStripMenuItem.Text = "Eliminar Actividad";
this.eliminarActividadToolStripMenuItem.Click += new System.EventHandler(this.EliminarActividadToolStripMenuItem_Click);
//
// errorProvider
//
this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
this.errorProvider.ContainerControl = this;
//
// Editor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1132, 739);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.groupBox1);
this.Name = "Editor";
this.ShowIcon = false;
this.Text = "Proyecto";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Editor_FormClosing);
this.Load += new System.EventHandler(this.Editor_Load);
actividadesTabPage.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.versionesSplitContainer.Panel1.ResumeLayout(false);
this.versionesSplitContainer.Panel1.PerformLayout();
this.versionesSplitContainer.Panel2.ResumeLayout(false);
this.versionesSplitContainer.Panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.versionesSplitContainer)).EndInit();
this.versionesSplitContainer.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.version1C1FlexGrid)).EndInit();
this.menuVersionActualTableLayoutPanel.ResumeLayout(false);
this.menuVersionActualAbajoTableLayoutPanel.ResumeLayout(false);
this.menuVersionActualAbajoTableLayoutPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.fechaInicioProyectoVersionActualC1DateEdit)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.probabilidadVersion1C1NumericEdit)).EndInit();
this.menuVersionActualArribaTableLayoutPanel.ResumeLayout(false);
this.menuVersionActualArribaTableLayoutPanel.PerformLayout();
this.sumatoriasVersionActualTableLayoutPanel.ResumeLayout(false);
this.sumatoriasVersionActualTableLayoutPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.version2C1FlexGrid)).EndInit();
this.menuVersionAnteriorTableLayoutPanel.ResumeLayout(false);
this.menuVersionAnteriorAbajoTableLayoutPanel.ResumeLayout(false);
this.menuVersionAnteriorAbajoTableLayoutPanel.PerformLayout();
this.menuVersionAnteriorArribaTableLayoutPanel.ResumeLayout(false);
this.menuVersionAnteriorArribaTableLayoutPanel.PerformLayout();
this.sumatoriasVersionAnteriorTableLayoutPanel.ResumeLayout(false);
this.sumatoriasVersionAnteriorTableLayoutPanel.PerformLayout();
datosGeneralesTabPage.ResumeLayout(false);
this.asignacionGroupBox.ResumeLayout(false);
this.datosProyectoGroupBox.ResumeLayout(false);
this.tableLayoutPanel4.ResumeLayout(false);
this.tableLayoutPanel4.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.panel2.ResumeLayout(false);
this.contextMenuStrip.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
this.ResumeLayout(false);
}
示例6: InitializeComponent
//.........这里部分代码省略.........
// 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();
}
示例7: 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);
}
示例8: InitializeComponent
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WizardPageDbGenSummary));
System.Windows.Forms.TabPage CreateDatabaseTabDDL;
System.Windows.Forms.Label lblSaveDdlAs;
this.txtDDL = new System.Windows.Forms.TextBox();
this.SummaryTabs = new System.Windows.Forms.TabControl();
this.txtSaveDdlAs = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
CreateDatabaseTabDDL = new System.Windows.Forms.TabPage();
lblSaveDdlAs = new System.Windows.Forms.Label();
CreateDatabaseTabDDL.SuspendLayout();
this.SummaryTabs.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// infoPanel
//
resources.ApplyResources(this.infoPanel, "infoPanel");
//
// CreateDatabaseTabDDL
//
CreateDatabaseTabDDL.Controls.Add(this.txtDDL);
resources.ApplyResources(CreateDatabaseTabDDL, "CreateDatabaseTabDDL");
CreateDatabaseTabDDL.Name = "CreateDatabaseTabDDL";
CreateDatabaseTabDDL.UseVisualStyleBackColor = true;
//
// txtDDL
//
resources.ApplyResources(this.txtDDL, "txtDDL");
this.txtDDL.BackColor = System.Drawing.SystemColors.Window;
this.txtDDL.Name = "txtDDL";
this.txtDDL.ReadOnly = true;
//
// lblSaveDdlAs
//
resources.ApplyResources(lblSaveDdlAs, "lblSaveDdlAs");
lblSaveDdlAs.Name = "lblSaveDdlAs";
//
// SummaryTabs
//
resources.ApplyResources(this.SummaryTabs, "SummaryTabs");
this.SummaryTabs.Controls.Add(CreateDatabaseTabDDL);
this.SummaryTabs.Name = "SummaryTabs";
this.SummaryTabs.SelectedIndex = 0;
//
// txtSaveDdlAs
//
resources.ApplyResources(this.txtSaveDdlAs, "txtSaveDdlAs");
this.txtSaveDdlAs.Name = "txtSaveDdlAs";
this.txtSaveDdlAs.TextChanged += new System.EventHandler(this.txtSaveDdlAs_TextChanged);
//
// tableLayoutPanel1
//
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
this.tableLayoutPanel1.Controls.Add(lblSaveDdlAs, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.txtSaveDdlAs, 1, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
//
// WizardPageDbGenSummary
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tableLayoutPanel1);
this.Controls.Add(this.SummaryTabs);
this.Name = "WizardPageDbGenSummary";
this.Controls.SetChildIndex(this.infoPanel, 0);
this.Controls.SetChildIndex(this.SummaryTabs, 0);
this.Controls.SetChildIndex(this.tableLayoutPanel1, 0);
CreateDatabaseTabDDL.ResumeLayout(false);
CreateDatabaseTabDDL.PerformLayout();
this.SummaryTabs.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例9: InitializeComponent
//.........这里部分代码省略.........
//
this.guiCalculatedSkillDamage_Cold.Location = new System.Drawing.Point(154, 57);
this.guiCalculatedSkillDamage_Cold.Name = "guiCalculatedSkillDamage_Cold";
this.guiCalculatedSkillDamage_Cold.ReadOnly = true;
this.guiCalculatedSkillDamage_Cold.Size = new System.Drawing.Size(70, 20);
this.guiCalculatedSkillDamage_Cold.TabIndex = 55;
//
// tabItemEditor
//
this.tabItemEditor.Controls.Add(groupBox11);
this.tabItemEditor.Controls.Add(this.guiItemEditor);
this.tabItemEditor.Location = new System.Drawing.Point(4, 22);
this.tabItemEditor.Name = "tabItemEditor";
this.tabItemEditor.Padding = new System.Windows.Forms.Padding(3);
this.tabItemEditor.Size = new System.Drawing.Size(1026, 576);
this.tabItemEditor.TabIndex = 18;
this.tabItemEditor.Text = "Items Editor";
this.tabItemEditor.UseVisualStyleBackColor = true;
//
// guiItemEditor
//
this.guiItemEditor.AutoSize = true;
this.guiItemEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.guiItemEditor.KnownGems = null;
this.guiItemEditor.Location = new System.Drawing.Point(171, 6);
this.guiItemEditor.Name = "guiItemEditor";
this.guiItemEditor.Size = new System.Drawing.Size(853, 531);
this.guiItemEditor.TabIndex = 1;
//
// tabSetBonus
//
this.tabSetBonus.Controls.Add(this.guiSetBonusEditor);
this.tabSetBonus.Location = new System.Drawing.Point(4, 22);
this.tabSetBonus.Name = "tabSetBonus";
this.tabSetBonus.Padding = new System.Windows.Forms.Padding(3);
this.tabSetBonus.Size = new System.Drawing.Size(1026, 576);
this.tabSetBonus.TabIndex = 16;
this.tabSetBonus.Text = "Set Bonus";
this.tabSetBonus.UseVisualStyleBackColor = true;
//
// guiSetBonusEditor
//
this.guiSetBonusEditor.AutoSize = true;
this.guiSetBonusEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.guiSetBonusEditor.KnownGems = null;
this.guiSetBonusEditor.Location = new System.Drawing.Point(6, 6);
this.guiSetBonusEditor.Name = "guiSetBonusEditor";
this.guiSetBonusEditor.Size = new System.Drawing.Size(853, 531);
this.guiSetBonusEditor.TabIndex = 0;
//
// D3CalculatorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1034, 602);
this.Controls.Add(tacControl1);
this.Name = "D3CalculatorForm";
this.Text = "D3 Calculator by ZTn";
tabPassiveSkills.ResumeLayout(false);
groupBox9.ResumeLayout(false);
groupBox9.PerformLayout();
groupBox8.ResumeLayout(false);
groupBox8.PerformLayout();
groupBox7.ResumeLayout(false);
groupBox7.PerformLayout();
groupBox3.ResumeLayout(false);
groupBox3.PerformLayout();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
groupBox5.ResumeLayout(false);
groupBox5.PerformLayout();
groupBox4.ResumeLayout(false);
groupBox4.PerformLayout();
groupBoxBarbarianActiveSkills.ResumeLayout(false);
groupBoxBarbarianActiveSkills.PerformLayout();
groupBoxMonkActiveSkills.ResumeLayout(false);
groupBoxMonkActiveSkills.PerformLayout();
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
groupBox10.ResumeLayout(false);
groupBox10.PerformLayout();
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
tabActiveSkills.ResumeLayout(false);
groupBox12.ResumeLayout(false);
groupBox12.PerformLayout();
groupBox11.ResumeLayout(false);
tacControl1.ResumeLayout(false);
this.tabResults.ResumeLayout(false);
this.tabResults.PerformLayout();
groupBox14.ResumeLayout(false);
groupBox13.ResumeLayout(false);
groupBox13.PerformLayout();
this.tabItemEditor.ResumeLayout(false);
this.tabItemEditor.PerformLayout();
this.tabSetBonus.ResumeLayout(false);
this.tabSetBonus.PerformLayout();
this.ResumeLayout(false);
}
示例10: 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();
}
示例11: 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();
}
示例12: InitializeComponent
//.........这里部分代码省略.........
this.tabPlots.Enabled = false;
this.tabPlots.Location = new System.Drawing.Point(1, 0);
this.tabPlots.Margin = new System.Windows.Forms.Padding(0);
this.tabPlots.Name = "tabPlots";
this.tabPlots.Padding = new System.Drawing.Point(0, 0);
this.tabPlots.SelectedIndex = 0;
this.tabPlots.Size = new System.Drawing.Size(804, 517);
this.tabPlots.TabIndex = 1;
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 1;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel1, 0, 0);
this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 2;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(200, 100);
this.tableLayoutPanel2.TabIndex = 0;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.AutoSize = true;
this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.Controls.Add(lblName, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.Size = new System.Drawing.Size(200, 20);
this.tableLayoutPanel1.TabIndex = 5;
//
// tblDidgeComments
//
this.tblDidgeComments.ColumnCount = 2;
this.tblDidgeComments.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tblDidgeComments.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tblDidgeComments.Controls.Add(lblComments, 1, 0);
this.tblDidgeComments.Dock = System.Windows.Forms.DockStyle.Fill;
this.tblDidgeComments.Location = new System.Drawing.Point(0, 23);
this.tblDidgeComments.Margin = new System.Windows.Forms.Padding(0, 3, 0, 0);
this.tblDidgeComments.Name = "tblDidgeComments";
this.tblDidgeComments.RowCount = 2;
this.tblDidgeComments.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblDidgeComments.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblDidgeComments.Size = new System.Drawing.Size(200, 77);
this.tblDidgeComments.TabIndex = 6;
//
// DidjImpApp
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(976, 542);
this.Controls.Add(this.splitMain);
this.Controls.Add(menuMain);
this.Name = "DidjImpApp";
this.Padding = new System.Windows.Forms.Padding(2, 0, 0, 1);
this.Text = "DidjImp";
this.Load += new System.EventHandler(this.DidjImpApp_Load);
tblTreeAndDimension.ResumeLayout(false);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.Panel2.PerformLayout();
this.splitContainer1.ResumeLayout(false);
tabPageImpedance.ResumeLayout(false);
tabPageImpedance.PerformLayout();
pnlImpedancePlot.ResumeLayout(false);
pnlImpedanceTools.ResumeLayout(false);
pnlImpedanceTools.PerformLayout();
pnlImpedanceShowHarmonics.ResumeLayout(false);
pnlImpedanceShowHarmonics.PerformLayout();
pnlImpedanceGraphType.ResumeLayout(false);
pnlImpedanceGraphType.PerformLayout();
tabBore.ResumeLayout(false);
tabBore.PerformLayout();
pnlBoreTools.ResumeLayout(false);
menuMain.ResumeLayout(false);
menuMain.PerformLayout();
this.splitMain.Panel1.ResumeLayout(false);
this.splitMain.Panel2.ResumeLayout(false);
this.splitMain.ResumeLayout(false);
this.tabPlots.ResumeLayout(false);
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel2.PerformLayout();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.tblDidgeComments.ResumeLayout(false);
this.tblDidgeComments.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例13: 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();
}
示例14: InitializeComponent
//.........这里部分代码省略.........
// serverToolStripMenuItem
//
serverToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
getSymbolsAndQuotesToolStripMenuItem});
serverToolStripMenuItem.Name = "serverToolStripMenuItem";
serverToolStripMenuItem.Size = new System.Drawing.Size(51, 20);
serverToolStripMenuItem.Text = "Server";
//
// getSymbolsAndQuotesToolStripMenuItem
//
getSymbolsAndQuotesToolStripMenuItem.Name = "getSymbolsAndQuotesToolStripMenuItem";
getSymbolsAndQuotesToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
getSymbolsAndQuotesToolStripMenuItem.Text = "Get Symbols and Quotes";
getSymbolsAndQuotesToolStripMenuItem.Click += new System.EventHandler(this.OnGetSymbolsAndQuotes);
//
// label1
//
label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
label1.AutoSize = true;
label1.Location = new System.Drawing.Point(234, 423);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(84, 13);
label1.TabIndex = 5;
label1.Text = "Calculation time:";
//
// m_calculate
//
this.m_calculate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.m_calculate.Location = new System.Drawing.Point(24, 418);
this.m_calculate.Name = "m_calculate";
this.m_calculate.Size = new System.Drawing.Size(75, 23);
this.m_calculate.TabIndex = 2;
this.m_calculate.Text = "Calculate";
this.m_calculate.UseVisualStyleBackColor = true;
this.m_calculate.Click += new System.EventHandler(this.OnCalculate);
//
// m_clear
//
this.m_clear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.m_clear.Location = new System.Drawing.Point(129, 418);
this.m_clear.Name = "m_clear";
this.m_clear.Size = new System.Drawing.Size(75, 23);
this.m_clear.TabIndex = 3;
this.m_clear.Text = "Clear";
this.m_clear.UseVisualStyleBackColor = true;
this.m_clear.Click += new System.EventHandler(this.OnClear);
//
// m_openFileDialog
//
this.m_openFileDialog.Filter = "TXT files|*.txt|All files|*.*";
//
// m_saveFileDialog
//
this.m_saveFileDialog.Filter = "TXT files|*.txt|All files|*.*";
//
// m_calculationTime
//
this.m_calculationTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.m_calculationTime.Location = new System.Drawing.Point(340, 421);
this.m_calculationTime.Name = "m_calculationTime";
this.m_calculationTime.ReadOnly = true;
this.m_calculationTime.Size = new System.Drawing.Size(100, 20);
this.m_calculationTime.TabIndex = 6;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(784, 461);
this.Controls.Add(this.m_calculationTime);
this.Controls.Add(label1);
this.Controls.Add(mainMenu);
this.Controls.Add(this.m_clear);
this.Controls.Add(this.m_calculate);
this.Controls.Add(m_tabs);
this.MainMenuStrip = mainMenu;
this.MinimumSize = new System.Drawing.Size(800, 200);
this.Name = "MainForm";
this.Text = "Financial Example";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing);
m_tabs.ResumeLayout(false);
calculatorTab.ResumeLayout(false);
symbolsTab.ResumeLayout(false);
tableLayoutPanel2.ResumeLayout(false);
this.m_symbolsContextMenu.ResumeLayout(false);
this.currenciesTab.ResumeLayout(false);
m_currenciesContextMenu.ResumeLayout(false);
this.quotesTab.ResumeLayout(false);
this.tableLayoutPanel3.ResumeLayout(false);
this.m_quotesContextMenu.ResumeLayout(false);
accountsAndTradesTab.ResumeLayout(false);
tableLayoutPanel1.ResumeLayout(false);
this.m_acccountsContextMenu.ResumeLayout(false);
this.m_tradesContextMenu.ResumeLayout(false);
mainMenu.ResumeLayout(false);
mainMenu.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例15: InitializeComponent
//.........这里部分代码省略.........
//
tabActiveSkills.Controls.Add(groupBoxBarbarianActiveSkills);
tabActiveSkills.Controls.Add(groupBoxMonkActiveSkills);
tabActiveSkills.Location = new System.Drawing.Point(4, 22);
tabActiveSkills.Name = "tabActiveSkills";
tabActiveSkills.Size = new System.Drawing.Size(1026, 576);
tabActiveSkills.TabIndex = 14;
tabActiveSkills.Text = "Active Skills";
tabActiveSkills.UseVisualStyleBackColor = true;
//
// tabSpecial
//
this.tabSpecial.Controls.Add(this.guiSpecialEditor);
this.tabSpecial.Location = new System.Drawing.Point(4, 22);
this.tabSpecial.Name = "tabSpecial";
this.tabSpecial.Padding = new System.Windows.Forms.Padding(3);
this.tabSpecial.Size = new System.Drawing.Size(1026, 576);
this.tabSpecial.TabIndex = 17;
this.tabSpecial.Text = "Special";
this.tabSpecial.UseVisualStyleBackColor = true;
//
// guiSpecialEditor
//
this.guiSpecialEditor.AutoSize = true;
this.guiSpecialEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.guiSpecialEditor.KnownGems = null;
this.guiSpecialEditor.Location = new System.Drawing.Point(6, 6);
this.guiSpecialEditor.Name = "guiSpecialEditor";
this.guiSpecialEditor.Size = new System.Drawing.Size(708, 531);
this.guiSpecialEditor.TabIndex = 0;
//
// D3CalculatorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1034, 602);
this.Controls.Add(this.tacControl1);
this.Name = "D3CalculatorForm";
this.Text = "D3 Calculator by ZTn";
tabPassiveSkills.ResumeLayout(false);
groupBox9.ResumeLayout(false);
groupBox9.PerformLayout();
groupBox8.ResumeLayout(false);
groupBox8.PerformLayout();
groupBox7.ResumeLayout(false);
groupBox7.PerformLayout();
groupBox3.ResumeLayout(false);
groupBox3.PerformLayout();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
groupBox5.ResumeLayout(false);
groupBox5.PerformLayout();
groupBox4.ResumeLayout(false);
groupBox4.PerformLayout();
groupBoxBarbarianActiveSkills.ResumeLayout(false);
groupBoxBarbarianActiveSkills.PerformLayout();
groupBoxMonkActiveSkills.ResumeLayout(false);
groupBoxMonkActiveSkills.PerformLayout();
this.tabSetBonus.ResumeLayout(false);
this.tabSetBonus.PerformLayout();
tabMainHand.ResumeLayout(false);
tabMainHand.PerformLayout();
tabOffHand.ResumeLayout(false);
tabOffHand.PerformLayout();
tabLeftFinger.ResumeLayout(false);
tabLeftFinger.PerformLayout();
tabRightFinger.ResumeLayout(false);
tabRightFinger.PerformLayout();
tabNeck.ResumeLayout(false);
tabNeck.PerformLayout();
this.tabHead.ResumeLayout(false);
this.tabHead.PerformLayout();
this.tabShoulders.ResumeLayout(false);
this.tabShoulders.PerformLayout();
this.tabBracers.ResumeLayout(false);
this.tabBracers.PerformLayout();
this.tabHands.ResumeLayout(false);
this.tabHands.PerformLayout();
this.tabTorso.ResumeLayout(false);
this.tabTorso.PerformLayout();
this.tabWaist.ResumeLayout(false);
this.tabWaist.PerformLayout();
this.tabLegs.ResumeLayout(false);
this.tabLegs.PerformLayout();
this.tabFeet.ResumeLayout(false);
this.tabFeet.PerformLayout();
tabResults.ResumeLayout(false);
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
groupBox10.ResumeLayout(false);
groupBox10.PerformLayout();
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
this.tacControl1.ResumeLayout(false);
tabActiveSkills.ResumeLayout(false);
this.tabSpecial.ResumeLayout(false);
this.tabSpecial.PerformLayout();
this.ResumeLayout(false);
}