• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Forms.TabPage类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了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类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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);
 }
开发者ID:smther,项目名称:FreeOQ,代码行数:54,代码来源:ReleaseNotesControl.Designer.cs


示例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);

        }
开发者ID:bcsanches,项目名称:phobos3d,代码行数:56,代码来源:WorldPage.Designer.cs


示例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);
 }
开发者ID:TGHGH,项目名称:C-1200,代码行数:56,代码来源:Frm_Main.designer.cs


示例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);

        }
开发者ID:bcsanches,项目名称:phobos3d,代码行数:56,代码来源:PropertyPage.Designer.cs


示例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);
 }
开发者ID:jackdonders,项目名称:ICT4Events,代码行数:54,代码来源:SocialMediaSystemForm.designer.cs


示例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();
//.........这里部分代码省略.........
开发者ID:MaxOLydian,项目名称:s7-diff-merge,代码行数:101,代码来源:MainForm.designer.cs


示例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();
//.........这里部分代码省略.........
开发者ID:kerchunk,项目名称:GizMaker,代码行数:101,代码来源:Mapper.designer.cs


示例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
     //
//.........这里部分代码省略.........
开发者ID:mcorrientes,项目名称:Web-Security-Toolset,代码行数:101,代码来源:frmMain.designer.cs


示例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);
     //
//.........这里部分代码省略.........
开发者ID:VISTALL,项目名称:path-editor,代码行数:101,代码来源:MainForm.designer.cs


示例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 = "Мастер возврата оснастки на участок сборки УСПО";
//.........这里部分代码省略.........
开发者ID:Blyumenshteyn,项目名称:UchetUSP,代码行数:101,代码来源:fGetAssembly.designer.cs


示例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();
//.........这里部分代码省略.........
开发者ID:soniarai,项目名称:HRS,代码行数:101,代码来源:Welcome.designer.cs


示例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. 

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Forms.TableLayoutPanel类代码示例发布时间:2022-05-24
下一篇:
C# Forms.TabControl类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap