当前位置: 首页>>代码示例>>C#>>正文


C# System.Windows.Forms.TableLayoutPanel.SuspendLayout方法代码示例

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


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

示例1: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.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

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

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

示例4: 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

示例5: 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

示例6: 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

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

示例8: InitializeComponent


//.........这里部分代码省略.........
            this.timerScreenUpdate = new System.Windows.Forms.Timer(this.components);
            this.bgwCreatePlaylist = new System.ComponentModel.BackgroundWorker();
            this.toolTipMainWindow = new System.Windows.Forms.ToolTip(this.components);
            this.lblOnlinePeriod = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.bgwUpdateCheck = new System.ComponentModel.BackgroundWorker();
            groupBox1 = new System.Windows.Forms.GroupBox();
            groupBox2 = new System.Windows.Forms.GroupBox();
            groupBox3 = new System.Windows.Forms.GroupBox();
            groupBox4 = new System.Windows.Forms.GroupBox();
            tableLayoutControls = new System.Windows.Forms.TableLayoutPanel();
            groupBox5 = new System.Windows.Forms.GroupBox();
            tableLayoutProgressBar = new System.Windows.Forms.TableLayoutPanel();
            groupBox6 = new System.Windows.Forms.GroupBox();
            lblPlaylistAccuracyText = new System.Windows.Forms.Label();
            lblPlayerInfoText = new System.Windows.Forms.Label();
            lblPlaylistDataText = new System.Windows.Forms.Label();
            lblRatingInfoText = new System.Windows.Forms.Label();
            lblSrcPlaytime = new System.Windows.Forms.Label();
            lblOnlineText = new System.Windows.Forms.Label();
            groupBox7 = new System.Windows.Forms.GroupBox();
            groupBox8 = new System.Windows.Forms.GroupBox();
            lblPlayingPlaylsit = new System.Windows.Forms.Label();
            groupBox9 = new System.Windows.Forms.GroupBox();
            lblLanguage = new System.Windows.Forms.Label();
            groupBox10 = new System.Windows.Forms.GroupBox();
            groupBox11 = new System.Windows.Forms.GroupBox();
            panel2 = new System.Windows.Forms.Panel();
            lblVersionLabel = new System.Windows.Forms.Label();
            lblAssemblyLabel = new System.Windows.Forms.Label();
            lblMediaVersionLabel = new System.Windows.Forms.Label();
            toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            groupBox1.SuspendLayout();
            groupBox2.SuspendLayout();
            groupBox3.SuspendLayout();
            groupBox4.SuspendLayout();
            tableLayoutControls.SuspendLayout();
            groupBox5.SuspendLayout();
            tableLayoutProgressBar.SuspendLayout();
            groupBox6.SuspendLayout();
            this.tblPaneliPlaylistInfo.SuspendLayout();
            groupBox7.SuspendLayout();
            groupBox8.SuspendLayout();
            groupBox9.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            groupBox10.SuspendLayout();
            this.tableLayoutPresets.SuspendLayout();
            groupBox11.SuspendLayout();
            panel2.SuspendLayout();
            this.stsMain.SuspendLayout();
            this.tabsMain.SuspendLayout();
            this.tabInfo.SuspendLayout();
            this.tblPanelInfo.SuspendLayout();
            this.tabRating.SuspendLayout();
            this.tblPanelRating.SuspendLayout();
            this.tabSettings.SuspendLayout();
            this.tblPanelSettings.SuspendLayout();
            this.tabAbout.SuspendLayout();
            this.tblPanelAbout.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pbAbout)).BeginInit();
            this.contextMenuIcon.SuspendLayout();
            this.SuspendLayout();
            // 
            // groupBox1
开发者ID:e-Deniska,项目名称:iPlaylist,代码行数:67,代码来源:frmMain.Designer.cs

示例9: 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 tableLayoutPanel1;
            System.Windows.Forms.GroupBox groupBox1;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Label label2;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel3;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.Label label4;
            System.Windows.Forms.Label label5;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel6;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel4;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel5;
            System.Windows.Forms.GroupBox groupBox2;
            System.Windows.Forms.Button browse;
            this.fileFormat = new System.Windows.Forms.ComboBox();
            this.jpegCompression = new System.Windows.Forms.NumericUpDown();
            this.ok = new System.Windows.Forms.Button();
            this.cancel = new System.Windows.Forms.Button();
            this.alphaLDRGroup = new System.Windows.Forms.GroupBox();
            this.alphaMap = new System.Windows.Forms.ComboBox();
            this.alphaCol = new System.Windows.Forms.Button();
            this.blackPoint = new System.Windows.Forms.TextBox();
            this.whitePoint = new System.Windows.Forms.TextBox();
            this.sliceGroup = new System.Windows.Forms.GroupBox();
            this.exportAllSlices = new System.Windows.Forms.CheckBox();
            this.oneSlice = new System.Windows.Forms.CheckBox();
            this.sliceSelect = new System.Windows.Forms.ComboBox();
            this.mapSlicesToGrid = new System.Windows.Forms.CheckBox();
            this.gridWidth = new System.Windows.Forms.NumericUpDown();
            this.cubeCruciform = new System.Windows.Forms.CheckBox();
            this.mipGroup = new System.Windows.Forms.GroupBox();
            this.exportAllMips = new System.Windows.Forms.CheckBox();
            this.oneMip = new System.Windows.Forms.CheckBox();
            this.mipSelect = new System.Windows.Forms.ComboBox();
            this.sampleGroup = new System.Windows.Forms.GroupBox();
            this.oneSample = new System.Windows.Forms.CheckBox();
            this.sampleSelect = new System.Windows.Forms.ComboBox();
            this.mapSampleArray = new System.Windows.Forms.CheckBox();
            this.colorDialog = new System.Windows.Forms.ColorDialog();
            this.resolveSamples = new System.Windows.Forms.CheckBox();
            this.filename = new System.Windows.Forms.TextBox();
            this.saveTexDialog = new System.Windows.Forms.SaveFileDialog();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            groupBox1 = new System.Windows.Forms.GroupBox();
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            label1 = new System.Windows.Forms.Label();
            label2 = new System.Windows.Forms.Label();
            flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
            flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
            label3 = new System.Windows.Forms.Label();
            label4 = new System.Windows.Forms.Label();
            label5 = new System.Windows.Forms.Label();
            flowLayoutPanel6 = new System.Windows.Forms.FlowLayoutPanel();
            flowLayoutPanel4 = new System.Windows.Forms.FlowLayoutPanel();
            flowLayoutPanel5 = new System.Windows.Forms.FlowLayoutPanel();
            groupBox2 = new System.Windows.Forms.GroupBox();
            browse = new System.Windows.Forms.Button();
            tableLayoutPanel1.SuspendLayout();
            groupBox1.SuspendLayout();
            flowLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.jpegCompression)).BeginInit();
            flowLayoutPanel2.SuspendLayout();
            this.alphaLDRGroup.SuspendLayout();
            flowLayoutPanel3.SuspendLayout();
            this.sliceGroup.SuspendLayout();
            flowLayoutPanel6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridWidth)).BeginInit();
            this.mipGroup.SuspendLayout();
            flowLayoutPanel4.SuspendLayout();
            this.sampleGroup.SuspendLayout();
            flowLayoutPanel5.SuspendLayout();
            groupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.AutoSize = true;
            tableLayoutPanel1.ColumnCount = 1;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.Controls.Add(groupBox1, 0, 1);
            tableLayoutPanel1.Controls.Add(flowLayoutPanel2, 0, 6);
            tableLayoutPanel1.Controls.Add(this.alphaLDRGroup, 0, 5);
            tableLayoutPanel1.Controls.Add(this.sliceGroup, 0, 4);
            tableLayoutPanel1.Controls.Add(this.mipGroup, 0, 2);
            tableLayoutPanel1.Controls.Add(this.sampleGroup, 0, 3);
            tableLayoutPanel1.Controls.Add(groupBox2, 0, 0);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 7;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
//.........这里部分代码省略.........
开发者ID:Lonesled,项目名称:renderdoc,代码行数:101,代码来源:TextureSaveDialog.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.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PythonWebPropertyPageControl));
            this._wsgiHandlerLabel = new System.Windows.Forms.Label();
            this._wsgiHandler = new System.Windows.Forms.TextBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this._staticPatternLabel = new System.Windows.Forms.Label();
            this._staticPattern = new System.Windows.Forms.TextBox();
            this._staticRewriteLabel = new System.Windows.Forms.Label();
            this._staticRewrite = new System.Windows.Forms.TextBox();
            this._webGroup = new System.Windows.Forms.GroupBox();
            this._toolTip = new System.Windows.Forms.ToolTip(this.components);
            this._errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this._deprecatedLabel = new System.Windows.Forms.Label();
            tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
            tableLayoutPanel2.SuspendLayout();
            tableLayoutPanel1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            tableLayoutPanel3.SuspendLayout();
            this._webGroup.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this._errorProvider)).BeginInit();
            this.SuspendLayout();
            // 
            // tableLayoutPanel2
            // 
            tableLayoutPanel2.AutoSize = true;
            tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            tableLayoutPanel2.ColumnCount = 2;
            tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel2.Controls.Add(this._wsgiHandlerLabel, 0, 0);
            tableLayoutPanel2.Controls.Add(this._wsgiHandler, 1, 0);
            tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel2.Location = new System.Drawing.Point(6, 21);
            tableLayoutPanel2.Name = "tableLayoutPanel2";
            tableLayoutPanel2.RowCount = 1;
            tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
            tableLayoutPanel2.Size = new System.Drawing.Size(437, 26);
            tableLayoutPanel2.TabIndex = 0;
            // 
            // _wsgiHandlerLabel
            // 
            this._wsgiHandlerLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this._wsgiHandlerLabel.AutoSize = true;
            this._wsgiHandlerLabel.Location = new System.Drawing.Point(6, 6);
            this._wsgiHandlerLabel.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
            this._wsgiHandlerLabel.Name = "_wsgiHandlerLabel";
            this._wsgiHandlerLabel.Size = new System.Drawing.Size(79, 13);
            this._wsgiHandlerLabel.TabIndex = 2;
            this._wsgiHandlerLabel.Text = "&WSGI Handler:";
            this._wsgiHandlerLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // _wsgiHandler
            // 
            this._wsgiHandler.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this._wsgiHandler.Location = new System.Drawing.Point(97, 3);
            this._wsgiHandler.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3);
            this._wsgiHandler.MinimumSize = new System.Drawing.Size(50, 4);
            this._wsgiHandler.Name = "_wsgiHandler";
            this._wsgiHandler.Size = new System.Drawing.Size(334, 20);
            this._wsgiHandler.TabIndex = 3;
            this._wsgiHandler.TextChanged += new System.EventHandler(this.Setting_TextChanged);
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.AutoSize = true;
            tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            tableLayoutPanel1.ColumnCount = 1;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.Controls.Add(this._deprecatedLabel, 0, 0);
            tableLayoutPanel1.Controls.Add(this.groupBox1, 0, 2);
            tableLayoutPanel1.Controls.Add(this._webGroup, 0, 1);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 4;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            tableLayoutPanel1.Size = new System.Drawing.Size(461, 213);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // groupBox1
            // 
            this.groupBox1.AutoSize = true;
            this.groupBox1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.groupBox1.Controls.Add(tableLayoutPanel3);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
//.........这里部分代码省略.........
开发者ID:zooba,项目名称:PTVS,代码行数:101,代码来源:PythonWebPropertyPageControl.Designer.cs

示例11: 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>
		void InitializeComponent() {
			textBox1 = new System.Windows.Forms.TextBox();
			textBox2 = new System.Windows.Forms.TextBox();
			tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			button1 = new System.Windows.Forms.Button();
			button2 = new System.Windows.Forms.Button();
			label2 = new System.Windows.Forms.Label();
			label1 = new System.Windows.Forms.Label();
			checkBox1 = new System.Windows.Forms.CheckBox();
			checkBox2 = new System.Windows.Forms.CheckBox();
			tableLayoutPanel1.SuspendLayout();
			SuspendLayout();
			// 
			// textBox1
			// 
			textBox1.AcceptsReturn = true;
			textBox1.Anchor = ((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right));
			textBox1.Location = new System.Drawing.Point(75, 13);
			textBox1.Name = "textBox1";
			textBox1.Size = new System.Drawing.Size(225, 20);
			textBox1.TabIndex = 0;
			textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			textBox1.KeyUp += new System.Windows.Forms.KeyEventHandler(TextBoxKeyUp);
			textBox1.Validating += new System.ComponentModel.CancelEventHandler(TextBoxValidating);
			// 
			// textBox2
			// 
			textBox2.AcceptsReturn = true;
			textBox2.Anchor = ((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right));
			textBox2.Location = new System.Drawing.Point(75, 39);
			textBox2.Name = "textBox2";
			textBox2.Size = new System.Drawing.Size(225, 20);
			textBox2.TabIndex = 1;
			textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			textBox2.KeyUp += new System.Windows.Forms.KeyEventHandler(TextBoxKeyUp);
			textBox2.Validating += new System.ComponentModel.CancelEventHandler(TextBoxValidating);
			// 
			// tableLayoutPanel1
			// 
			tableLayoutPanel1.ColumnCount = 3;
			tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
			tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			tableLayoutPanel1.Controls.Add(button1, 1, 2);
			tableLayoutPanel1.Controls.Add(button2, 2, 2);
			tableLayoutPanel1.Controls.Add(label2, 0, 1);
			tableLayoutPanel1.Controls.Add(textBox2, 1, 1);
			tableLayoutPanel1.Controls.Add(label1, 0, 0);
			tableLayoutPanel1.Controls.Add(textBox1, 1, 0);
			tableLayoutPanel1.Controls.Add(checkBox2, 2, 1);
			tableLayoutPanel1.Controls.Add(checkBox1, 2, 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 = 3;
			tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
			tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
			tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
			tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
			tableLayoutPanel1.Size = new System.Drawing.Size(379, 103);
			tableLayoutPanel1.TabIndex = 2;
			// 
			// button1
			// 
			button1.Anchor = System.Windows.Forms.AnchorStyles.Right;
			button1.Location = new System.Drawing.Point(240, 66);
			button1.Name = "button1";
			button1.Size = new System.Drawing.Size(60, 23);
			button1.TabIndex = 3;
			button1.Text = "Ok";
			button1.Click += new System.EventHandler(Button1Click);
			// 
			// button2
			// 
			button2.Anchor = System.Windows.Forms.AnchorStyles.Right;
			button2.Location = new System.Drawing.Point(306, 66);
			button2.Name = "button2";
			button2.Size = new System.Drawing.Size(60, 23);
			button2.TabIndex = 6;
			button2.Text = "Annulla";
			button2.Click += new System.EventHandler(Button2Click);
			// 
			// label2
			// 
			label2.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label2.AutoSize = true;
			label2.Location = new System.Drawing.Point(13, 42);
			label2.Name = "label2";
			label2.Size = new System.Drawing.Size(56, 13);
			label2.TabIndex = 5;
			label2.Text = "Larghezza";
			// 
			// label1
			// 
//.........这里部分代码省略.........
开发者ID:miniBill,项目名称:DiagramDrawer,代码行数:101,代码来源:SizeForm.Designer.cs

示例12: InitializeComponent


//.........这里部分代码省略.........
            label7 = new System.Windows.Forms.Label();
            label8 = new System.Windows.Forms.Label();
            label9 = new System.Windows.Forms.Label();
            label10 = new System.Windows.Forms.Label();
            label11 = new System.Windows.Forms.Label();
            label12 = new System.Windows.Forms.Label();
            label13 = new System.Windows.Forms.Label();
            label14 = new System.Windows.Forms.Label();
            label15 = new System.Windows.Forms.Label();
            label16 = new System.Windows.Forms.Label();
            label17 = new System.Windows.Forms.Label();
            label18 = new System.Windows.Forms.Label();
            label4 = new System.Windows.Forms.Label();
            label19 = new System.Windows.Forms.Label();
            label20 = new System.Windows.Forms.Label();
            label21 = new System.Windows.Forms.Label();
            label22 = new System.Windows.Forms.Label();
            label23 = new System.Windows.Forms.Label();
            label24 = new System.Windows.Forms.Label();
            label25 = new System.Windows.Forms.Label();
            label26 = new System.Windows.Forms.Label();
            label27 = new System.Windows.Forms.Label();
            label28 = new System.Windows.Forms.Label();
            label29 = new System.Windows.Forms.Label();
            label30 = new System.Windows.Forms.Label();
            label31 = new System.Windows.Forms.Label();
            label32 = new System.Windows.Forms.Label();
            label33 = new System.Windows.Forms.Label();
            label34 = new System.Windows.Forms.Label();
            label35 = new System.Windows.Forms.Label();
            label36 = new System.Windows.Forms.Label();
            label38 = new System.Windows.Forms.Label();
            label37 = new System.Windows.Forms.Label();
            tableLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelDPadUp)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelDPadRight)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelDPadDown)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelDPadLeft)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelTriangle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelCircle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelRectangle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelSelect)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelBigButton)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteStart)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelStart)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteBigButton)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteSelect)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteRectangle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteCircle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteTriangle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteDPadLeft)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteDPadDown)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteDPadRight)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteDPadUp)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupMIDIChannel)).BeginInit();
            this.pnlHolder.SuspendLayout();
            this.groupBox7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nupRedTom)).BeginInit();
            this.groupBox6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nupYellowTom)).BeginInit();
            this.groupBox5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nupBlueTom)).BeginInit();
            this.groupBox13.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nupPedalLeft)).BeginInit();
开发者ID:PProvost,项目名称:PS360ProDrummer,代码行数:67,代码来源:FrmMain.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.Label labelNewDrawingHeader;
            System.Windows.Forms.Label labelNewDrawingText;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HelpWindow));
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
            System.Windows.Forms.Label labelDrawingHeader;
            System.Windows.Forms.Label labelDrawingText;
            System.Windows.Forms.Label labelReorderHeader;
            System.Windows.Forms.Label labelReorderingText;
            System.Windows.Forms.Label labelSaveLoadHeader;
            System.Windows.Forms.Label labelUndoRedoHeader;
            System.Windows.Forms.Label labelHelpHeader;
            this.labelSaveLoadText = new System.Windows.Forms.Label();
            this.labelUndoRedoText = new System.Windows.Forms.Label();
            labelNewDrawingHeader = new System.Windows.Forms.Label();
            labelNewDrawingText = new System.Windows.Forms.Label();
            tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            labelDrawingHeader = new System.Windows.Forms.Label();
            labelDrawingText = new System.Windows.Forms.Label();
            labelReorderHeader = new System.Windows.Forms.Label();
            labelReorderingText = new System.Windows.Forms.Label();
            labelSaveLoadHeader = new System.Windows.Forms.Label();
            labelUndoRedoHeader = new System.Windows.Forms.Label();
            labelHelpHeader = new System.Windows.Forms.Label();
            tableLayoutPanel.SuspendLayout();
            this.SuspendLayout();
            // 
            // labelNewDrawingHeader
            // 
            labelNewDrawingHeader.AutoSize = true;
            labelNewDrawingHeader.Dock = System.Windows.Forms.DockStyle.Fill;
            labelNewDrawingHeader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            labelNewDrawingHeader.Location = new System.Drawing.Point(3, 28);
            labelNewDrawingHeader.Name = "labelNewDrawingHeader";
            labelNewDrawingHeader.Size = new System.Drawing.Size(568, 16);
            labelNewDrawingHeader.TabIndex = 0;
            labelNewDrawingHeader.Text = "Nieuwe schets";
            // 
            // labelNewDrawingText
            // 
            labelNewDrawingText.AutoSize = true;
            labelNewDrawingText.Dock = System.Windows.Forms.DockStyle.Fill;
            labelNewDrawingText.Location = new System.Drawing.Point(3, 44);
            labelNewDrawingText.Name = "labelNewDrawingText";
            labelNewDrawingText.Size = new System.Drawing.Size(568, 39);
            labelNewDrawingText.TabIndex = 1;
            labelNewDrawingText.Text = resources.GetString("labelNewDrawingText.Text");
            // 
            // tableLayoutPanel
            // 
            tableLayoutPanel.ColumnCount = 1;
            tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel.Controls.Add(labelNewDrawingHeader, 0, 2);
            tableLayoutPanel.Controls.Add(labelNewDrawingText, 0, 3);
            tableLayoutPanel.Controls.Add(labelDrawingHeader, 0, 5);
            tableLayoutPanel.Controls.Add(labelDrawingText, 0, 6);
            tableLayoutPanel.Controls.Add(labelReorderHeader, 0, 8);
            tableLayoutPanel.Controls.Add(labelReorderingText, 0, 9);
            tableLayoutPanel.Controls.Add(labelSaveLoadHeader, 0, 14);
            tableLayoutPanel.Controls.Add(this.labelSaveLoadText, 0, 15);
            tableLayoutPanel.Controls.Add(labelUndoRedoHeader, 0, 11);
            tableLayoutPanel.Controls.Add(this.labelUndoRedoText, 0, 12);
            tableLayoutPanel.Controls.Add(labelHelpHeader, 0, 0);
            tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel.Name = "tableLayoutPanel";
            tableLayoutPanel.RowCount = 16;
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 8F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 16F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 8F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 16F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 8F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 16F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 8F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 16F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 8F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 16F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel.Size = new System.Drawing.Size(574, 476);
            tableLayoutPanel.TabIndex = 2;
            // 
            // labelDrawingHeader
            // 
            labelDrawingHeader.AutoSize = true;
            labelDrawingHeader.Dock = System.Windows.Forms.DockStyle.Fill;
            labelDrawingHeader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            labelDrawingHeader.Location = new System.Drawing.Point(3, 91);
            labelDrawingHeader.Name = "labelDrawingHeader";
            labelDrawingHeader.Size = new System.Drawing.Size(568, 16);
            labelDrawingHeader.TabIndex = 2;
//.........这里部分代码省略.........
开发者ID:CasWiddershoven,项目名称:schets-plus,代码行数:101,代码来源:HelpWindow.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()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.GroupBox groupBox1;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
            System.Windows.Forms.Label label6;
            System.Windows.Forms.Label label4;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Label label2;
            System.Windows.Forms.Label label5;
            System.Windows.Forms.Label label7;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.GroupBox groupBox2;
            System.Windows.Forms.Label label10;
            System.Windows.Forms.GroupBox groupBox3;
            System.Windows.Forms.Label label12;
            System.Windows.Forms.GroupBox groupBox4;
            System.Windows.Forms.Label label8;
            System.Windows.Forms.Label label9;
            TreelistView.TreeListColumn treeListColumn1 = new TreelistView.TreeListColumn("Section", "Section");
            System.Windows.Forms.Label label11;
            this.settingsTabs = new renderdocui.Controls.TablessControl();
            this.generalTab = new System.Windows.Forms.TabPage();
            this.Formatter_PosExp = new System.Windows.Forms.NumericUpDown();
            this.Formatter_NegExp = new System.Windows.Forms.NumericUpDown();
            this.rdcAssoc = new System.Windows.Forms.Button();
            this.capAssoc = new System.Windows.Forms.Button();
            this.Formatter_MaxFigures = new System.Windows.Forms.NumericUpDown();
            this.Formatter_MinFigures = new System.Windows.Forms.NumericUpDown();
            this.CheckUpdate_AllowChecks = new System.Windows.Forms.CheckBox();
            this.texViewTab = new System.Windows.Forms.TabPage();
            this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
            this.TextureViewer_ResetRange = new System.Windows.Forms.CheckBox();
            this.shadViewTab = new System.Windows.Forms.TabPage();
            this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
            this.ShaderViewer_FriendlyNaming = new System.Windows.Forms.CheckBox();
            this.eventTab = new System.Windows.Forms.TabPage();
            this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
            this.EventBrowser_TimeUnit = new System.Windows.Forms.ComboBox();
            this.EventBrowser_HideEmpty = new System.Windows.Forms.CheckBox();
            this.pagesTree = new TreelistView.TreeListView();
            this.ok = new System.Windows.Forms.Button();
            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
            this.browseCaptureDirectory = new System.Windows.Forms.Button();
            this.browserCaptureDialog = new System.Windows.Forms.FolderBrowserDialog();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            groupBox1 = new System.Windows.Forms.GroupBox();
            tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            label6 = new System.Windows.Forms.Label();
            label4 = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            label2 = new System.Windows.Forms.Label();
            label5 = new System.Windows.Forms.Label();
            label7 = new System.Windows.Forms.Label();
            label3 = new System.Windows.Forms.Label();
            groupBox2 = new System.Windows.Forms.GroupBox();
            label10 = new System.Windows.Forms.Label();
            groupBox3 = new System.Windows.Forms.GroupBox();
            label12 = new System.Windows.Forms.Label();
            groupBox4 = new System.Windows.Forms.GroupBox();
            label8 = new System.Windows.Forms.Label();
            label9 = new System.Windows.Forms.Label();
            label11 = new System.Windows.Forms.Label();
            tableLayoutPanel1.SuspendLayout();
            this.settingsTabs.SuspendLayout();
            this.generalTab.SuspendLayout();
            groupBox1.SuspendLayout();
            tableLayoutPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Formatter_PosExp)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Formatter_NegExp)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Formatter_MaxFigures)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Formatter_MinFigures)).BeginInit();
            this.texViewTab.SuspendLayout();
            groupBox2.SuspendLayout();
            this.tableLayoutPanel3.SuspendLayout();
            this.shadViewTab.SuspendLayout();
            groupBox3.SuspendLayout();
            this.tableLayoutPanel4.SuspendLayout();
            this.eventTab.SuspendLayout();
            groupBox4.SuspendLayout();
            this.tableLayoutPanel5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pagesTree)).BeginInit();
            this.SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.ColumnCount = 2;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 70F));
            tableLayoutPanel1.Controls.Add(this.settingsTabs, 1, 0);
            tableLayoutPanel1.Controls.Add(this.pagesTree, 0, 0);
            tableLayoutPanel1.Controls.Add(this.ok, 1, 1);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
//.........这里部分代码省略.........
开发者ID:n1nj4n,项目名称:renderdoc,代码行数:101,代码来源:SettingsDialog.Designer.cs

示例15: 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 tableLayoutPanel1;
            System.Windows.Forms.Label label2;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TestResultForm));
            this.correctPercentLabel = new System.Windows.Forms.Label();
            this.answerCountLabel = new System.Windows.Forms.Label();
            this.nameLabel = new System.Windows.Forms.Label();
            this.backButton = new System.Windows.Forms.Button();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            label2 = new System.Windows.Forms.Label();
            tableLayoutPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.ColumnCount = 1;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.Controls.Add(this.correctPercentLabel, 0, 3);
            tableLayoutPanel1.Controls.Add(this.answerCountLabel, 0, 2);
            tableLayoutPanel1.Controls.Add(label2, 0, 1);
            tableLayoutPanel1.Controls.Add(this.nameLabel, 0, 0);
            tableLayoutPanel1.Controls.Add(this.backButton, 0, 5);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.Padding = new System.Windows.Forms.Padding(200, 150, 200, 200);
            tableLayoutPanel1.RowCount = 6;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            tableLayoutPanel1.Size = new System.Drawing.Size(784, 562);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // correctPercentLabel
            // 
            this.correctPercentLabel.AutoSize = true;
            this.correctPercentLabel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.correctPercentLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.correctPercentLabel.Location = new System.Drawing.Point(201, 251);
            this.correctPercentLabel.Margin = new System.Windows.Forms.Padding(1);
            this.correctPercentLabel.Name = "correctPercentLabel";
            this.correctPercentLabel.Size = new System.Drawing.Size(382, 28);
            this.correctPercentLabel.TabIndex = 3;
            this.correctPercentLabel.Text = "100%";
            this.correctPercentLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // answerCountLabel
            // 
            this.answerCountLabel.AutoSize = true;
            this.answerCountLabel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.answerCountLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.answerCountLabel.Location = new System.Drawing.Point(201, 221);
            this.answerCountLabel.Margin = new System.Windows.Forms.Padding(1);
            this.answerCountLabel.Name = "answerCountLabel";
            this.answerCountLabel.Size = new System.Drawing.Size(382, 28);
            this.answerCountLabel.TabIndex = 2;
            this.answerCountLabel.Text = "20/20 correct answers";
            this.answerCountLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label2
            // 
            label2.AutoSize = true;
            label2.Dock = System.Windows.Forms.DockStyle.Fill;
            label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            label2.Location = new System.Drawing.Point(201, 181);
            label2.Margin = new System.Windows.Forms.Padding(1);
            label2.Name = "label2";
            label2.Size = new System.Drawing.Size(382, 38);
            label2.TabIndex = 1;
            label2.Text = "Your test results:";
            label2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // nameLabel
            // 
            this.nameLabel.AutoSize = true;
            this.nameLabel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.nameLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.nameLabel.Location = new System.Drawing.Point(201, 151);
            this.nameLabel.Margin = new System.Windows.Forms.Padding(1);
            this.nameLabel.Name = "nameLabel";
            this.nameLabel.Size = new System.Drawing.Size(382, 28);
            this.nameLabel.TabIndex = 0;
            this.nameLabel.Text = "Test name";
            this.nameLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // backButton
            // 
            this.backButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.backButton.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.backButton.Location = new System.Drawing.Point(300, 335);
            this.backButton.Margin = new System.Windows.Forms.Padding(100, 0, 100, 0);
//.........这里部分代码省略.........
开发者ID:teamyeah,项目名称:quizzer,代码行数:101,代码来源:TestResultForm.Designer.cs


注:本文中的System.Windows.Forms.TableLayoutPanel.SuspendLayout方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。