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


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

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


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

示例1: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.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.prevTrackToolStripMenuItem.Name = "prevTrackToolStripMenuItem";
            resources.ApplyResources(this.prevTrackToolStripMenuItem, "prevTrackToolStripMenuItem");
            this.prevTrackToolStripMenuItem.Click += new System.EventHandler(this.prevTrackToolStripMenuItem_Click);
            // 
            // playPauseToolStripMenuItem
            // 
            this.playPauseToolStripMenuItem.Name = "playPauseToolStripMenuItem";
            resources.ApplyResources(this.playPauseToolStripMenuItem, "playPauseToolStripMenuItem");
            this.playPauseToolStripMenuItem.Click += new System.EventHandler(this.playPauseToolStripMenuItem_Click);
            // 
            // nextTrackToolStripMenuItem
            // 
            this.nextTrackToolStripMenuItem.Name = "nextTrackToolStripMenuItem";
            resources.ApplyResources(this.nextTrackToolStripMenuItem, "nextTrackToolStripMenuItem");
            this.nextTrackToolStripMenuItem.Click += new System.EventHandler(this.nextTrackToolStripMenuItem_Click);
            // 
            // exitIPlaylistToolStripMenuItem
            // 
            this.exitIPlaylistToolStripMenuItem.Name = "exitIPlaylistToolStripMenuItem";
            resources.ApplyResources(this.exitIPlaylistToolStripMenuItem, "exitIPlaylistToolStripMenuItem");
            this.exitIPlaylistToolStripMenuItem.Click += new System.EventHandler(this.exitIPlaylistToolStripMenuItem_Click);
            // 
            // timerScreenUpdate
            // 
            this.timerScreenUpdate.Interval = 500;
            this.timerScreenUpdate.Tick += new System.EventHandler(this.timerScreenUpdate_Tick);
            // 
            // bgwCreatePlaylist
            // 
            this.bgwCreatePlaylist.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwCreatePlaylist_DoWork);
            this.bgwCreatePlaylist.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwCreatePlaylist_RunWorkerCompleted);
            // 
            // lblOnlinePeriod
            // 
            resources.ApplyResources(this.lblOnlinePeriod, "lblOnlinePeriod");
            this.lblOnlinePeriod.Name = "lblOnlinePeriod";
            // 
            // label1
            // 
            resources.ApplyResources(this.label1, "label1");
            this.label1.Name = "label1";
            // 
            // bgwUpdateCheck
            // 
            this.bgwUpdateCheck.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwUpdateCheck_DoWork);
            this.bgwUpdateCheck.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwUpdateCheck_RunWorkerCompleted);
            // 
            // frmMain
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.tabsMain);
            this.Controls.Add(this.stsMain);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.Name = "frmMain";
            this.Load += new System.EventHandler(this.frmMain_Load);
            this.SizeChanged += new System.EventHandler(this.frmMain_SizeChanged);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
            groupBox1.ResumeLayout(false);
            groupBox2.ResumeLayout(false);
            groupBox3.ResumeLayout(false);
            groupBox4.ResumeLayout(false);
            tableLayoutControls.ResumeLayout(false);
            groupBox5.ResumeLayout(false);
            groupBox5.PerformLayout();
            tableLayoutProgressBar.ResumeLayout(false);
            groupBox6.ResumeLayout(false);
            this.tblPaneliPlaylistInfo.ResumeLayout(false);
            this.tblPaneliPlaylistInfo.PerformLayout();
            groupBox7.ResumeLayout(false);
            groupBox7.PerformLayout();
            groupBox8.ResumeLayout(false);
            groupBox8.PerformLayout();
            groupBox9.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel1.PerformLayout();
            groupBox10.ResumeLayout(false);
            this.tableLayoutPresets.ResumeLayout(false);
            groupBox11.ResumeLayout(false);
            panel2.ResumeLayout(false);
            this.stsMain.ResumeLayout(false);
            this.stsMain.PerformLayout();
            this.tabsMain.ResumeLayout(false);
            this.tabInfo.ResumeLayout(false);
            this.tblPanelInfo.ResumeLayout(false);
            this.tabRating.ResumeLayout(false);
            this.tblPanelRating.ResumeLayout(false);
            this.tabSettings.ResumeLayout(false);
            this.tblPanelSettings.ResumeLayout(false);
            this.tabAbout.ResumeLayout(false);
            this.tblPanelAbout.ResumeLayout(false);
            this.tblPanelAbout.PerformLayout();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pbAbout)).EndInit();
            this.contextMenuIcon.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
开发者ID:e-Deniska,项目名称:iPlaylist,代码行数:101,代码来源:frmMain.Designer.cs

示例9: InitializeComponent


//.........这里部分代码省略.........
            // 
            this.colorDialog.AnyColor = true;
            // 
            // resolveSamples
            // 
            this.resolveSamples.AutoSize = true;
            flowLayoutPanel5.SetFlowBreak(this.resolveSamples, true);
            this.resolveSamples.Location = new System.Drawing.Point(3, 26);
            this.resolveSamples.Name = "resolveSamples";
            this.resolveSamples.Size = new System.Drawing.Size(108, 17);
            this.resolveSamples.TabIndex = 4;
            this.resolveSamples.Text = "Resolve Samples";
            this.resolveSamples.UseVisualStyleBackColor = true;
            this.resolveSamples.CheckedChanged += new System.EventHandler(this.resolveSamples_CheckedChanged);
            // 
            // groupBox2
            // 
            groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            groupBox2.Controls.Add(this.filename);
            groupBox2.Controls.Add(browse);
            groupBox2.Location = new System.Drawing.Point(3, 3);
            groupBox2.Name = "groupBox2";
            groupBox2.Size = new System.Drawing.Size(369, 44);
            groupBox2.TabIndex = 7;
            groupBox2.TabStop = false;
            groupBox2.Text = "Path";
            // 
            // browse
            // 
            browse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            browse.Location = new System.Drawing.Point(334, 15);
            browse.Name = "browse";
            browse.Size = new System.Drawing.Size(26, 23);
            browse.TabIndex = 0;
            browse.Text = "...";
            browse.UseVisualStyleBackColor = true;
            browse.Click += new System.EventHandler(this.browse_Click);
            // 
            // filename
            // 
            this.filename.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.filename.Location = new System.Drawing.Point(9, 15);
            this.filename.Name = "filename";
            this.filename.Size = new System.Drawing.Size(319, 20);
            this.filename.TabIndex = 1;
            // 
            // saveTexDialog
            // 
            this.saveTexDialog.DefaultExt = "dds";
            this.saveTexDialog.Title = "Save Texture As";
            // 
            // TextureSaveDialog
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.ClientSize = new System.Drawing.Size(375, 521);
            this.Controls.Add(tableLayoutPanel1);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "TextureSaveDialog";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Save Texture";
            this.Shown += new System.EventHandler(this.TextureSaveDialog_Shown);
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            groupBox1.ResumeLayout(false);
            groupBox1.PerformLayout();
            flowLayoutPanel1.ResumeLayout(false);
            flowLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.jpegCompression)).EndInit();
            flowLayoutPanel2.ResumeLayout(false);
            this.alphaLDRGroup.ResumeLayout(false);
            this.alphaLDRGroup.PerformLayout();
            flowLayoutPanel3.ResumeLayout(false);
            flowLayoutPanel3.PerformLayout();
            this.sliceGroup.ResumeLayout(false);
            this.sliceGroup.PerformLayout();
            flowLayoutPanel6.ResumeLayout(false);
            flowLayoutPanel6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridWidth)).EndInit();
            this.mipGroup.ResumeLayout(false);
            this.mipGroup.PerformLayout();
            flowLayoutPanel4.ResumeLayout(false);
            flowLayoutPanel4.PerformLayout();
            this.sampleGroup.ResumeLayout(false);
            this.sampleGroup.PerformLayout();
            flowLayoutPanel5.ResumeLayout(false);
            flowLayoutPanel5.PerformLayout();
            groupBox2.ResumeLayout(false);
            groupBox2.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
开发者ID:Lonesled,项目名称:renderdoc,代码行数:101,代码来源:TextureSaveDialog.Designer.cs

示例10: InitializeComponent


//.........这里部分代码省略.........
            this._staticPatternLabel.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
            this._staticPatternLabel.Name = "_staticPatternLabel";
            this._staticPatternLabel.Size = new System.Drawing.Size(66, 13);
            this._staticPatternLabel.TabIndex = 0;
            this._staticPatternLabel.Text = "&URI Pattern:";
            this._staticPatternLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // _staticPattern
            // 
            this._staticPattern.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this._errorProvider.SetIconPadding(this._staticPattern, -20);
            this._staticPattern.Location = new System.Drawing.Point(86, 3);
            this._staticPattern.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3);
            this._staticPattern.MinimumSize = new System.Drawing.Size(50, 4);
            this._staticPattern.Name = "_staticPattern";
            this._staticPattern.Size = new System.Drawing.Size(345, 20);
            this._staticPattern.TabIndex = 1;
            this._staticPattern.TextChanged += new System.EventHandler(this.Setting_TextChanged);
            // 
            // _staticRewriteLabel
            // 
            this._staticRewriteLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this._staticRewriteLabel.AutoSize = true;
            this._staticRewriteLabel.Location = new System.Drawing.Point(6, 32);
            this._staticRewriteLabel.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
            this._staticRewriteLabel.Name = "_staticRewriteLabel";
            this._staticRewriteLabel.Size = new System.Drawing.Size(68, 13);
            this._staticRewriteLabel.TabIndex = 2;
            this._staticRewriteLabel.Text = "URI Re&write:";
            this._staticRewriteLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // _staticRewrite
            // 
            this._staticRewrite.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this._staticRewrite.Location = new System.Drawing.Point(86, 29);
            this._staticRewrite.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3);
            this._staticRewrite.MinimumSize = new System.Drawing.Size(50, 4);
            this._staticRewrite.Name = "_staticRewrite";
            this._staticRewrite.Size = new System.Drawing.Size(345, 20);
            this._staticRewrite.TabIndex = 3;
            this._staticRewrite.TextChanged += new System.EventHandler(this.Setting_TextChanged);
            // 
            // _webGroup
            // 
            this._webGroup.AutoSize = true;
            this._webGroup.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this._webGroup.Controls.Add(tableLayoutPanel2);
            this._webGroup.Dock = System.Windows.Forms.DockStyle.Fill;
            this._webGroup.Location = new System.Drawing.Point(6, 33);
            this._webGroup.Margin = new System.Windows.Forms.Padding(6, 8, 6, 8);
            this._webGroup.Name = "_webGroup";
            this._webGroup.Padding = new System.Windows.Forms.Padding(6, 8, 6, 8);
            this._webGroup.Size = new System.Drawing.Size(449, 55);
            this._webGroup.TabIndex = 1;
            this._webGroup.TabStop = false;
            this._webGroup.Text = "Web";
            // 
            // _errorProvider
            // 
            this._errorProvider.ContainerControl = this;
            this._errorProvider.Icon = ((System.Drawing.Icon)(resources.GetObject("_errorProvider.Icon")));
            // 
            // _deprecatedLabel
            // 
            this._deprecatedLabel.AutoSize = true;
            this._errorProvider.SetError(this._deprecatedLabel, "Deprecated");
            this._errorProvider.SetIconAlignment(this._deprecatedLabel, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
            this._deprecatedLabel.Location = new System.Drawing.Point(24, 6);
            this._deprecatedLabel.Margin = new System.Windows.Forms.Padding(24, 6, 3, 6);
            this._deprecatedLabel.Name = "_deprecatedLabel";
            this._deprecatedLabel.Size = new System.Drawing.Size(434, 13);
            this._deprecatedLabel.TabIndex = 0;
            this._deprecatedLabel.Text = "These options are no longer used. To configure them, add a web.config file to you" +
    "r project.";
            // 
            // PythonWebPropertyPageControl
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.Controls.Add(tableLayoutPanel1);
            this.Margin = new System.Windows.Forms.Padding(6, 8, 6, 8);
            this.Name = "PythonWebPropertyPageControl";
            this.Size = new System.Drawing.Size(461, 213);
            tableLayoutPanel2.ResumeLayout(false);
            tableLayoutPanel2.PerformLayout();
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            tableLayoutPanel3.ResumeLayout(false);
            tableLayoutPanel3.PerformLayout();
            this._webGroup.ResumeLayout(false);
            this._webGroup.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this._errorProvider)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
开发者ID:zooba,项目名称:PTVS,代码行数:101,代码来源:PythonWebPropertyPageControl.Designer.cs

示例11: InitializeComponent


//.........这里部分代码省略.........
			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
			// 
			label1.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label1.AutoSize = true;
			label1.Location = new System.Drawing.Point(13, 16);
			label1.Name = "label1";
			label1.Size = new System.Drawing.Size(41, 13);
			label1.TabIndex = 4;
			label1.Text = "Altezza";
			// 
			// checkBox1
			// 
			checkBox1.Anchor = System.Windows.Forms.AnchorStyles.Right;
			checkBox1.AutoSize = true;
			checkBox1.Location = new System.Drawing.Point(318, 14);
			checkBox1.Name = "checkBox1";
			checkBox1.Size = new System.Drawing.Size(48, 17);
			checkBox1.TabIndex = 7;
			checkBox1.Text = "Auto";
			checkBox1.UseVisualStyleBackColor = true;
			checkBox1.CheckedChanged += new System.EventHandler(CheckBox1CheckedChanged);
			// 
			// checkBox2
			// 
			checkBox2.Anchor = System.Windows.Forms.AnchorStyles.Right;
			checkBox2.AutoSize = true;
			checkBox2.Location = new System.Drawing.Point(318, 40);
			checkBox2.Name = "checkBox2";
			checkBox2.Size = new System.Drawing.Size(48, 17);
			checkBox2.TabIndex = 8;
			checkBox2.Text = "Auto";
			checkBox2.UseVisualStyleBackColor = true;
			checkBox2.CheckedChanged += new System.EventHandler(CheckBox1CheckedChanged);
			// 
			// SizeForm
			// 
			AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			ClientSize = new System.Drawing.Size(379, 103);
			Controls.Add(tableLayoutPanel1);
			Name = "SizeForm";
			Text = "SizeForm";
			tableLayoutPanel1.ResumeLayout(false);
			tableLayoutPanel1.PerformLayout();
			ResumeLayout (false);

		}
开发者ID:miniBill,项目名称:DiagramDrawer,代码行数:101,代码来源:SizeForm.Designer.cs

示例12: InitializeComponent


//.........这里部分代码省略.........
            this.btnConnect.Name = "btnConnect";
            this.btnConnect.Size = new System.Drawing.Size(112, 28);
            this.btnConnect.TabIndex = 29;
            this.btnConnect.Text = "Connect";
            this.btnConnect.UseVisualStyleBackColor = true;
            this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
            // 
            // btnExit
            // 
            this.btnExit.Location = new System.Drawing.Point(748, 66);
            this.btnExit.Margin = new System.Windows.Forms.Padding(4);
            this.btnExit.Name = "btnExit";
            this.btnExit.Size = new System.Drawing.Size(112, 28);
            this.btnExit.TabIndex = 29;
            this.btnExit.Text = "Exit";
            this.btnExit.UseVisualStyleBackColor = true;
            this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
            // 
            // FrmMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(873, 692);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.tabControl1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Margin = new System.Windows.Forms.Padding(4);
            this.MinimumSize = new System.Drawing.Size(853, 510);
            this.Name = "FrmMain";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "PS360 MIDI Pro Drummer v0.06";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SaveDefaultSettings);
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelDPadUp)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelDPadRight)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelDPadDown)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelDPadLeft)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelTriangle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelCircle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelRectangle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelSelect)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelBigButton)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteStart)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvVelStart)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteBigButton)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteSelect)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteRectangle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteCircle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteTriangle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteDPadLeft)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteDPadDown)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteDPadRight)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupAdvNoteDPadUp)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nupMIDIChannel)).EndInit();
            this.pnlHolder.ResumeLayout(false);
            this.pnlHolder.PerformLayout();
            this.groupBox7.ResumeLayout(false);
            this.groupBox7.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nupRedTom)).EndInit();
            this.groupBox6.ResumeLayout(false);
            this.groupBox6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nupYellowTom)).EndInit();
开发者ID:PProvost,项目名称:PS360ProDrummer,代码行数:67,代码来源:FrmMain.Designer.cs

示例13: InitializeComponent


//.........这里部分代码省略.........
            // 
            labelDrawingText.AutoSize = true;
            labelDrawingText.Dock = System.Windows.Forms.DockStyle.Fill;
            labelDrawingText.Location = new System.Drawing.Point(3, 107);
            labelDrawingText.Name = "labelDrawingText";
            labelDrawingText.Size = new System.Drawing.Size(568, 65);
            labelDrawingText.TabIndex = 3;
            labelDrawingText.Text = resources.GetString("labelDrawingText.Text");
            // 
            // labelReorderHeader
            // 
            labelReorderHeader.AutoSize = true;
            labelReorderHeader.Dock = System.Windows.Forms.DockStyle.Fill;
            labelReorderHeader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            labelReorderHeader.Location = new System.Drawing.Point(3, 180);
            labelReorderHeader.Name = "labelReorderHeader";
            labelReorderHeader.Size = new System.Drawing.Size(568, 16);
            labelReorderHeader.TabIndex = 4;
            labelReorderHeader.Text = "De volgorde van de vormpjes wijzigen";
            // 
            // labelReorderingText
            // 
            labelReorderingText.AutoSize = true;
            labelReorderingText.Dock = System.Windows.Forms.DockStyle.Fill;
            labelReorderingText.Location = new System.Drawing.Point(3, 196);
            labelReorderingText.Name = "labelReorderingText";
            labelReorderingText.Size = new System.Drawing.Size(568, 52);
            labelReorderingText.TabIndex = 5;
            labelReorderingText.Text = resources.GetString("labelReorderingText.Text");
            // 
            // labelSaveLoadHeader
            // 
            labelSaveLoadHeader.AutoSize = true;
            labelSaveLoadHeader.Dock = System.Windows.Forms.DockStyle.Fill;
            labelSaveLoadHeader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            labelSaveLoadHeader.Location = new System.Drawing.Point(3, 345);
            labelSaveLoadHeader.Name = "labelSaveLoadHeader";
            labelSaveLoadHeader.Size = new System.Drawing.Size(568, 16);
            labelSaveLoadHeader.TabIndex = 6;
            labelSaveLoadHeader.Text = "Opslaan, laden en overige acties";
            // 
            // labelSaveLoadText
            // 
            this.labelSaveLoadText.AutoSize = true;
            this.labelSaveLoadText.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelSaveLoadText.Location = new System.Drawing.Point(3, 361);
            this.labelSaveLoadText.Name = "labelSaveLoadText";
            this.labelSaveLoadText.Size = new System.Drawing.Size(568, 115);
            this.labelSaveLoadText.TabIndex = 8;
            this.labelSaveLoadText.Text = resources.GetString("labelSaveLoadText.Text");
            // 
            // labelUndoRedoHeader
            // 
            labelUndoRedoHeader.AutoSize = true;
            labelUndoRedoHeader.Dock = System.Windows.Forms.DockStyle.Fill;
            labelUndoRedoHeader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            labelUndoRedoHeader.Location = new System.Drawing.Point(3, 256);
            labelUndoRedoHeader.Name = "labelUndoRedoHeader";
            labelUndoRedoHeader.Size = new System.Drawing.Size(568, 16);
            labelUndoRedoHeader.TabIndex = 9;
            labelUndoRedoHeader.Text = "Undo en redo";
            // 
            // labelUndoRedoText
            // 
            this.labelUndoRedoText.AutoSize = true;
            this.labelUndoRedoText.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelUndoRedoText.Location = new System.Drawing.Point(3, 272);
            this.labelUndoRedoText.Name = "labelUndoRedoText";
            this.labelUndoRedoText.Size = new System.Drawing.Size(568, 65);
            this.labelUndoRedoText.TabIndex = 10;
            this.labelUndoRedoText.Text = resources.GetString("labelUndoRedoText.Text");
            // 
            // labelHelpHeader
            // 
            labelHelpHeader.AutoSize = true;
            labelHelpHeader.Dock = System.Windows.Forms.DockStyle.Fill;
            labelHelpHeader.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            labelHelpHeader.Location = new System.Drawing.Point(3, 0);
            labelHelpHeader.Name = "labelHelpHeader";
            labelHelpHeader.Size = new System.Drawing.Size(568, 20);
            labelHelpHeader.TabIndex = 11;
            labelHelpHeader.Text = "SchetsPlus - Help";
            labelHelpHeader.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // HelpWindow
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(574, 476);
            this.Controls.Add(tableLayoutPanel);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "HelpWindow";
            this.Text = "Help";
            tableLayoutPanel.ResumeLayout(false);
            tableLayoutPanel.PerformLayout();
            this.ResumeLayout(false);

        }
开发者ID:CasWiddershoven,项目名称:schets-plus,代码行数:101,代码来源:HelpWindow.Designer.cs

示例14: InitializeComponent


//.........这里部分代码省略.........
            // 
            this.pagesTree.AlwaysDisplayVScroll = true;
            treeListColumn1.AutoSize = true;
            treeListColumn1.AutoSizeMinSize = 0;
            treeListColumn1.Width = 50;
            this.pagesTree.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn1});
            this.pagesTree.ColumnsOptions.HeaderHeight = 1;
            this.pagesTree.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.pagesTree.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pagesTree.Location = new System.Drawing.Point(3, 3);
            this.pagesTree.MultiSelect = false;
            this.pagesTree.Name = "pagesTree";
            this.pagesTree.RowOptions.ShowHeader = false;
            this.pagesTree.Size = new System.Drawing.Size(168, 318);
            this.pagesTree.TabIndex = 1;
            this.pagesTree.ViewOptions.ShowGridLines = false;
            this.pagesTree.ViewOptions.ShowLine = false;
            this.pagesTree.ViewOptions.ShowPlusMinus = false;
            this.pagesTree.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.pagesTree_AfterSelect);
            // 
            // ok
            // 
            this.ok.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.ok.Location = new System.Drawing.Point(502, 327);
            this.ok.Name = "ok";
            this.ok.Size = new System.Drawing.Size(75, 23);
            this.ok.TabIndex = 2;
            this.ok.Text = "OK";
            this.ok.UseVisualStyleBackColor = true;
            this.ok.Click += new System.EventHandler(this.ok_Click);
            // 
            // label11
            // 
            label11.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            label11.AutoSize = true;
            label11.Location = new System.Drawing.Point(3, 162);
            label11.Name = "label11";
            label11.Size = new System.Drawing.Size(259, 29);
            label11.TabIndex = 14;
            label11.Text = "Directory for temporary capture files";
            label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.toolTip.SetToolTip(label11, "Changes the directory where capture files are saved after being created, until sa" +
        "ved manually or deleted.\r\n\r\nDefaults to %TEMP%.");
            // 
            // browseCaptureDirectory
            // 
            this.browseCaptureDirectory.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.browseCaptureDirectory.Location = new System.Drawing.Point(268, 165);
            this.browseCaptureDirectory.Name = "browseCaptureDirectory";
            this.browseCaptureDirectory.Size = new System.Drawing.Size(90, 23);
            this.browseCaptureDirectory.TabIndex = 15;
            this.browseCaptureDirectory.Text = "Browse";
            this.toolTip.SetToolTip(this.browseCaptureDirectory, "Changes the directory where capture files are saved after being created, until sa" +
        "ved manually or deleted.\r\n\r\nDefaults to %TEMP%.");
            this.browseCaptureDirectory.UseVisualStyleBackColor = true;
            this.browseCaptureDirectory.Click += new System.EventHandler(this.browseCaptureDirectory_Click);
            // 
            // browserCaptureDialog
            // 
            this.browserCaptureDialog.RootFolder = System.Environment.SpecialFolder.MyComputer;
            // 
            // SettingsDialog
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(580, 353);
            this.Controls.Add(tableLayoutPanel1);
            this.MinimumSize = new System.Drawing.Size(500, 300);
            this.Name = "SettingsDialog";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "SettingsForm";
            tableLayoutPanel1.ResumeLayout(false);
            this.settingsTabs.ResumeLayout(false);
            this.generalTab.ResumeLayout(false);
            groupBox1.ResumeLayout(false);
            tableLayoutPanel2.ResumeLayout(false);
            tableLayoutPanel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Formatter_PosExp)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Formatter_NegExp)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Formatter_MaxFigures)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Formatter_MinFigures)).EndInit();
            this.texViewTab.ResumeLayout(false);
            groupBox2.ResumeLayout(false);
            this.tableLayoutPanel3.ResumeLayout(false);
            this.tableLayoutPanel3.PerformLayout();
            this.shadViewTab.ResumeLayout(false);
            groupBox3.ResumeLayout(false);
            this.tableLayoutPanel4.ResumeLayout(false);
            this.tableLayoutPanel4.PerformLayout();
            this.eventTab.ResumeLayout(false);
            groupBox4.ResumeLayout(false);
            this.tableLayoutPanel5.ResumeLayout(false);
            this.tableLayoutPanel5.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pagesTree)).EndInit();
            this.ResumeLayout(false);

        }
开发者ID:n1nj4n,项目名称:renderdoc,代码行数:101,代码来源:SettingsDialog.Designer.cs

示例15: InitializeComponent


//.........这里部分代码省略.........
            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);
            this.backButton.Name = "backButton";
            this.backButton.Size = new System.Drawing.Size(184, 24);
            this.backButton.TabIndex = 4;
            this.backButton.Text = "Back to main screen";
            this.backButton.UseVisualStyleBackColor = true;
            // 
            // TestResultForm
            // 
            this.AcceptButton = this.backButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(784, 562);
            this.Controls.Add(tableLayoutPanel1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MaximumSize = new System.Drawing.Size(800, 600);
            this.MinimumSize = new System.Drawing.Size(800, 600);
            this.Name = "TestResultForm";
            this.Text = "Quizzer: Test Results";
            this.Load += new System.EventHandler(this.TestResultForm_Load);
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            this.ResumeLayout(false);

        }
开发者ID:teamyeah,项目名称:quizzer,代码行数:101,代码来源:TestResultForm.Designer.cs


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