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

C# Forms.TableLayoutPanel类代码示例

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

本文整理汇总了C#中System.Windows.Forms.TableLayoutPanel的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.TableLayoutPanel类的具体用法?C# System.Windows.Forms.TableLayoutPanel怎么用?C# System.Windows.Forms.TableLayoutPanel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



System.Windows.Forms.TableLayoutPanel类属于命名空间,在下文中一共展示了System.Windows.Forms.TableLayoutPanel类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: InitializeComponent

        private void InitializeComponent()
        {

            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.tableLayoutPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 3;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));

            this.tableLayoutPanel1.Location = new System.Drawing.Point(-2, 1);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 3;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(287, 262);
            this.tableLayoutPanel1.TabIndex = 0;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(284, 262);
            this.Controls.Add(this.tableLayoutPanel1);
            this.Name = "Form1";
            this.Text = "Form1";
            this.tableLayoutPanel1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
开发者ID:Julia-Khramyshkina,项目名称:homeworks,代码行数:31,代码来源:Form1.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()
 {
     this.progressPanel1 = new DevExpress.XtraWaitForm.ProgressPanel();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // progressPanel1
     //
     this.progressPanel1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.progressPanel1.Appearance.Options.UseBackColor = true;
     this.progressPanel1.AppearanceCaption.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
     this.progressPanel1.AppearanceCaption.Options.UseFont = true;
     this.progressPanel1.AppearanceDescription.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.progressPanel1.AppearanceDescription.Options.UseFont = true;
     this.progressPanel1.Caption = "请稍等";
     this.progressPanel1.Description = "加载中 ...";
     this.progressPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.progressPanel1.ImageHorzOffset = 20;
     this.progressPanel1.Location = new System.Drawing.Point(0, 16);
     this.progressPanel1.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
     this.progressPanel1.Name = "progressPanel1";
     this.progressPanel1.Size = new System.Drawing.Size(246, 35);
     this.progressPanel1.TabIndex = 0;
     this.progressPanel1.Text = "progressPanel1";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.AutoSize = true;
     this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.tableLayoutPanel1.BackColor = System.Drawing.Color.Transparent;
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 220F));
     this.tableLayoutPanel1.Controls.Add(this.progressPanel1, 0, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.Padding = new System.Windows.Forms.Padding(0, 13, 0, 13);
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(246, 67);
     this.tableLayoutPanel1.TabIndex = 1;
     //
     // LoadWaitForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(246, 67);
     this.Controls.Add(this.tableLayoutPanel1);
     this.DoubleBuffered = true;
     this.MinimumSize = new System.Drawing.Size(246, 0);
     this.Name = "LoadWaitForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Form1";
     this.tableLayoutPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:gofixiao,项目名称:HYPDM_Pro,代码行数:64,代码来源:LoadWaitForm.designer.cs


示例3: 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.TableLayoutPanel tlpTemplateSelector;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TemplateSelectorForm));
            this.lbTemplates = new System.Windows.Forms.ListBox();
            this.btnOk = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            tlpTemplateSelector = new System.Windows.Forms.TableLayoutPanel();
            tlpTemplateSelector.SuspendLayout();
            this.SuspendLayout();
            // 
            // tlpTemplateSelector
            // 
            resources.ApplyResources(tlpTemplateSelector, "tlpTemplateSelector");
            tlpTemplateSelector.Controls.Add(this.lbTemplates, 0, 1);
            tlpTemplateSelector.Controls.Add(this.btnOk, 0, 2);
            tlpTemplateSelector.Controls.Add(this.btnCancel, 1, 2);
            tlpTemplateSelector.Name = "tlpTemplateSelector";
            // 
            // lbTemplates
            // 
            tlpTemplateSelector.SetColumnSpan(this.lbTemplates, 2);
            resources.ApplyResources(this.lbTemplates, "lbTemplates");
            this.lbTemplates.FormattingEnabled = true;
            this.lbTemplates.Name = "lbTemplates";
            this.lbTemplates.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lbTemplates_MouseDoubleClick);
            // 
            // btnOk
            // 
            this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.btnOk, "btnOk");
            this.btnOk.Image = global::easyMoney.Manager.Properties.Resources.tick;
            this.btnOk.Name = "btnOk";
            this.btnOk.UseVisualStyleBackColor = true;
            // 
            // btnCancel
            // 
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            resources.ApplyResources(this.btnCancel, "btnCancel");
            this.btnCancel.Image = global::easyMoney.Manager.Properties.Resources.cancel;
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.UseVisualStyleBackColor = true;
            // 
            // TemplateSelectorForm
            // 
            this.AcceptButton = this.btnOk;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.btnCancel;
            this.Controls.Add(tlpTemplateSelector);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "TemplateSelectorForm";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.Load += new System.EventHandler(this.TemplateSelectorForm_Load);
            tlpTemplateSelector.ResumeLayout(false);
            this.ResumeLayout(false);

        }
开发者ID:e-Deniska,项目名称:easyMoney,代码行数:64,代码来源:TemplateSelectorForm.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.TableLayoutPanel tlpRenameTag;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TagRenameForm));
            this.btnOk = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.tbTag = new System.Windows.Forms.TextBox();
            tlpRenameTag = new System.Windows.Forms.TableLayoutPanel();
            tlpRenameTag.SuspendLayout();
            this.SuspendLayout();
            // 
            // tlpRenameTag
            // 
            resources.ApplyResources(tlpRenameTag, "tlpRenameTag");
            tlpRenameTag.Controls.Add(this.btnOk, 0, 3);
            tlpRenameTag.Controls.Add(this.btnCancel, 1, 3);
            tlpRenameTag.Controls.Add(this.tbTag, 0, 1);
            tlpRenameTag.Name = "tlpRenameTag";
            // 
            // btnOk
            // 
            resources.ApplyResources(this.btnOk, "btnOk");
            this.btnOk.Image = global::easyMoney.Manager.Properties.Resources.tick;
            this.btnOk.Name = "btnOk";
            this.btnOk.UseVisualStyleBackColor = true;
            this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
            // 
            // btnCancel
            // 
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            resources.ApplyResources(this.btnCancel, "btnCancel");
            this.btnCancel.Image = global::easyMoney.Manager.Properties.Resources.cancel;
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // tbTag
            // 
            tlpRenameTag.SetColumnSpan(this.tbTag, 2);
            resources.ApplyResources(this.tbTag, "tbTag");
            this.tbTag.Name = "tbTag";
            // 
            // TagRenameForm
            // 
            this.AcceptButton = this.btnOk;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.btnCancel;
            this.Controls.Add(tlpRenameTag);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "TagRenameForm";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            tlpRenameTag.ResumeLayout(false);
            tlpRenameTag.PerformLayout();
            this.ResumeLayout(false);

        }
开发者ID:e-Deniska,项目名称:easyMoney,代码行数:64,代码来源:TagRenameForm.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.NodeLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     this.SuspendLayout();
     //
     // NodeLayoutPanel
     //
     this.NodeLayoutPanel.AutoScroll = true;
     this.NodeLayoutPanel.AutoSize = true;
     this.NodeLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.NodeLayoutPanel.ColumnCount = 1;
     this.NodeLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.NodeLayoutPanel.Location = new System.Drawing.Point(12, 12);
     this.NodeLayoutPanel.Name = "NodeLayoutPanel";
     this.NodeLayoutPanel.RowCount = 1;
     this.NodeLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.NodeLayoutPanel.Size = new System.Drawing.Size(0, 0);
     this.NodeLayoutPanel.TabIndex = 0;
     //
     // ChangeNodeValuesForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(526, 323);
     this.Controls.Add(this.NodeLayoutPanel);
     this.Name = "ChangeNodeValuesForm";
     this.ShowIcon = false;
     this.Text = "NodeForm";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:noant,项目名称:Pyrite,代码行数:37,代码来源:ChangeNodeValuesForm.designer.cs


示例6: InitializeComponent

		/// <summary>
		/// This method is required for Windows Forms designer support.
		/// Do not change the method contents inside the source code editor. The Forms designer might
		/// not be able to load this method if it was changed manually.
		/// </summary>
		private void InitializeComponent()
		{
			this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			this.label1 = new System.Windows.Forms.Label();
			this.buttonChooseRDP = new System.Windows.Forms.Button();
			this.tableLayoutPanel1.SuspendLayout();
			this.SuspendLayout();
			// 
			// tableLayoutPanel1
			// 
			this.tableLayoutPanel1.ColumnCount = 2;
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 160F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
			this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
			this.tableLayoutPanel1.Controls.Add(this.buttonChooseRDP, 1, 0);
			this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
			this.tableLayoutPanel1.Name = "tableLayoutPanel1";
			this.tableLayoutPanel1.RowCount = 2;
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
			this.tableLayoutPanel1.Size = new System.Drawing.Size(479, 214);
			this.tableLayoutPanel1.TabIndex = 0;
			// 
			// label1
			// 
			this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.label1.Location = new System.Drawing.Point(3, 0);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(154, 35);
			this.label1.TabIndex = 0;
			this.label1.Text = "Choose profile:";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// buttonChooseRDP
			// 
			this.buttonChooseRDP.Dock = System.Windows.Forms.DockStyle.Fill;
			this.buttonChooseRDP.Location = new System.Drawing.Point(163, 3);
			this.buttonChooseRDP.Name = "buttonChooseRDP";
			this.buttonChooseRDP.Size = new System.Drawing.Size(313, 29);
			this.buttonChooseRDP.TabIndex = 1;
			this.buttonChooseRDP.Text = "RDP Profile";
			this.buttonChooseRDP.UseVisualStyleBackColor = true;
			this.buttonChooseRDP.Click += new System.EventHandler(this.ButtonChooseRDPClick);
			// 
			// EditRDP
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.tableLayoutPanel1);
			this.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.Margin = new System.Windows.Forms.Padding(0);
			this.Name = "EditRDP";
			this.Size = new System.Drawing.Size(479, 214);
			this.tableLayoutPanel1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
开发者ID:SommerEngineering,项目名称:OceanRemoteConnections,代码行数:63,代码来源:EditRDP.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.Windows.Forms.TableLayoutPanel TableLayout;
			this.SideImageControl = new TC.WinForms.Controls.TSystemIconBox();
			this.MessageLabel = new TC.WinForms.Controls.TLabel();
			TableLayout = new System.Windows.Forms.TableLayoutPanel();
			TableLayout.SuspendLayout();
			this.SuspendLayout();
			// 
			// TableLayout
			// 
			TableLayout.AutoSize = true;
			TableLayout.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			TableLayout.ColumnCount = 2;
			TableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			TableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			TableLayout.Controls.Add(this.SideImageControl, 0, 0);
			TableLayout.Controls.Add(this.MessageLabel, 1, 0);
			TableLayout.Dock = System.Windows.Forms.DockStyle.Fill;
			TableLayout.Location = new System.Drawing.Point(8, 8);
			TableLayout.Name = "TableLayout";
			TableLayout.RowCount = 1;
			TableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
			TableLayout.Size = new System.Drawing.Size(84, 38);
			TableLayout.TabIndex = 0;
			// 
			// SideImageControl
			// 
			this.SideImageControl.Location = new System.Drawing.Point(3, 3);
			this.SideImageControl.Name = "SideImageControl";
			this.SideImageControl.Size = new System.Drawing.Size(42, 42);
			this.SideImageControl.TabIndex = 0;
			this.SideImageControl.TabStop = false;
			// 
			// MessageLabel
			// 
			this.MessageLabel.AutoSize = true;
			this.MessageLabel.Location = new System.Drawing.Point(41, 0);
			this.MessageLabel.Name = "MessageLabel";
			this.MessageLabel.Padding = new System.Windows.Forms.Padding(10);
			this.MessageLabel.Size = new System.Drawing.Size(20, 33);
			this.MessageLabel.TabIndex = 0;
			// 
			// TMessageDialogContentControl
			// 
			this.AutoSize = true;
			this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			this.Controls.Add(TableLayout);
			this.Name = "TMessageDialogContentControl";
			this.Size = new System.Drawing.Size(100, 54);
			TableLayout.ResumeLayout(false);
			TableLayout.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
开发者ID:tommy-carlier,项目名称:tc-libs,代码行数:60,代码来源:TMessageDialogContentControl.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.textBox1 = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBox1.Location = new System.Drawing.Point(225, 2);
     this.textBox1.Margin = new System.Windows.Forms.Padding(0);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(221, 20);
     this.textBox1.TabIndex = 1;
     this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
     this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress);
     //
     // label1
     //
     this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label1.Location = new System.Drawing.Point(5, 2);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(215, 21);
     this.label1.TabIndex = 0;
     this.label1.Text = "label1";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Inset;
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.textBox1, 1, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(448, 25);
     this.tableLayoutPanel1.TabIndex = 2;
     //
     // ShortcutChanger
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tableLayoutPanel1);
     this.Name = "ShortcutChanger";
     this.Size = new System.Drawing.Size(448, 25);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
开发者ID:NasuTek,项目名称:NasuTek-Grabbie,代码行数:60,代码来源:ShortcutChanger.designer.cs


示例9: InitializeComponent

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		void InitializeComponent() {
			treeView1 = new System.Windows.Forms.TreeView();
			richTextBox1 = new System.Windows.Forms.RichTextBox();
			tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			tableLayoutPanel1.SuspendLayout();
			SuspendLayout();
			// 
			// treeView1
			// 
			treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
			treeView1.Location = new System.Drawing.Point(13, 13);
			treeView1.Name = "treeView1";
			treeView1.Size = new System.Drawing.Size(114, 391);
			treeView1.TabIndex = 0;
			// 
			// richTextBox1
			// 
			richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
			richTextBox1.Location = new System.Drawing.Point(133, 13);
			richTextBox1.Name = "richTextBox1";
			richTextBox1.ReadOnly = true;
			richTextBox1.ShortcutsEnabled = false;
			richTextBox1.Size = new System.Drawing.Size(432, 391);
			richTextBox1.TabIndex = 1;
			richTextBox1.Text = "";
			// 
			// tableLayoutPanel1
			// 
			tableLayoutPanel1.ColumnCount = 2;
			tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
			tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
			tableLayoutPanel1.Controls.Add(treeView1);
			tableLayoutPanel1.Controls.Add(richTextBox1, 1, 0);
			tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
			tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
			tableLayoutPanel1.Name = "tableLayoutPanel1";
			tableLayoutPanel1.Padding = new System.Windows.Forms.Padding(10);
			tableLayoutPanel1.RowCount = 1;
			tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
			tableLayoutPanel1.Size = new System.Drawing.Size(578, 417);
			tableLayoutPanel1.TabIndex = 2;
			// 
			// HelpForm
			// 
			AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			ClientSize = new System.Drawing.Size(578, 417);
			Controls.Add(tableLayoutPanel1);
			Name = "HelpForm";
			Text = "HelpForm";
			tableLayoutPanel1.ResumeLayout(false);
			ResumeLayout (false);

		}
开发者ID:miniBill,项目名称:DiagramDrawer,代码行数:58,代码来源:HelpForm.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()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewMediumLevelRecordEditor));
     this.bSave = new System.Windows.Forms.Button();
     this.bCancel = new System.Windows.Forms.Button();
     this.Error = new System.Windows.Forms.ErrorProvider(this.components);
     this.fpanel1 = new System.Windows.Forms.TableLayoutPanel();
     ((System.ComponentModel.ISupportInitialize)(this.Error)).BeginInit();
     this.SuspendLayout();
     //
     // bSave
     //
     resources.ApplyResources(this.bSave, "bSave");
     this.bSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.bSave.Name = "bSave";
     this.bSave.UseVisualStyleBackColor = true;
     this.bSave.Click += new System.EventHandler(this.bSave_Click);
     //
     // bCancel
     //
     resources.ApplyResources(this.bCancel, "bCancel");
     this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.bCancel.Name = "bCancel";
     this.bCancel.UseVisualStyleBackColor = true;
     this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
     //
     // Error
     //
     this.Error.ContainerControl = this;
     resources.ApplyResources(this.Error, "Error");
     //
     // fpanel1
     //
     resources.ApplyResources(this.fpanel1, "fpanel1");
     this.fpanel1.Name = "fpanel1";
     this.fpanel1.Resize += new System.EventHandler(this.fpanel1_Resize);
     //
     // NewMediumLevelRecordEditor
     //
     this.AcceptButton = this.bSave;
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.bCancel;
     this.Controls.Add(this.fpanel1);
     this.Controls.Add(this.bCancel);
     this.Controls.Add(this.bSave);
     this.Name = "NewMediumLevelRecordEditor";
     this.ShowInTaskbar = false;
     this.Load += new System.EventHandler(this.NewMediumLevelRecordEditor_Load);
     this.Shown += new System.EventHandler(this.NewMediumLevelRecordEditor_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.Error)).EndInit();
     this.ResumeLayout(false);
 }
开发者ID:figment,项目名称:tesvsnip,代码行数:58,代码来源:NewMediumLevelRecordEditor.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()
 {
     this._table = new System.Windows.Forms.TableLayoutPanel();
     this._label = new System.Windows.Forms.Label();
     this._errorProvider = new System.Windows.Forms.ErrorProvider();
     this._table.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._errorProvider)).BeginInit();
     this.SuspendLayout();
     //
     // _table
     //
     this._table.ColumnCount = 3;
     this._table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this._table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this._table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 16F));
     this._table.Controls.Add(this._label, 0, 0);
     this._table.Dock = System.Windows.Forms.DockStyle.Fill;
     this._table.Location = new System.Drawing.Point(0, 0);
     this._table.Name = "_table";
     this._table.RowCount = 1;
     this._table.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this._table.Size = new System.Drawing.Size(219, 28);
     this._table.TabIndex = 0;
     //
     // _label
     //
     this._label.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this._label.AutoEllipsis = true;
     this._label.AutoSize = true;
     this._label.Location = new System.Drawing.Point(3, 7);
     this._label.Margin = new System.Windows.Forms.Padding(3);
     this._label.Name = "_label";
     this._label.Size = new System.Drawing.Size(36, 13);
     this._label.TabIndex = 6;
     this._label.Text = "<text>";
     this._label.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _errorProvider
     //
     this._errorProvider.ContainerControl = this;
     //
     // TableItem
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this._table);
     this.Name = "TableItem";
     this.Size = new System.Drawing.Size(219, 28);
     this._table.ResumeLayout(false);
     this._table.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this._errorProvider)).EndInit();
     this.ResumeLayout(false);
 }
开发者ID:mgrman,项目名称:DGCLib,代码行数:57,代码来源:TableItem.designer.cs


示例12: InitializeComponent

        /// <summary> 
        /// デザイナ サポートに必要なメソッドです。このメソッドの内容を 
        /// コード エディタで変更しないでください。
        /// </summary>
        private void InitializeComponent() {
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.Label label1;
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            label1 = new System.Windows.Forms.Label();
            tableLayoutPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.ColumnCount = 3;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableLayoutPanel1.Controls.Add(label1, 1, 1);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 3;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableLayoutPanel1.Size = new System.Drawing.Size(150, 150);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // label1
            // 
            label1.AutoSize = true;
            label1.Font = new System.Drawing.Font("MS UI Gothic", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
            label1.Location = new System.Drawing.Point(-28, 58);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(207, 33);
            label1.TabIndex = 0;
            label1.Text = "お待ちください...";
            // 
            // WaitNow
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.BackColor = System.Drawing.Color.WhiteSmoke;
            this.Controls.Add(tableLayoutPanel1);
            this.ForeColor = System.Drawing.Color.Black;
            this.Name = "WaitNow";
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            this.ResumeLayout(false);

        }
开发者ID:HiraokaHyperTools,项目名称:pdfbun,代码行数:51,代码来源:WaitNow.Designer.cs


示例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.Windows.Forms.TableLayoutPanel table;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(About));
			this.webLink = new System.Windows.Forms.LinkLabel();
			this.version = new System.Windows.Forms.Label();
			this.productName = new System.Windows.Forms.Label();
			table = new System.Windows.Forms.TableLayoutPanel();
			table.SuspendLayout();
			this.SuspendLayout();
			// 
			// table
			// 
			resources.ApplyResources(table, "table");
			table.Controls.Add(this.webLink, 0, 2);
			table.Controls.Add(this.version, 0, 1);
			table.Controls.Add(this.productName, 0, 0);
			table.Name = "table";
			// 
			// webLink
			// 
			resources.ApplyResources(this.webLink, "webLink");
			this.webLink.Name = "webLink";
			this.webLink.TabStop = true;
			// 
			// version
			// 
			resources.ApplyResources(this.version, "version");
			this.version.Name = "version";
			// 
			// productName
			// 
			resources.ApplyResources(this.productName, "productName");
			this.productName.Name = "productName";
			// 
			// About
			// 
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(table);
			this.Name = "About";
			table.ResumeLayout(false);
			table.PerformLayout();
			this.ResumeLayout(false);

		}
开发者ID:dbremner,项目名称:szotar,代码行数:49,代码来源:About.Designer.cs


示例14: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
		private void InitializeComponent()
		{
			tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			label1 = new System.Windows.Forms.Label();
			pictureBox1 = new System.Windows.Forms.PictureBox();
			tableLayoutPanel1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
			base.SuspendLayout();
			tableLayoutPanel1.ColumnCount = 2;
			tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			tableLayoutPanel1.Controls.Add(label1, 0, 0);
			tableLayoutPanel1.Controls.Add(pictureBox1, 0, 0);
			tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
			tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
			tableLayoutPanel1.Name = "tableLayoutPanel1";
			tableLayoutPanel1.RowCount = 1;
			tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100f));
			tableLayoutPanel1.Size = new System.Drawing.Size(0x191, 0x1a);
			tableLayoutPanel1.TabIndex = 0;
			label1.AutoSize = true;
			label1.Dock = System.Windows.Forms.DockStyle.Fill;
			label1.Location = new System.Drawing.Point(0xe7, 2);
			label1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 0);
			label1.Name = "label1";
			label1.Size = new System.Drawing.Size(0xa7, 0x18);
			label1.TabIndex = 3;
			label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
			pictureBox1.Image = SVNMonitor.Resources.Images.animation_8_1;
			pictureBox1.Location = new System.Drawing.Point(3, 3);
			pictureBox1.Name = "pictureBox1";
			pictureBox1.Size = new System.Drawing.Size(0xde, 20);
			pictureBox1.TabIndex = 2;
			pictureBox1.TabStop = false;
			base.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
			base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			base.Controls.Add(tableLayoutPanel1);
			base.Name = "AnimationProgressBar";
			base.Size = new System.Drawing.Size(0x191, 0x1a);
			tableLayoutPanel1.ResumeLayout(false);
			tableLayoutPanel1.PerformLayout();
			((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
			base.ResumeLayout(false);
		}
开发者ID:tgmayfield,项目名称:svn-monitor,代码行数:49,代码来源:AnimationProgressBar.Designer.cs


示例15: InitializeComponent

 /// <summary>
 /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
 /// コード エディタで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormulatorDialog));
     this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     this.FApplyButton = new System.Windows.Forms.Button();
     this.FCloseButton = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // tableLayoutPanel
     //
     resources.ApplyResources(this.tableLayoutPanel, "tableLayoutPanel");
     this.tableLayoutPanel.Name = "tableLayoutPanel";
     //
     // FApplyButton
     //
     resources.ApplyResources(this.FApplyButton, "FApplyButton");
     this.FApplyButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.FApplyButton.Name = "FApplyButton";
     this.FApplyButton.UseVisualStyleBackColor = true;
     //
     // FCloseButton
     //
     resources.ApplyResources(this.FCloseButton, "FCloseButton");
     this.FCloseButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.FCloseButton.Name = "FCloseButton";
     this.FCloseButton.UseVisualStyleBackColor = true;
     //
     // FormulatorDialog
     //
     this.AcceptButton = this.FApplyButton;
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.FCloseButton;
     this.Controls.Add(this.FApplyButton);
     this.Controls.Add(this.tableLayoutPanel);
     this.Controls.Add(this.FCloseButton);
     this.Name = "FormulatorDialog";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormulatorDialog_FormClosing);
     this.ResumeLayout(false);
 }
开发者ID:ecell,项目名称:ecell3-ide,代码行数:44,代码来源:FormulatorDialog.designer.cs


示例16: 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();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tmrRefresh = new System.Windows.Forms.Timer(this.components);
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.AutoSize = true;
     this.tableLayoutPanel1.BackColor = System.Drawing.SystemColors.Control;
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(696, 130);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tmrRefresh
     //
     this.tmrRefresh.Enabled = true;
     this.tmrRefresh.Interval = 5000;
     this.tmrRefresh.Tick += new System.EventHandler(this.tmrRefresh_Tick);
     //
     // TimeLine
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.Controls.Add(this.tableLayoutPanel1);
     this.Name = "TimeLine";
     this.Size = new System.Drawing.Size(702, 560);
     this.Load += new System.EventHandler(this.TimeLine_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:WesselKuipers,项目名称:ICT4Events,代码行数:42,代码来源:TimeLine.designer.cs


示例17: 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.Windows.Forms.GroupBox groupBox1;
            System.Windows.Forms.GroupBox groupBox2;
            System.Windows.Forms.GroupBox groupBox3;
            System.Windows.Forms.GroupBox groupBox4;
            System.Windows.Forms.TableLayoutPanel tableLayoutControls;
            System.Windows.Forms.GroupBox groupBox 

鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
C# Forms.TextBox类代码示例发布时间:2022-05-24
下一篇:
C# Forms.TabPage类代码示例发布时间: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