本文整理汇总了C#中System.Windows.Forms.TabPage类的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.TabPage类的具体用法?C# System.Windows.Forms.TabPage怎么用?C# System.Windows.Forms.TabPage使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
System.Windows.Forms.TabPage类属于命名空间,在下文中一共展示了System.Windows.Forms.TabPage类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeComponent
private void InitializeComponent()
{
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage = new System.Windows.Forms.TabPage();
this.browser = new System.Windows.Forms.WebBrowser();
this.chbDisplayAll = new System.Windows.Forms.CheckBox();
this.tabControl1.SuspendLayout();
this.tabPage.SuspendLayout();
this.SuspendLayout();
this.tabControl1.Controls.Add(this.tabPage);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 0);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(300, 300);
this.tabControl1.TabIndex = 0;
this.tabPage.BackColor = System.Drawing.SystemColors.Control;
this.tabPage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.tabPage.Controls.Add(this.browser);
this.tabPage.Controls.Add(this.chbDisplayAll);
this.tabPage.Location = new System.Drawing.Point(4, 22);
this.tabPage.Name = "tabPage";
this.tabPage.Padding = new System.Windows.Forms.Padding(3);
this.tabPage.Size = new System.Drawing.Size(292, 274);
this.tabPage.TabIndex = 0;
this.tabPage.Text = "Release Notes";
this.browser.AllowWebBrowserDrop = false;
this.browser.Dock = System.Windows.Forms.DockStyle.Fill;
this.browser.IsWebBrowserContextMenuEnabled = false;
this.browser.Location = new System.Drawing.Point(3, 3);
this.browser.MinimumSize = new System.Drawing.Size(20, 20);
this.browser.Name = "browser";
this.browser.ScriptErrorsSuppressed = true;
this.browser.Size = new System.Drawing.Size(282, 240);
this.browser.TabIndex = 0;
this.browser.WebBrowserShortcutsEnabled = false;
this.browser.Navigating += new System.Windows.Forms.WebBrowserNavigatingEventHandler(this.browser_Navigating);
this.chbDisplayAll.Dock = System.Windows.Forms.DockStyle.Bottom;
this.chbDisplayAll.Location = new System.Drawing.Point(3, 243);
this.chbDisplayAll.Name = "chbDisplayAll";
this.chbDisplayAll.Size = new System.Drawing.Size(282, 24);
this.chbDisplayAll.TabIndex = 1;
this.chbDisplayAll.Text = "Display all";
this.chbDisplayAll.UseVisualStyleBackColor = true;
this.chbDisplayAll.CheckedChanged += new EventHandler(this.chbDisplayAll_CheckedChanged);
this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tabControl1);
this.Name = "ReleaseNotesControl";
this.Size = new System.Drawing.Size(300, 300);
this.tabControl1.ResumeLayout(false);
this.tabPage.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.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);
}
示例3: InitializeComponent
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.tabControl1.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Location = new System.Drawing.Point(4, 6);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(335, 107);
this.tabControl1.TabIndex = 0;
this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
//
// tabPage1
//
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(327, 81);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "C#编程词典——全能版";
this.tabPage1.UseVisualStyleBackColor = true;
//
// tabPage2
//
this.tabPage2.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(327, 81);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "C#编程词典——珍藏版";
this.tabPage2.UseVisualStyleBackColor = true;
//
// Frm_Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(344, 114);
this.Controls.Add(this.tabControl1);
this.Name = "Frm_Main";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "获取选中的选项卡名称";
this.Load += new System.EventHandler(this.Form1_Load);
this.tabControl1.ResumeLayout(false);
this.ResumeLayout(false);
}
示例4: 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);
}
示例5: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.tbControlSMSF = new System.Windows.Forms.TabControl();
this.tbTimeLine = new System.Windows.Forms.TabPage();
this.tbMakePost = new System.Windows.Forms.TabPage();
this.tbControlSMSF.SuspendLayout();
this.SuspendLayout();
//
// tbControlSMSF
//
this.tbControlSMSF.Controls.Add(this.tbTimeLine);
this.tbControlSMSF.Controls.Add(this.tbMakePost);
this.tbControlSMSF.Location = new System.Drawing.Point(12, 12);
this.tbControlSMSF.Name = "tbControlSMSF";
this.tbControlSMSF.SelectedIndex = 0;
this.tbControlSMSF.Size = new System.Drawing.Size(713, 659);
this.tbControlSMSF.TabIndex = 0;
//
// tbTimeLine
//
this.tbTimeLine.Location = new System.Drawing.Point(4, 22);
this.tbTimeLine.Name = "tbTimeLine";
this.tbTimeLine.Padding = new System.Windows.Forms.Padding(3);
this.tbTimeLine.Size = new System.Drawing.Size(705, 633);
this.tbTimeLine.TabIndex = 0;
this.tbTimeLine.Text = "Tijdlijn";
this.tbTimeLine.UseVisualStyleBackColor = true;
//
// tbMakePost
//
this.tbMakePost.Location = new System.Drawing.Point(4, 22);
this.tbMakePost.Name = "tbMakePost";
this.tbMakePost.Padding = new System.Windows.Forms.Padding(3);
this.tbMakePost.Size = new System.Drawing.Size(801, 410);
this.tbMakePost.TabIndex = 1;
this.tbMakePost.Text = "Post aanmaken";
this.tbMakePost.UseVisualStyleBackColor = true;
//
// SocialMediaSystemForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(736, 683);
this.Controls.Add(this.tbControlSMSF);
this.Name = "SocialMediaSystemForm";
this.Text = "SocialMediaSystemFormcs";
this.Load += new System.EventHandler(this.SocialMediaSystemForm_Load);
this.tbControlSMSF.ResumeLayout(false);
this.ResumeLayout(false);
}
示例6: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.faTabStrip1 = new System.Windows.Forms.TabControl();
this.faTabStripItemInfo = new System.Windows.Forms.TabPage();
this.label10 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.faTabStripItemSend = new System.Windows.Forms.TabPage();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.cmdClearSend = new System.Windows.Forms.Button();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.lblStatus = new System.Windows.Forms.Label();
this.cmdSend = new System.Windows.Forms.Button();
this.lblTeleLength = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.label7 = new System.Windows.Forms.Label();
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
this.panel4 = new System.Windows.Forms.Panel();
this.lblLenEmpf = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
this.splitContainer3 = new System.Windows.Forms.SplitContainer();
this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
this.lstStoredSenddata = new System.Windows.Forms.ListBox();
this.panel3 = new System.Windows.Forms.Panel();
this.cmdRemoveSendeTele = new System.Windows.Forms.Button();
this.cmdAddSendeTele = new System.Windows.Forms.Button();
this.dtaSendTabelle = new System.Windows.Forms.DataGridView();
this.Bezeichnung = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Laenge = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Wert = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.splitContainer4 = new System.Windows.Forms.SplitContainer();
this.dtaSendSendTable = new System.Windows.Forms.DataGridView();
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dtaSendQuittTable = new System.Windows.Forms.DataGridView();
this.colSendQuittText = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.faTabStripItemRecieve = new System.Windows.Forms.TabPage();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.kryptonButton2 = new System.Windows.Forms.Button();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.grdEmpfang = new System.Windows.Forms.DataGridView();
this.colEmpf = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dtaEmpfangstelegrammAufgeschluesselt = new System.Windows.Forms.DataGridView();
this.colEmpfBezeichnung = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colEmpfLaenge = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colEmpfWert = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.faTabStripItemSettings = new System.Windows.Forms.TabPage();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.label5 = new System.Windows.Forms.Label();
this.cmdDelTele = new System.Windows.Forms.Button();
this.cmdEditQuittFields = new System.Windows.Forms.Button();
this.lstQuitt = new System.Windows.Forms.ListBox();
this.chkAutoQuitt = new System.Windows.Forms.CheckBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.numSequenceNumberLength = new System.Windows.Forms.NumericUpDown();
this.numSequenceNumberPosition = new System.Windows.Forms.NumericUpDown();
this.label4 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.chkChanel2active = new System.Windows.Forms.CheckBox();
this.numPort2 = new System.Windows.Forms.NumericUpDown();
this.numPort1 = new System.Windows.Forms.NumericUpDown();
this.lblKanal2Port = new System.Windows.Forms.Label();
this.chkChanel1active = new System.Windows.Forms.CheckBox();
this.lblKanal2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.optTwoChannel = new System.Windows.Forms.RadioButton();
this.optOneChannel = new System.Windows.Forms.RadioButton();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.ipAddressControl = new IPAddressControlLib.IPAddressControl();
this.cmdSelectStep7UDT = new System.Windows.Forms.Button();
this.cmdConnect = new System.Windows.Forms.Button();
this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
this.panel1 = new System.Windows.Forms.Panel();
this.cmdSettExport = new System.Windows.Forms.Button();
this.cmdSettImport = new System.Windows.Forms.Button();
this.cmdSettingsSave = new System.Windows.Forms.Button();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.picConnection1 = new System.Windows.Forms.PictureBox();
this.picConnection2 = new System.Windows.Forms.PictureBox();
this.cmdDisconnect = new System.Windows.Forms.Button();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.faTabStrip1.SuspendLayout();
this.faTabStripItemInfo.SuspendLayout();
this.faTabStripItemSend.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
this.panel4.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
this.splitContainer2.Panel1.SuspendLayout();
this.splitContainer2.Panel2.SuspendLayout();
//.........这里部分代码省略.........
示例7: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Mapper));
this.tabMob = new System.Windows.Forms.TabPage();
this.btnNewMob = new System.Windows.Forms.Button();
this.btnAddObject = new System.Windows.Forms.Button();
this.lblMobs = new System.Windows.Forms.Label();
this.lblLoadingObjects = new System.Windows.Forms.Label();
this.panel7 = new System.Windows.Forms.Panel();
this.btnRemoveLoad = new System.Windows.Forms.Button();
this.lbLoads = new System.Windows.Forms.ListBox();
this.btnAddLoad = new System.Windows.Forms.Button();
this.cboAllObjects = new System.Windows.Forms.ComboBox();
this.lblMobLoadingObjects = new System.Windows.Forms.Label();
this.btnObjDetail = new System.Windows.Forms.Button();
this.btnHighlightSpawns = new System.Windows.Forms.Button();
this.panel6 = new System.Windows.Forms.Panel();
this.btnRemoveSpawn = new System.Windows.Forms.Button();
this.lbSpawns = new System.Windows.Forms.ListBox();
this.btnAddSpawn = new System.Windows.Forms.Button();
this.cboAllMobs = new System.Windows.Forms.ComboBox();
this.lblMobsInRoom = new System.Windows.Forms.Label();
this.btnMobDetail = new System.Windows.Forms.Button();
this.lblMobRoomName = new System.Windows.Forms.Label();
this.lblMobCurrentVNUM = new System.Windows.Forms.Label();
this.lblMobVNUMPrompt = new System.Windows.Forms.Label();
this.lblMobCurrentRoom = new System.Windows.Forms.Label();
this.lblMobCurrentRoomPrompt = new System.Windows.Forms.Label();
this.lblMobGeneral = new System.Windows.Forms.Label();
this.panel5 = new System.Windows.Forms.Panel();
this.lblQuickMobID = new System.Windows.Forms.Label();
this.lblQuickMobVNUM = new System.Windows.Forms.Label();
this.lblQuickMobName = new System.Windows.Forms.Label();
this.cboMaxExisting = new System.Windows.Forms.ComboBox();
this.lblMaxExisting = new System.Windows.Forms.Label();
this.lblMobVNUM = new System.Windows.Forms.Label();
this.lblMobName = new System.Windows.Forms.Label();
this.tabRoom = new System.Windows.Forms.TabPage();
this.pnlRoomDetail = new System.Windows.Forms.Panel();
this.btnCopyRoom = new System.Windows.Forms.Button();
this.lblRoomRoomNumber = new System.Windows.Forms.Label();
this.lblDetailRoomNumber = new System.Windows.Forms.Label();
this.btnSaveRoom = new System.Windows.Forms.Button();
this.cboSector = new System.Windows.Forms.ComboBox();
this.txtVNUM = new System.Windows.Forms.TextBox();
this.txtRoomName = new System.Windows.Forms.TextBox();
this.txtExtraDescKeywords = new System.Windows.Forms.TextBox();
this.txtExtraDescription = new System.Windows.Forms.TextBox();
this.txtDownExit = new System.Windows.Forms.TextBox();
this.txtUpExit = new System.Windows.Forms.TextBox();
this.txtWestExit = new System.Windows.Forms.TextBox();
this.txtEastExit = new System.Windows.Forms.TextBox();
this.txtSouthExit = new System.Windows.Forms.TextBox();
this.txtNorthExit = new System.Windows.Forms.TextBox();
this.lblDownExit = new System.Windows.Forms.Label();
this.lblUpExit = new System.Windows.Forms.Label();
this.lblWestExit = new System.Windows.Forms.Label();
this.lblEastExit = new System.Windows.Forms.Label();
this.lblSouthExit = new System.Windows.Forms.Label();
this.lblNorthExit = new System.Windows.Forms.Label();
this.lblExtraDescription = new System.Windows.Forms.Label();
this.lblExtraDescKeywords = new System.Windows.Forms.Label();
this.txtRoomDescription = new System.Windows.Forms.TextBox();
this.lblRoomDescription = new System.Windows.Forms.Label();
this.lblTerrain = new System.Windows.Forms.Label();
this.lblRoomName = new System.Windows.Forms.Label();
this.lblRoomVNUM = new System.Windows.Forms.Label();
this.lblButtonName = new System.Windows.Forms.Label();
this.lblIndoors = new System.Windows.Forms.Label();
this.btnIndoors = new System.Windows.Forms.Button();
this.tabControl = new System.Windows.Forms.TabControl();
this.tabArea = new System.Windows.Forms.TabPage();
this.lblMapConfigLabel = new System.Windows.Forms.Label();
this.pnlMapConfig = new System.Windows.Forms.Panel();
this.chkAutoMap = new System.Windows.Forms.CheckBox();
this.lblDefault = new System.Windows.Forms.Label();
this.btnDefault = new System.Windows.Forms.Button();
this.lblRoomCount = new System.Windows.Forms.Label();
this.lblZoomViewLabel = new System.Windows.Forms.Label();
this.lblRoomCountLabel = new System.Windows.Forms.Label();
this.lblOverviewRoomName = new System.Windows.Forms.Label();
this.lblDoorSection = new System.Windows.Forms.Label();
this.pnlZoom = new System.Windows.Forms.Panel();
this.btnDoorWest = new System.Windows.Forms.Button();
this.btnDoorDown = new System.Windows.Forms.Button();
this.btnDoorSouth = new System.Windows.Forms.Button();
this.btnDoorEast = new System.Windows.Forms.Button();
this.btnDoorUp = new System.Windows.Forms.Button();
this.btnDoorNorth = new System.Windows.Forms.Button();
this.btnZoomDown = new System.Windows.Forms.PictureBox();
this.btnZoomUp = new System.Windows.Forms.PictureBox();
this.lblZ = new System.Windows.Forms.Label();
this.lblY = new System.Windows.Forms.Label();
this.lblX = new System.Windows.Forms.Label();
this.lblCoordZ = new System.Windows.Forms.Label();
this.lblCoordY = new System.Windows.Forms.Label();
//.........这里部分代码省略.........
示例8: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
this.toolStripRequest = new System.Windows.Forms.ToolStrip();
this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
this.toolStripComboBoxProtocol = new System.Windows.Forms.ToolStripComboBox();
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
this.toolStripComboBoxMethod = new System.Windows.Forms.ToolStripComboBox();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
this.toolStripTextBoxURL = new System.Windows.Forms.ToolStripTextBox();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButtonCookies = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButtonAuthType = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButtonSendRequest = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.splitContainer4 = new System.Windows.Forms.SplitContainer();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.comboBoxRequestHeaders = new System.Windows.Forms.ComboBox();
this.buttonAddToList = new System.Windows.Forms.Button();
this.textBoxHeaderValue = new System.Windows.Forms.TextBox();
this.listViewRequestHeaders = new System.Windows.Forms.ListView();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.buttonDeleteHeader = new System.Windows.Forms.Button();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.richTextBoxPOST = new System.Windows.Forms.RichTextBox();
this.tabControl4 = new System.Windows.Forms.TabControl();
this.tabPage5 = new System.Windows.Forms.TabPage();
this.listViewResponseHeaders = new System.Windows.Forms.ListView();
this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
this.tabPage6 = new System.Windows.Forms.TabPage();
this.richTextBoxSource = new System.Windows.Forms.RichTextBox();
this.tabPage7 = new System.Windows.Forms.TabPage();
this.webBrowserSource = new System.Windows.Forms.WebBrowser();
this.splitContainer3 = new System.Windows.Forms.SplitContainer();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.splitContainer2.Panel1.SuspendLayout();
this.splitContainer2.Panel2.SuspendLayout();
this.splitContainer2.SuspendLayout();
this.toolStripRequest.SuspendLayout();
this.splitContainer4.Panel1.SuspendLayout();
this.splitContainer4.Panel2.SuspendLayout();
this.splitContainer4.SuspendLayout();
this.groupBox2.SuspendLayout();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.groupBox3.SuspendLayout();
this.tabControl4.SuspendLayout();
this.tabPage5.SuspendLayout();
this.tabPage6.SuspendLayout();
this.tabPage7.SuspendLayout();
this.splitContainer3.Panel1.SuspendLayout();
this.splitContainer3.Panel2.SuspendLayout();
this.splitContainer3.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 0);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(912, 313);
this.tabControl1.TabIndex = 0;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.splitContainer2);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(904, 287);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Request";
this.tabPage1.UseVisualStyleBackColor = true;
//
// splitContainer2
//
this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer2.Location = new System.Drawing.Point(3, 3);
this.splitContainer2.Name = "splitContainer2";
this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer2.Panel1
//
//.........这里部分代码省略.........
示例9: InitializeComponent
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.DirectoryDialog = new System.Windows.Forms.FolderBrowserDialog();
this.ExportDialog = new System.Windows.Forms.SaveFileDialog();
this.ImportDialog = new System.Windows.Forms.OpenFileDialog();
this.HideIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.HideMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ShowForm = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.AbuotForm = new System.Windows.Forms.ToolStripMenuItem();
this.ExitForm = new System.Windows.Forms.ToolStripMenuItem();
this.MainMenu = new System.Windows.Forms.MenuStrip();
this.MenuFile = new System.Windows.Forms.ToolStripMenuItem();
this.OpenFolder = new System.Windows.Forms.ToolStripMenuItem();
this.lastFoldersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.exit = new System.Windows.Forms.ToolStripMenuItem();
this.MenuService = new System.Windows.Forms.ToolStripMenuItem();
this.fastST = new System.Windows.Forms.ToolStripMenuItem();
this.l2ini = new System.Windows.Forms.ToolStripMenuItem();
this.pathSystem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.Settings = new System.Windows.Forms.ToolStripMenuItem();
this.MenuAbout = new System.Windows.Forms.ToolStripMenuItem();
this.StatusProgress = new System.Windows.Forms.ProgressBar();
this.RightClick = new System.Windows.Forms.ContextMenuStrip(this.components);
this.CutR = new System.Windows.Forms.ToolStripMenuItem();
this.CopyR = new System.Windows.Forms.ToolStripMenuItem();
this.PasteR = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.SelectAll = new System.Windows.Forms.ToolStripMenuItem();
this.path = new System.Windows.Forms.Label();
this.StatusLabel = new System.Windows.Forms.Label();
this.ChLabel = new System.Windows.Forms.Label();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.ChronicleInfo = new System.Windows.Forms.Label();
this.FileDialog = new System.Windows.Forms.OpenFileDialog();
this.ColorDialog = new System.Windows.Forms.ColorDialog();
this.IniTab = new System.Windows.Forms.TabPage();
this.NumLines = new System.Windows.Forms.Label();
this.Counts = new System.Windows.Forms.Label();
this.EncText = new System.Windows.Forms.Label();
this.EnCod = new System.Windows.Forms.Label();
this.FileIniComboName = new System.Windows.Forms.ComboBox();
this.clearl2ini = new System.Windows.Forms.Button();
this.savel2ini = new System.Windows.Forms.Button();
this.IniTextBox = new System.Windows.Forms.RichTextBox();
this.OpenL2iniText = new System.Windows.Forms.Button();
this.DatTab = new System.Windows.Forms.TabPage();
this._mergeButton = new com.jds.PathEditor.classes.gui.JButton();
this.lockBtn = new System.Windows.Forms.CheckBox();
this.editorBtn = new com.jds.PathEditor.classes.gui.JButton();
this.startBtn2 = new com.jds.PathEditor.classes.gui.JButton();
this.exportBtn2 = new com.jds.PathEditor.classes.gui.JButton();
this.importBtn2 = new com.jds.PathEditor.classes.gui.JButton();
this.SaveBtn2 = new com.jds.PathEditor.classes.gui.JButton();
this.LoadBtn2 = new com.jds.PathEditor.classes.gui.JButton();
this.FileNameCombo = new System.Windows.Forms.ListBox();
this.Tabs = new System.Windows.Forms.TabControl();
this.HideMenu.SuspendLayout();
this.MainMenu.SuspendLayout();
this.RightClick.SuspendLayout();
this.IniTab.SuspendLayout();
this.DatTab.SuspendLayout();
this.Tabs.SuspendLayout();
this.SuspendLayout();
//
// DirectoryDialog
//
this.DirectoryDialog.Description = "Choose directory where LineageII System.";
this.DirectoryDialog.ShowNewFolderButton = false;
//
// HideIcon
//
this.HideIcon.ContextMenuStrip = this.HideMenu;
this.HideIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("HideIcon.Icon")));
this.HideIcon.Tag = "Path Editor";
this.HideIcon.Text = "Path Editor";
this.HideIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.HideIcon_MouseDoubleClick);
//
// HideMenu
//
this.HideMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ShowForm,
this.toolStripSeparator4,
this.AbuotForm,
this.ExitForm});
this.HideMenu.Name = "HideMenu";
this.HideMenu.Size = new System.Drawing.Size(108, 76);
this.HideMenu.Text = "HideMenu";
//
// ShowForm
//
this.ShowForm.Name = "ShowForm";
this.ShowForm.Size = new System.Drawing.Size(107, 22);
this.ShowForm.Text = "Show";
this.ShowForm.Click += new System.EventHandler(this.ShowForm_Click);
//
//.........这里部分代码省略.........
示例10: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fGetAssembly));
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.pBFrontImage = new System.Windows.Forms.PictureBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.panel1 = new System.Windows.Forms.Panel();
this.dTPCreatorGet = new System.Windows.Forms.DateTimePicker();
this.label8 = new System.Windows.Forms.Label();
this.tBCreatorSurname = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.dTPCustomerReturn = new System.Windows.Forms.DateTimePicker();
this.label7 = new System.Windows.Forms.Label();
this.tBCustomerSurname = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.pnlFooter = new System.Windows.Forms.Panel();
this.bttnPrev = new System.Windows.Forms.Button();
this.bttnNext = new System.Windows.Forms.Button();
this.bttnCancel = new System.Windows.Forms.Button();
this.pnlHeader = new System.Windows.Forms.Panel();
this.lblHeader = new System.Windows.Forms.Label();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pBFrontImage)).BeginInit();
this.tabPage2.SuspendLayout();
this.panel1.SuspendLayout();
this.pnlFooter.SuspendLayout();
this.pnlHeader.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Location = new System.Drawing.Point(-7, -23);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(485, 261);
this.tabControl1.TabIndex = 0;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.pBFrontImage);
this.tabPage1.Controls.Add(this.label2);
this.tabPage1.Controls.Add(this.label3);
this.tabPage1.Controls.Add(this.label1);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(477, 235);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "tabPage1";
this.tabPage1.UseVisualStyleBackColor = true;
//
// pBFrontImage
//
this.pBFrontImage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pBFrontImage.Image = global::UchetUSP.Properties.Resources.masterImage;
this.pBFrontImage.Location = new System.Drawing.Point(-37, -9);
this.pBFrontImage.Name = "pBFrontImage";
this.pBFrontImage.Size = new System.Drawing.Size(196, 244);
this.pBFrontImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pBFrontImage.TabIndex = 12;
this.pBFrontImage.TabStop = false;
//
// label2
//
this.label2.Location = new System.Drawing.Point(191, 108);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(262, 31);
this.label2.TabIndex = 10;
this.label2.Text = "Этот мастер поможет принять сборку УСПО от заказчика с отрывным талоном к форме 2" +
"424.";
//
// label3
//
this.label3.Location = new System.Drawing.Point(191, 151);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(262, 31);
this.label3.TabIndex = 11;
this.label3.Text = "Для продолжения нажмите кнопку \"Далее\".";
//
// label1
//
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label1.Location = new System.Drawing.Point(191, 40);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(262, 46);
this.label1.TabIndex = 9;
this.label1.Text = "Мастер возврата оснастки на участок сборки УСПО";
//.........这里部分代码省略.........
示例11: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Welcome));
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.label12 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.room125Button = new System.Windows.Forms.Button();
this.room124Button = new System.Windows.Forms.Button();
this.room118Button = new System.Windows.Forms.Button();
this.room109Button = new System.Windows.Forms.Button();
this.room126Button = new System.Windows.Forms.Button();
this.room127Button = new System.Windows.Forms.Button();
this.room128Button = new System.Windows.Forms.Button();
this.room123Button = new System.Windows.Forms.Button();
this.room122Button = new System.Windows.Forms.Button();
this.room121Button = new System.Windows.Forms.Button();
this.room117Button = new System.Windows.Forms.Button();
this.room116Button = new System.Windows.Forms.Button();
this.rom115Button = new System.Windows.Forms.Button();
this.room108Button = new System.Windows.Forms.Button();
this.room107Button = new System.Windows.Forms.Button();
this.room106Button = new System.Windows.Forms.Button();
this.room129Button = new System.Windows.Forms.Button();
this.room130Button = new System.Windows.Forms.Button();
this.room120Button = new System.Windows.Forms.Button();
this.room119Button = new System.Windows.Forms.Button();
this.room114Button = new System.Windows.Forms.Button();
this.room113Button = new System.Windows.Forms.Button();
this.room112Button = new System.Windows.Forms.Button();
this.room111Button = new System.Windows.Forms.Button();
this.room110Button = new System.Windows.Forms.Button();
this.room105Button = new System.Windows.Forms.Button();
this.room104Button = new System.Windows.Forms.Button();
this.room102Button = new System.Windows.Forms.Button();
this.room103Button = new System.Windows.Forms.Button();
this.room101Button = new System.Windows.Forms.Button();
this.label10 = new System.Windows.Forms.Label();
this.label18 = new System.Windows.Forms.Label();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.room272Button = new System.Windows.Forms.Button();
this.room263Button = new System.Windows.Forms.Button();
this.room271Button = new System.Windows.Forms.Button();
this.room270Button = new System.Windows.Forms.Button();
this.room269Button = new System.Windows.Forms.Button();
this.room262Button = new System.Windows.Forms.Button();
this.room261Button = new System.Windows.Forms.Button();
this.room260Button = new System.Windows.Forms.Button();
this.room268Button = new System.Windows.Forms.Button();
this.room267Button = new System.Windows.Forms.Button();
this.room266Button = new System.Windows.Forms.Button();
this.room265Button = new System.Windows.Forms.Button();
this.room264Button = new System.Windows.Forms.Button();
this.room259Button = new System.Windows.Forms.Button();
this.room258Button = new System.Windows.Forms.Button();
this.room256Button = new System.Windows.Forms.Button();
this.room257Button = new System.Windows.Forms.Button();
this.room255Button = new System.Windows.Forms.Button();
this.room254Button = new System.Windows.Forms.Button();
this.room245Button = new System.Windows.Forms.Button();
this.room253Button = new System.Windows.Forms.Button();
this.room252Button = new System.Windows.Forms.Button();
this.room251Button = new System.Windows.Forms.Button();
this.room244Button = new System.Windows.Forms.Button();
this.room243Button = new System.Windows.Forms.Button();
this.room242Button = new System.Windows.Forms.Button();
this.room250Button = new System.Windows.Forms.Button();
this.room249Button = new System.Windows.Forms.Button();
this.room248Button = new System.Windows.Forms.Button();
this.room247Button = new System.Windows.Forms.Button();
this.room246Button = new System.Windows.Forms.Button();
this.rom241Button = new System.Windows.Forms.Button();
this.room240Button = new System.Windows.Forms.Button();
this.room238Button = new System.Windows.Forms.Button();
this.room239Button = new System.Windows.Forms.Button();
this.rom237Button = new System.Windows.Forms.Button();
this.room236Button = new System.Windows.Forms.Button();
this.room227Button = new System.Windows.Forms.Button();
this.room235Button = new System.Windows.Forms.Button();
this.room234Button = new System.Windows.Forms.Button();
this.room233Button = new System.Windows.Forms.Button();
this.room226Button = new System.Windows.Forms.Button();
this.room225Button = new System.Windows.Forms.Button();
this.room224Button = new System.Windows.Forms.Button();
this.room232Button = new System.Windows.Forms.Button();
this.room231Button = new System.Windows.Forms.Button();
this.room230Button = new System.Windows.Forms.Button();
this.room229Button = new System.Windows.Forms.Button();
this.room228Button = new System.Windows.Forms.Button();
this.room223Button = new System.Windows.Forms.Button();
this.room222Button = new System.Windows.Forms.Button();
this.room220Button = new System.Windows.Forms.Button();
this.room221Button = new System.Windows.Forms.Button();
this.room219Button = new System.Windows.Forms.Button();
//.........这里部分代码省略.........
示例12: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
ZForge.Controls.XPTable.Models.DataSourceColumnBinder dataSourceColumnBinder1 = new ZForge.Controls.XPTable.Models.DataSourceColumnBinder();
this.panelTop = new System.Windows.Forms.Panel();
this.labelTop = new System.Windows.Forms.Label();
this.panelBottom = new System.Windows.Forms.Panel();
this.buttonOk = new System.Windows.Forms.Button();
this.panelMain = new System.Windows.Forms.Panel();
this.tabControl = new System.Windows.Forms.TabControl();
this.tabPagePlugInList = new System.Windows.Forms.TabPage();
this.tablePlugIns = new ZForge.Controls.XPTable.Models.Table();
this.panelTop.SuspendLayout();
this.panelBottom.SuspendLayout();
this.panelMain.SuspendLayout();
this.tabControl.SuspendLayout();
this.tabPagePlugInList.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.tablePlugIns)).BeginInit();
this.SuspendLayout();
//
// panelTop
//
this.panelTop.Controls.Add(this.labelTop);
this.panelTop.Dock = System.Windows.Forms.DockStyle.Top;
this.panelTop.Location = new System.Drawing.Point(0, 0);
this.panelTop.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.panelTop.Name = "panelTop";
this.panelTop.Size = new System.Drawing.Size(527, 35);
this.panelTop.TabIndex = 0;
//
// labelTop
//
this.labelTop.AutoSize = true;
this.labelTop.Font = new System.Drawing.Font("Microsoft YaHei", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.labelTop.Location = new System.Drawing.Point(3, 10);
this.labelTop.Name = "labelTop";
this.labelTop.Size = new System.Drawing.Size(92, 17);
this.labelTop.TabIndex = 0;
this.labelTop.Text = "已安装的插件:";
//
// panelBottom
//
this.panelBottom.Controls.Add(this.buttonOk);
this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panelBottom.Location = new System.Drawing.Point(0, 297);
this.panelBottom.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.panelBottom.Name = "panelBottom";
this.panelBottom.Size = new System.Drawing.Size(527, 73);
this.panelBottom.TabIndex = 1;
//
// buttonOk
//
this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
this.buttonOk.Image = global::ZForge.Motion.Forms.Properties.Resources.ok;
this.buttonOk.Location = new System.Drawing.Point(214, 7);
this.buttonOk.Name = "buttonOk";
this.buttonOk.Size = new System.Drawing.Size(86, 47);
this.buttonOk.TabIndex = 0;
this.buttonOk.Text = "关闭";
this.buttonOk.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.buttonOk.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.buttonOk.UseVisualStyleBackColor = true;
//
// panelMain
//
this.panelMain.Controls.Add(this.tabControl);
this.panelMain.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelMain.Location = new System.Drawing.Point(0, 35);
this.panelMain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.panelMain.Name = "panelMain";
this.panelMain.Size = new System.Drawing.Size(527, 262);
this.panelMain.TabIndex = 2;
//
// tabControl
//
this.tabControl.Controls.Add(this.tabPagePlugInList);
this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl.Location = new System.Drawing.Point(0, 0);
this.tabControl.Name = "tabControl";
this.tabControl.SelectedIndex = 0;
this.tabControl.Size = new System.Drawing.Size(527, 262);
this.tabControl.TabIndex = 0;
//
// tabPagePlugInList
//
this.tabPagePlugInList.Controls.Add(this.tablePlugIns);
this.tabPagePlugInList.Location = new System.Drawing.Point(4, 26);
this.tabPagePlugInList.Name = "tabPagePlugInList";
this.tabPagePlugInList.Padding = new System.Windows.Forms.Padding(3);
this.tabPagePlugInList.Size = new System.Drawing.Size(519, 232);
this.tabPagePlugInList.TabIndex = 0;
this.tabPagePlugInList.Text = "插件列表";
this.tabPagePlugInList.UseVisualStyleBackColor = true;
//
// tablePlugIns
//
this.tablePlugIns.BorderColor = System.Drawing.Color.Black;
//.........这里部分代码省略.........
示例13: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmOptions));
this.tbrMain = new System.Windows.Forms.ToolStrip();
this.tbrMainSave = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.tbrMainClose = new System.Windows.Forms.ToolStripButton();
this.tabPageIGenForms = new System.Windows.Forms.TabPage();
this.chkFormsCompileOnLoad = new System.Windows.Forms.CheckBox();
this.chkFormsPersistValues = new System.Windows.Forms.CheckBox();
this.chkShowSpaceInsteadOfPeriod = new System.Windows.Forms.CheckBox();
this.chkMakeLabelsOpaque = new System.Windows.Forms.CheckBox();
this.chkShowCommas = new System.Windows.Forms.CheckBox();
this.lblNumberOfDecimalPlaces = new System.Windows.Forms.Label();
this.nudNumberOfDecimalPlaces = new System.Windows.Forms.NumericUpDown();
this.chkSuppressZeroFields = new System.Windows.Forms.CheckBox();
this.tabPageSQLOptions = new System.Windows.Forms.TabPage();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.cboSchemas = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.chkWrapSumWithCoalesce = new System.Windows.Forms.CheckBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.label18 = new System.Windows.Forms.Label();
this.txtSQLErrorThreshold = new System.Windows.Forms.TextBox();
this.label17 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.rdbSortByFieldName = new System.Windows.Forms.RadioButton();
this.rdbSortByFieldOrder = new System.Windows.Forms.RadioButton();
this.tabPageImportExportOptions = new System.Windows.Forms.TabPage();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.chkExportAskAtRuntime = new System.Windows.Forms.CheckBox();
this.label5 = new System.Windows.Forms.Label();
this.cboExportSeparator = new System.Windows.Forms.ComboBox();
this.label6 = new System.Windows.Forms.Label();
this.cboExportDelimiter = new System.Windows.Forms.ComboBox();
this.chkExportFirstRowHasFieldNames = new System.Windows.Forms.CheckBox();
this.grpOptions = new System.Windows.Forms.GroupBox();
this.chkImportAskAtRuntime = new System.Windows.Forms.CheckBox();
this.label4 = new System.Windows.Forms.Label();
this.cboImportSeparator = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.cboImportDelimiter = new System.Windows.Forms.ComboBox();
this.chkImportFirstRowHasFieldNames = new System.Windows.Forms.CheckBox();
this.tabPageGeneral = new System.Windows.Forms.TabPage();
this.groupBox7 = new System.Windows.Forms.GroupBox();
this.label16 = new System.Windows.Forms.Label();
this.lblColorForInvalidValue = new System.Windows.Forms.Label();
this.cboColorForInvalidValue = new System.Windows.Forms.ComboBox();
this.label14 = new System.Windows.Forms.Label();
this.chkShowCaptionsOnToolbars = new System.Windows.Forms.CheckBox();
this.grpGeneralSave = new System.Windows.Forms.GroupBox();
this.chkConfirmOnTabClose = new System.Windows.Forms.CheckBox();
this.chkAutoSaveOnClose = new System.Windows.Forms.CheckBox();
this.tabPageAdmin = new System.Windows.Forms.TabPage();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.btnTestMainConnection = new System.Windows.Forms.Button();
this.btnBuildMainConnection = new System.Windows.Forms.Button();
this.txtMainConnection = new System.Windows.Forms.TextBox();
this.cboMainDatabaseSystems = new System.Windows.Forms.ComboBox();
this.label12 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.btnTestBaseConnection = new System.Windows.Forms.Button();
this.btnBuildBaseConnection = new System.Windows.Forms.Button();
this.txtBaseConnection = new System.Windows.Forms.TextBox();
this.cboBaseDatabaseSystems = new System.Windows.Forms.ComboBox();
this.label8 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.picWallpaper = new System.Windows.Forms.PictureBox();
this.btnFind = new System.Windows.Forms.Button();
this.label9 = new System.Windows.Forms.Label();
this.txtWallpaper = new System.Windows.Forms.TextBox();
this.tabOptions = new System.Windows.Forms.TabControl();
this.tabPageVariables = new System.Windows.Forms.TabPage();
this.dgvVariables = new System.Windows.Forms.DataGridView();
this.VariableName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.VariableValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tabPageSymbolics = new System.Windows.Forms.TabPage();
this.dgvSymbolics = new System.Windows.Forms.DataGridView();
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tbrMain.SuspendLayout();
this.tabPageIGenForms.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nudNumberOfDecimalPlaces)).BeginInit();
this.tabPageSQLOptions.SuspendLayout();
this.groupBox6.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox2.SuspendLayout();
this.tabPageImportExportOptions.SuspendLayout();
this.groupBox1.SuspendLayout();
this.grpOptions.SuspendLayout();
this.tabPageGeneral.SuspendLayout();
this.groupBox7.SuspendLayout();
this.grpGeneralSave.SuspendLayout();
this.tabPageAdmin.SuspendLayout();
this.groupBox5.SuspendLayout();
//.........这里部分代码省略.........
示例14: InitializeComponent
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FM_EmptyBang));
this.panel1 = new System.Windows.Forms.Panel();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tbp_zd = new System.Windows.Forms.TabPage();
this.txbAuto_Navicert = new System.Windows.Forms.TextBox();
this.panel4 = new System.Windows.Forms.Panel();
this.msc_Auto = new AxMSCommLib.AxMSComm();
this.btn_close = new System.Windows.Forms.Button();
this.btn_no = new System.Windows.Forms.Button();
this.btn_ok = new System.Windows.Forms.Button();
this.label39 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label74 = new System.Windows.Forms.Label();
this.panel9 = new System.Windows.Forms.Panel();
this.lbbcarweigt = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtOperator = new System.Windows.Forms.TextBox();
this.lblOperator = new System.Windows.Forms.Label();
this.label41 = new System.Windows.Forms.Label();
this.label40 = new System.Windows.Forms.Label();
this.text_oldweight = new System.Windows.Forms.TextBox();
this.txtbangtime = new System.Windows.Forms.TextBox();
this.label80 = new System.Windows.Forms.Label();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.label72 = new System.Windows.Forms.Label();
this.txtcarweight = new System.Windows.Forms.TextBox();
this.label73 = new System.Windows.Forms.Label();
this.label81 = new System.Windows.Forms.Label();
this.txtmostweight = new System.Windows.Forms.TextBox();
this.label82 = new System.Windows.Forms.Label();
this.label83 = new System.Windows.Forms.Label();
this.label84 = new System.Windows.Forms.Label();
this.txtcarno = new System.Windows.Forms.TextBox();
this.txtcartype = new System.Windows.Forms.TextBox();
this.label89 = new System.Windows.Forms.Label();
this.txtcarname = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label19 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.label20 = new System.Windows.Forms.Label();
this.panel5 = new System.Windows.Forms.Panel();
this.label21 = new System.Windows.Forms.Label();
this.textBox2 = new System.Windows.Forms.TextBox();
this.label22 = new System.Windows.Forms.Label();
this.label23 = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.label25 = new System.Windows.Forms.Label();
this.label26 = new System.Windows.Forms.Label();
this.label27 = new System.Windows.Forms.Label();
this.textBox3 = new System.Windows.Forms.TextBox();
this.label28 = new System.Windows.Forms.Label();
this.label29 = new System.Windows.Forms.Label();
this.label30 = new System.Windows.Forms.Label();
this.textBox4 = new System.Windows.Forms.TextBox();
this.label31 = new System.Windows.Forms.Label();
this.textBox5 = new System.Windows.Forms.TextBox();
this.label32 = new System.Windows.Forms.Label();
this.textBox6 = new System.Windows.Forms.TextBox();
this.label33 = new System.Windows.Forms.Label();
this.textBox7 = new System.Windows.Forms.TextBox();
this.label34 = new System.Windows.Forms.Label();
this.textBox8 = new System.Windows.Forms.TextBox();
this.label35 = new System.Windows.Forms.Label();
this.textBox9 = new System.Windows.Forms.TextBox();
this.textBox10 = new System.Windows.Forms.TextBox();
this.label13 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.lb_CarWeight = new System.Windows.Forms.Label();
this.label18 = new System.Windows.Forms.Label();
this.label17 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.sp_com = new System.IO.Ports.SerialPort(this.components);
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.tbownername = new System.Windows.Forms.TextBox();
this.label53 = new System.Windows.Forms.Label();
this.tbcartype = new System.Windows.Forms.TextBox();
this.tbcarno = new System.Windows.Forms.TextBox();
//.........这里部分代码省略.........
示例15: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.panelBack = new System.Windows.Forms.Panel();
this.tabControl1 = new DisksDB.UserInterface.ControlMyTab();
this.tabPageCategory = new System.Windows.Forms.TabPage();
this.panelCategoryIcon = new DisksDB.UserInterface.PanelIcon();
this.labelCategoryName = new System.Windows.Forms.Label();
this.tabPageBox = new System.Windows.Forms.TabPage();
this.pictureBox4 = new System.Windows.Forms.PictureBox();
this.pictureBox3 = new System.Windows.Forms.PictureBox();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.tabPageFolder = new System.Windows.Forms.TabPage();
this.panelFolderIcon = new DisksDB.UserInterface.PanelIcon();
this.labelFolderDate = new DisksDB.Language.Label();
this.label6 = new DisksDB.Language.Label();
this.labelFolderName = new System.Windows.Forms.Label();
this.tabPageImage = new System.Windows.Forms.TabPage();
this.panel1 = new System.Windows.Forms.Panel();
this.pictureBoxImage = new System.Windows.Forms.PictureBox();
this.tabPageDisk = new System.Windows.Forms.TabPage();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.labelCategoryDescription = new System.Windows.Forms.Label();
this.panelBack.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPageCategory.SuspendLayout();
this.tabPageBox.SuspendLayout();
this.tabPageFolder.SuspendLayout();
this.tabPageImage.SuspendLayout();
this.panel1.SuspendLayout();
this.tabPageDisk.SuspendLayout();
this.SuspendLayout();
//
// panelBack
//
this.panelBack.BackColor = System.Drawing.SystemColors.Window;
this.panelBack.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panelBack.Controls.Add(this.tabControl1);
this.panelBack.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelBack.Location = new System.Drawing.Point(0, 0);
this.panelBack.Name = "panelBack";
this.panelBack.Size = new System.Drawing.Size(856, 421);
this.panelBack.TabIndex = 0;
//
// tabControl1
//
this.tabControl1.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.tabControl1.BackBrushColor = System.Drawing.Color.White;
this.tabControl1.Controls.Add(this.tabPageCategory);
this.tabControl1.Controls.Add(this.tabPageBox);
this.tabControl1.Controls.Add(this.tabPageFolder);
this.tabControl1.Controls.Add(this.tabPageImage);
this.tabControl1.Controls.Add(this.tabPageDisk);
this.tabControl1.Location = new System.Drawing.Point(0, -20);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(852, 436);
this.tabControl1.TabIndex = 0;
//
// tabPageCategory
//
this.tabPageCategory.BackColor = System.Drawing.SystemColors.Window;
this.tabPageCategory.Controls.Add(this.labelCategoryDescription);
this.tabPageCategory.Controls.Add(this.panelCategoryIcon);
this.tabPageCategory.Controls.Add(this.labelCategoryName);
this.tabPageCategory.Location = new System.Drawing.Point(4, 25);
this.tabPageCategory.Name = "tabPageCategory";
this.tabPageCategory.Size = new System.Drawing.Size(844, 407);
this.tabPageCategory.TabIndex = 0;
this.tabPageCategory.Text = "Category";
//
// panelCategoryIcon
//
this.panelCategoryIcon.BackIcon = null;
this.panelCategoryIcon.Location = new System.Drawing.Point(8, 8);
this.panelCategoryIcon.Name = "panelCategoryIcon";
this.panelCategoryIcon.Size = new System.Drawing.Size(32, 32);
this.panelCategoryIcon.TabIndex = 11;
//
// labelCategoryName
//
this.labelCategoryName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.labelCategoryName.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.labelCategoryName.Location = new System.Drawing.Point(48, 16);
this.labelCategoryName.Name = "labelCategoryName";
this.labelCategoryName.Size = new System.Drawing.Size(784, 23);
this.labelCategoryName.TabIndex = 8;
//
// tabPageBox
//
//.........这里部分代码省略.........