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


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

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


在下文中一共展示了System.Windows.Forms.TableLayoutPanel.PerformLayout方法的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 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

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

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

示例4: InitializeComponent

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

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

示例6: InitializeComponent


//.........这里部分代码省略.........
            this.decryptMessageButton.Location = new System.Drawing.Point(0, 0);
            this.decryptMessageButton.Name = "decryptMessageButton";
            this.decryptMessageButton.Size = new System.Drawing.Size(292, 26);
            this.decryptMessageButton.TabIndex = 5;
            this.decryptMessageButton.Text = "Decrypt the message";
            this.decryptMessageButton.UseVisualStyleBackColor = true;
            this.decryptMessageButton.Visible = false;
            this.decryptMessageButton.Click += new System.EventHandler(this.decryptMessageButton_Click);
            // 
            // publicKeyForEncryptionComboBox
            // 
            this.publicKeyForEncryptionComboBox.DisplayMember = "Description";
            this.publicKeyForEncryptionComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.publicKeyForEncryptionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.publicKeyForEncryptionComboBox.FormattingEnabled = true;
            this.publicKeyForEncryptionComboBox.Location = new System.Drawing.Point(0, 0);
            this.publicKeyForEncryptionComboBox.Name = "publicKeyForEncryptionComboBox";
            this.publicKeyForEncryptionComboBox.Size = new System.Drawing.Size(292, 21);
            this.publicKeyForEncryptionComboBox.TabIndex = 3;
            this.publicKeyForEncryptionComboBox.ValueMember = "Description";
            this.publicKeyForEncryptionComboBox.Visible = false;
            this.publicKeyForEncryptionComboBox.SelectedValueChanged += new System.EventHandler(this.publicKeyForEncryptionComboBox_SelectedValueChanged);
            // 
            // copyMyPublicKeyButton
            // 
            this.copyMyPublicKeyButton.Dock = System.Windows.Forms.DockStyle.Fill;
            this.copyMyPublicKeyButton.Location = new System.Drawing.Point(0, 0);
            this.copyMyPublicKeyButton.Name = "copyMyPublicKeyButton";
            this.copyMyPublicKeyButton.Size = new System.Drawing.Size(292, 26);
            this.copyMyPublicKeyButton.TabIndex = 1;
            this.copyMyPublicKeyButton.Text = "Copy my public key to clipboard";
            this.copyMyPublicKeyButton.UseVisualStyleBackColor = true;
            this.copyMyPublicKeyButton.Click += new System.EventHandler(this.copyMyPublicKeyButton_Click);
            // 
            // emptyLabel
            // 
            this.emptyLabel.AutoSize = true;
            this.emptyLabel.Location = new System.Drawing.Point(3, 0);
            this.emptyLabel.Name = "emptyLabel";
            this.emptyLabel.Size = new System.Drawing.Size(0, 1);
            this.emptyLabel.TabIndex = 4;
            // 
            // inputAndNotificationPanel
            // 
            inputAndNotificationPanel.Controls.Add(this.notificationPopup);
            inputAndNotificationPanel.Controls.Add(this.inputTextBox);
            inputAndNotificationPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            inputAndNotificationPanel.Location = new System.Drawing.Point(3, 3);
            inputAndNotificationPanel.Name = "inputAndNotificationPanel";
            inputAndNotificationPanel.Size = new System.Drawing.Size(292, 205);
            inputAndNotificationPanel.TabIndex = 5;
            // 
            // notificationPopup
            // 
            this.notificationPopup.AutoSize = true;
            this.notificationPopup.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.notificationPopup.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.notificationPopup.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notificationPopup.ForeColor = System.Drawing.Color.White;
            this.notificationPopup.Location = new System.Drawing.Point(0, 0);
            this.notificationPopup.Name = "notificationPopup";
            this.notificationPopup.Size = new System.Drawing.Size(82, 21);
            this.notificationPopup.TabIndex = 1;
            this.notificationPopup.Visible = false;
            // 
            // inputTextBox
            // 
            this.inputTextBox.AcceptsReturn = true;
            this.inputTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.inputTextBox.Location = new System.Drawing.Point(0, 0);
            this.inputTextBox.Multiline = true;
            this.inputTextBox.Name = "inputTextBox";
            this.inputTextBox.Size = new System.Drawing.Size(292, 205);
            this.inputTextBox.TabIndex = 7;
            this.inputTextBox.TextChanged += new System.EventHandler(this.inputTextBox_TextChanged);
            this.inputTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.inputTextBox_KeyDown);
            // 
            // MessageEncrypterForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(298, 243);
            this.Controls.Add(layoutPanel);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "MessageEncrypterForm";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Message Encrypter";
            this.Load += new System.EventHandler(this.MessageEncrypterForm_Load);
            layoutPanel.ResumeLayout(false);
            layoutPanel.PerformLayout();
            actionPanel.ResumeLayout(false);
            actionPanel.PerformLayout();
            inputAndNotificationPanel.ResumeLayout(false);
            inputAndNotificationPanel.PerformLayout();
            this.ResumeLayout(false);

        }
开发者ID:conradreuter,项目名称:MessageEncrypter,代码行数:101,代码来源:MessageEncrypterForm.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.Button buttonOK;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MySqlDataConnectionPromptDialog));
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.Button buttonCancel;
            this.savePassword = new System.Windows.Forms.CheckBox();
            this.login = new System.Windows.Forms.TextBox();
            this.password = new System.Windows.Forms.TextBox();
            buttonOK = new System.Windows.Forms.Button();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            label1 = new System.Windows.Forms.Label();
            label3 = new System.Windows.Forms.Label();
            buttonCancel = new System.Windows.Forms.Button();
            tableLayoutPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // buttonOK
            // 
            buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(buttonOK, "buttonOK");
            buttonOK.Name = "buttonOK";
            buttonOK.UseVisualStyleBackColor = true;
            buttonOK.Click += new System.EventHandler(this.OkClick);
            // 
            // tableLayoutPanel1
            // 
            resources.ApplyResources(tableLayoutPanel1, "tableLayoutPanel1");
            tableLayoutPanel1.Controls.Add(label1, 0, 1);
            tableLayoutPanel1.Controls.Add(this.savePassword, 1, 2);
            tableLayoutPanel1.Controls.Add(label3, 0, 0);
            tableLayoutPanel1.Controls.Add(this.login, 1, 0);
            tableLayoutPanel1.Controls.Add(this.password, 1, 1);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            // 
            // label1
            // 
            resources.ApplyResources(label1, "label1");
            label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
            label1.Name = "label1";
            // 
            // savePassword
            // 
            resources.ApplyResources(this.savePassword, "savePassword");
            this.savePassword.Name = "savePassword";
            // 
            // label3
            // 
            resources.ApplyResources(label3, "label3");
            label3.FlatStyle = System.Windows.Forms.FlatStyle.System;
            label3.Name = "label3";
            // 
            // login
            // 
            resources.ApplyResources(this.login, "login");
            this.login.Name = "login";
            this.login.Tag = "User id";
            // 
            // password
            // 
            resources.ApplyResources(this.password, "password");
            this.password.Name = "password";
            this.password.Tag = "Password";
            this.password.UseSystemPasswordChar = true;
            // 
            // buttonCancel
            // 
            buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            resources.ApplyResources(buttonCancel, "buttonCancel");
            buttonCancel.Name = "buttonCancel";
            buttonCancel.UseVisualStyleBackColor = true;
            // 
            // MySqlDataConnectionPromptDialog
            // 
            this.AcceptButton = buttonOK;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = buttonCancel;
            this.Controls.Add(buttonCancel);
            this.Controls.Add(tableLayoutPanel1);
            this.Controls.Add(buttonOK);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "MySqlDataConnectionPromptDialog";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
开发者ID:tdhieu,项目名称:openvss,代码行数:99,代码来源:MySqlDataConnectionPromptDialog.Designer.cs

示例8: InitializeComponent


//.........这里部分代码省略.........
            this.showDisabled.Name = "showDisabled";
            this.showDisabled.Size = new System.Drawing.Size(143, 22);
            this.showDisabled.Text = "Show Disabled";
            this.showDisabled.Click += new System.EventHandler(this.hideDisabled_Click);
            // 
            // showEmpty
            // 
            this.showEmpty.Image = global::renderdocui.Properties.Resources.page_white_database;
            this.showEmpty.Name = "showEmpty";
            this.showEmpty.Size = new System.Drawing.Size(143, 22);
            this.showEmpty.Text = "Show Empty";
            this.showEmpty.Click += new System.EventHandler(this.hideEmpty_Click);
            // 
            // toolTip
            // 
            this.toolTip.UseAnimation = false;
            this.toolTip.UseFading = false;
            // 
            // exportDialog
            // 
            this.exportDialog.DefaultExt = "html";
            this.exportDialog.Filter = "HTML Files (*.html)|*.html";
            this.exportDialog.Title = "Export pipeline state as HTML";
            // 
            // VulkanPipelineStateViewer
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(toolstripTable);
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Name = "VulkanPipelineStateViewer";
            this.Size = new System.Drawing.Size(1112, 600);
            toolstripTable.ResumeLayout(false);
            toolstripTable.PerformLayout();
            this.flowLayoutPanel6.ResumeLayout(false);
            this.flowLayoutPanel6.PerformLayout();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.stageTabControl.ResumeLayout(false);
            this.tabIA.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.tableLayoutPanel13.ResumeLayout(false);
            this.tableLayoutPanel13.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.topologyDiagram)).EndInit();
            this.groupBox4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.viBuffers)).EndInit();
            groupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.viAttrs)).EndInit();
            groupBox44.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.meshView)).EndInit();
            this.tabVS.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.tableLayoutPanel2.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.flowLayoutPanel3.ResumeLayout(false);
            this.flowLayoutPanel3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.vsShaderCog)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.vsShaderEdit)).EndInit();
            this.groupBox7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.vsResources)).EndInit();
            this.groupBox9.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.vsCBuffers)).EndInit();
            this.tabHS.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
开发者ID:Cry-Filami,项目名称:renderdoc,代码行数:67,代码来源:VulkanPipelineStateViewer.Designer.cs

示例9: InitializeComponent


//.........这里部分代码省略.........
            tableLayoutPanel1.Controls.Add(this.refresh, 2, 1);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 2;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.Size = new System.Drawing.Size(488, 297);
            tableLayoutPanel1.TabIndex = 2;
            // 
            // hosts
            // 
            this.hosts.AlwaysDisplayVScroll = true;
            treeListColumn1.AutoSize = true;
            treeListColumn1.AutoSizeMinSize = 15;
            treeListColumn1.Width = 48;
            treeListColumn2.AutoSizeMinSize = 15;
            treeListColumn2.Width = 80;
            treeListColumn3.AutoSizeMinSize = 15;
            treeListColumn3.Width = 125;
            this.hosts.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn1,
            treeListColumn2,
            treeListColumn3});
            tableLayoutPanel1.SetColumnSpan(this.hosts, 4);
            this.hosts.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.hosts.Dock = System.Windows.Forms.DockStyle.Fill;
            this.hosts.Location = new System.Drawing.Point(3, 3);
            this.hosts.MultiSelect = false;
            this.hosts.Name = "hosts";
            this.hosts.RowOptions.ShowHeader = false;
            this.hosts.Size = new System.Drawing.Size(482, 262);
            this.hosts.TabIndex = 1;
            this.hosts.ViewOptions.HoverHandTreeColumn = false;
            this.hosts.ViewOptions.Indent = 12;
            this.hosts.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.hosts_AfterSelect);
            this.hosts.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.hosts_NodeDoubleClicked);
            this.hosts.KeyDown += new System.Windows.Forms.KeyEventHandler(this.hosts_KeyDown);
            // 
            // connect
            // 
            this.connect.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.connect.Enabled = false;
            this.connect.Location = new System.Drawing.Point(410, 271);
            this.connect.Margin = new System.Windows.Forms.Padding(32, 3, 3, 3);
            this.connect.Name = "connect";
            this.connect.Size = new System.Drawing.Size(75, 23);
            this.connect.TabIndex = 5;
            this.connect.Text = "Connect";
            this.connect.UseVisualStyleBackColor = true;
            this.connect.Click += new System.EventHandler(this.connect_Click);
            // 
            // addhost
            // 
            this.addhost.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.addhost.Location = new System.Drawing.Point(219, 271);
            this.addhost.Name = "addhost";
            this.addhost.Size = new System.Drawing.Size(75, 23);
            this.addhost.TabIndex = 3;
            this.addhost.Text = "Add Host";
            this.addhost.UseVisualStyleBackColor = true;
            this.addhost.Click += new System.EventHandler(this.addhost_Click);
            // 
            // hostname
            // 
            this.hostname.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.hostname.Location = new System.Drawing.Point(3, 271);
            this.hostname.Name = "hostname";
            this.hostname.Size = new System.Drawing.Size(210, 20);
            this.hostname.TabIndex = 2;
            this.hostname.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.hostname_KeyPress);
            // 
            // refresh
            // 
            this.refresh.Location = new System.Drawing.Point(300, 271);
            this.refresh.Name = "refresh";
            this.refresh.Size = new System.Drawing.Size(75, 23);
            this.refresh.TabIndex = 4;
            this.refresh.Text = "Refresh";
            this.refresh.UseVisualStyleBackColor = true;
            this.refresh.Click += new System.EventHandler(this.refresh_Click);
            // 
            // RemoteHostSelect
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(488, 297);
            this.Controls.Add(tableLayoutPanel1);
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.Name = "RemoteHostSelect";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Attach to running instance";
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.hosts)).EndInit();
            this.ResumeLayout(false);

        }
开发者ID:Cry-Filami,项目名称:renderdoc,代码行数:101,代码来源:RemoteHostSelect.Designer.cs

示例10: InitializeComponent


//.........这里部分代码省略.........
            this.regionZ.Size = new System.Drawing.Size(93, 20);
            this.regionZ.TabIndex = 7;
            this.regionZ.ValueChanged += new System.EventHandler(this.regionZ_ValueChanged);
            // 
            // comboBoxRegion
            // 
            tableLayoutPanel1.SetColumnSpan(this.comboBoxRegion, 2);
            this.comboBoxRegion.Dock = System.Windows.Forms.DockStyle.Fill;
            this.comboBoxRegion.FormattingEnabled = true;
            this.comboBoxRegion.Location = new System.Drawing.Point(3, 3);
            this.comboBoxRegion.Name = "comboBoxRegion";
            this.comboBoxRegion.Size = new System.Drawing.Size(256, 21);
            this.comboBoxRegion.TabIndex = 3;
            this.comboBoxRegion.SelectedIndexChanged += new System.EventHandler(this.comboBoxRegion_SelectedIndexChanged);
            // 
            // cbComputeZ
            // 
            this.cbComputeZ.AutoSize = true;
            tableLayoutPanel1.SetColumnSpan(this.cbComputeZ, 2);
            this.cbComputeZ.Dock = System.Windows.Forms.DockStyle.Top;
            this.cbComputeZ.Location = new System.Drawing.Point(3, 185);
            this.cbComputeZ.Name = "cbComputeZ";
            this.cbComputeZ.Size = new System.Drawing.Size(256, 17);
            this.cbComputeZ.TabIndex = 2;
            this.cbComputeZ.Text = "Compute Z from Alphamap";
            this.cbComputeZ.UseVisualStyleBackColor = true;
            this.cbComputeZ.CheckedChanged += new System.EventHandler(this.cbComputeZ_CheckedChanged);
            // 
            // headerStrip1
            // 
            this.headerStrip1.AutoSize = false;
            this.headerStrip1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.headerStrip1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.headerStrip1.ForeColor = System.Drawing.Color.Gray;
            this.headerStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.headerStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripLabel1});
            this.headerStrip1.Location = new System.Drawing.Point(0, 27);
            this.headerStrip1.Name = "headerStrip1";
            this.headerStrip1.Size = new System.Drawing.Size(131, 25);
            this.headerStrip1.TabIndex = 1;
            this.headerStrip1.TextDirection = System.Windows.Forms.ToolStripTextDirection.Vertical90;
            // 
            // toolStripLabel1
            // 
            this.toolStripLabel1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolStripLabel1.Name = "toolStripLabel1";
            this.toolStripLabel1.Size = new System.Drawing.Size(43, 22);
            this.toolStripLabel1.Text = "Zone";
            this.toolStripLabel1.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
            // 
            // headerStrip2
            // 
            this.headerStrip2.AutoSize = false;
            this.headerStrip2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.headerStrip2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.headerStrip2.ForeColor = System.Drawing.Color.Gray;
            this.headerStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.headerStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripLabel2});
            this.headerStrip2.Location = new System.Drawing.Point(131, 27);
            this.headerStrip2.Name = "headerStrip2";
            this.headerStrip2.Size = new System.Drawing.Size(131, 25);
            this.headerStrip2.TabIndex = 4;
            // 
            // toolStripLabel2
            // 
            this.toolStripLabel2.Name = "toolStripLabel2";
            this.toolStripLabel2.Size = new System.Drawing.Size(58, 22);
            this.toolStripLabel2.Text = "Region";
            // 
            // PositionConverter
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(tableLayoutPanel1);
            this.Name = "PositionConverter";
            this.Size = new System.Drawing.Size(262, 249);
            this.Load += new System.EventHandler(this.PositionConverter_Load);
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.tableLayoutPanel2.ResumeLayout(false);
            this.tableLayoutPanel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.zoneX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.zoneY)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.zoneZ)).EndInit();
            this.groupBox2.ResumeLayout(false);
            this.tableLayoutPanel3.ResumeLayout(false);
            this.tableLayoutPanel3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.regionX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.regionY)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.regionZ)).EndInit();
            this.headerStrip1.ResumeLayout(false);
            this.headerStrip1.PerformLayout();
            this.headerStrip2.ResumeLayout(false);
            this.headerStrip2.PerformLayout();
            this.ResumeLayout(false);

		}
开发者ID:Dawn-of-Light,项目名称:QuestDesigner,代码行数:101,代码来源:PositionConverter.Designer.cs

示例11: InitializeComponent


//.........这里部分代码省略.........
            this.stupidDateEditor = new LionEditor.StupidDateEditor();
            this.featListBox = new System.Windows.Forms.ListBox();
            nameLabel = new System.Windows.Forms.Label();
            stateLabel = new System.Windows.Forms.Label();
            dateLabel = new System.Windows.Forms.Label();
            table = new System.Windows.Forms.TableLayoutPanel();
            table.SuspendLayout();
            this.SuspendLayout();
            // 
            // nameLabel
            // 
            nameLabel.AutoSize = true;
            nameLabel.Dock = System.Windows.Forms.DockStyle.Fill;
            nameLabel.Location = new System.Drawing.Point( 3, 0 );
            nameLabel.Name = "nameLabel";
            nameLabel.Size = new System.Drawing.Size( 216, 13 );
            nameLabel.TabIndex = 3;
            nameLabel.Text = "Name";
            nameLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // stateLabel
            // 
            stateLabel.AutoSize = true;
            stateLabel.Dock = System.Windows.Forms.DockStyle.Fill;
            stateLabel.Location = new System.Drawing.Point( 225, 0 );
            stateLabel.Name = "stateLabel";
            stateLabel.Size = new System.Drawing.Size( 82, 13 );
            stateLabel.TabIndex = 4;
            stateLabel.Text = "State";
            stateLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // dateLabel
            // 
            dateLabel.AutoSize = true;
            dateLabel.Dock = System.Windows.Forms.DockStyle.Fill;
            dateLabel.Location = new System.Drawing.Point( 313, 0 );
            dateLabel.Name = "dateLabel";
            dateLabel.Size = new System.Drawing.Size( 174, 13 );
            dateLabel.TabIndex = 5;
            dateLabel.Text = "Date";
            dateLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // stateComboBox
            // 
            this.stateComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.stateComboBox.FormattingEnabled = true;
            this.stateComboBox.Location = new System.Drawing.Point( 225, 16 );
            this.stateComboBox.Name = "stateComboBox";
            this.stateComboBox.Size = new System.Drawing.Size( 82, 21 );
            this.stateComboBox.TabIndex = 2;
            // 
            // table
            // 
            table.ColumnCount = 3;
            table.ColumnStyles.Add( new System.Windows.Forms.ColumnStyle( System.Windows.Forms.SizeType.Absolute, 222F ) );
            table.ColumnStyles.Add( new System.Windows.Forms.ColumnStyle( System.Windows.Forms.SizeType.Absolute, 88F ) );
            table.ColumnStyles.Add( new System.Windows.Forms.ColumnStyle( System.Windows.Forms.SizeType.Absolute, 180F ) );
            table.Controls.Add( this.stupidDateEditor, 2, 1 );
            table.Controls.Add( this.stateComboBox, 1, 1 );
            table.Controls.Add( nameLabel, 0, 0 );
            table.Controls.Add( stateLabel, 1, 0 );
            table.Controls.Add( dateLabel, 2, 0 );
            table.Controls.Add( this.featListBox, 0, 1 );
            table.Dock = System.Windows.Forms.DockStyle.Fill;
            table.Location = new System.Drawing.Point( 0, 0 );
            table.Name = "table";
            table.RowCount = 2;
            table.RowStyles.Add( new System.Windows.Forms.RowStyle() );
            table.RowStyles.Add( new System.Windows.Forms.RowStyle() );
            table.RowStyles.Add( new System.Windows.Forms.RowStyle( System.Windows.Forms.SizeType.Absolute, 20F ) );
            table.Size = new System.Drawing.Size( 490, 298 );
            table.TabIndex = 3;
            // 
            // stupidDateEditor
            // 
            this.stupidDateEditor.Location = new System.Drawing.Point( 313, 16 );
            this.stupidDateEditor.Name = "stupidDateEditor";
            this.stupidDateEditor.Size = new System.Drawing.Size( 174, 27 );
            this.stupidDateEditor.TabIndex = 0;
            // 
            // featListBox
            // 
            this.featListBox.FormattingEnabled = true;
            this.featListBox.Location = new System.Drawing.Point( 3, 16 );
            this.featListBox.Name = "featListBox";
            this.featListBox.Size = new System.Drawing.Size( 216, 251 );
            this.featListBox.TabIndex = 6;
            // 
            // FeatsEditor
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F );
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add( table );
            this.Name = "FeatsEditor";
            this.Size = new System.Drawing.Size( 490, 298 );
            table.ResumeLayout( false );
            table.PerformLayout();
            this.ResumeLayout( false );

        }
开发者ID:Wi150nZ,项目名称:lioneditor,代码行数:101,代码来源:FeatsEditor.Designer.cs

示例12: InitializeComponent


//.........这里部分代码省略.........
            // panelHideTheOptions
            // 
            this.panelHideTheOptions.BackColor = System.Drawing.SystemColors.ControlDark;
            this.panelHideTheOptions.Controls.Add(this.panelContainTheProgressBar);
            this.panelHideTheOptions.Location = new System.Drawing.Point(3, 88);
            this.panelHideTheOptions.Name = "panelHideTheOptions";
            this.panelHideTheOptions.Size = new System.Drawing.Size(1067, 356);
            this.panelHideTheOptions.TabIndex = 3;
            // 
            // buttonRate
            // 
            this.buttonRate.AccessibleDescription = "Speed up or slow down your video.";
            this.buttonRate.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.buttonRate.Enabled = false;
            this.buttonRate.Name = "buttonRate";
            this.buttonRate.Size = new System.Drawing.Size(78, 22);
            this.buttonRate.Text = "Change Rate";
            this.buttonRate.Click += new System.EventHandler(this.buttonRate_Click);
            this.buttonRate.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip);
            this.buttonRate.MouseLeave += new System.EventHandler(this.clearToolTip);
            // 
            // MainForm
            // 
            this.AcceptButton = this.buttonGo;
            this.AllowDrop = true;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1073, 446);
            this.Controls.Add(statusStrip);
            this.Controls.Add(tableMainForm);
            this.Controls.Add(this.panelHideTheOptions);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimumSize = new System.Drawing.Size(975, 270);
            this.Name = "MainForm";
            this.Padding = new System.Windows.Forms.Padding(3, 3, 3, 0);
            this.Text = "WebM for Gits";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
            this.Load += new System.EventHandler(this.MainForm_Load);
            this.Shown += new System.EventHandler(this.MainForm_Shown);
            this.DragDrop += new System.Windows.Forms.DragEventHandler(this.HandleDragDrop);
            this.DragEnter += new System.Windows.Forms.DragEventHandler(this.HandleDragEnter);
            tableMainForm.ResumeLayout(false);
            groupMain.ResumeLayout(false);
            tableMain.ResumeLayout(false);
            tableMain.PerformLayout();
            tabControlOptions.ResumeLayout(false);
            tabProcessing.ResumeLayout(false);
            tableProcessing.ResumeLayout(false);
            tableProcessing.PerformLayout();
            toolStripProcessing.ResumeLayout(false);
            toolStripProcessing.PerformLayout();
            panelProcessingInput.ResumeLayout(false);
            panelProcessingInput.PerformLayout();
            tabEncoding.ResumeLayout(false);
            tableEncoding.ResumeLayout(false);
            groupEncodingGeneral.ResumeLayout(false);
            tableEncodingGeneral.ResumeLayout(false);
            tableEncodingGeneral.PerformLayout();
            groupEncodingVideo.ResumeLayout(false);
            this.tableLayoutPanelEncodingVideo.ResumeLayout(false);
            this.tableLayoutPanelEncodingVideo.PerformLayout();
            panelEncodingModeSwapper.ResumeLayout(false);
            this.tableVideoConstantOptions.ResumeLayout(false);
            this.tableVideoConstantOptions.PerformLayout();
            this.tableVideoVariableOptions.ResumeLayout(false);
            this.tableVideoVariableOptions.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericCrf)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericCrfTolerance)).EndInit();
            groupEncodingAudio.ResumeLayout(false);
            tableEncodingAudio.ResumeLayout(false);
            tableEncodingAudio.PerformLayout();
            panelEncodingModeSwapperTwo.ResumeLayout(false);
            this.tableAudioConstantOptions.ResumeLayout(false);
            this.tableAudioConstantOptions.PerformLayout();
            this.tableAudioVariableOptions.ResumeLayout(false);
            this.tableAudioVariableOptions.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericAudioQuality)).EndInit();
            tabAdvanced.ResumeLayout(false);
            tableAdvanced.ResumeLayout(false);
            tableAdvanced.PerformLayout();
            groupAdvancedProcessing.ResumeLayout(false);
            tableAdvancedProcessing.ResumeLayout(false);
            tableAdvancedProcessing.PerformLayout();
            groupAdvancedEncoding.ResumeLayout(false);
            tableAdvancedEncoding.ResumeLayout(false);
            tableAdvancedEncoding.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackThreads)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackSlices)).EndInit();
            statusStrip.ResumeLayout(false);
            statusStrip.PerformLayout();
            this.panelContainTheProgressBar.ResumeLayout(false);
            this.panelContainTheProgressBar.PerformLayout();
            this.panelHideTheOptions.ResumeLayout(false);
            this.panelHideTheOptions.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
开发者ID:CaptSpify,项目名称:WebMConverter,代码行数:101,代码来源:MainForm.Designer.cs

示例13: InitializeComponent


//.........这里部分代码省略.........
            // 
            // wordSeparator
            // 
            this.wordSeparator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.wordSeparator.FormattingEnabled = true;
            this.wordSeparator.Items.AddRange(new object[] {
            "[space]",
            ".",
            "-",
            "_"});
            this.wordSeparator.Location = new System.Drawing.Point(6, 76);
            this.wordSeparator.Name = "wordSeparator";
            this.wordSeparator.Size = new System.Drawing.Size(65, 21);
            this.wordSeparator.TabIndex = 2;
            // 
            // episodeNameButton
            // 
            this.episodeNameButton.Location = new System.Drawing.Point(6, 48);
            this.episodeNameButton.Name = "episodeNameButton";
            this.episodeNameButton.Size = new System.Drawing.Size(65, 23);
            this.episodeNameButton.TabIndex = 1;
            this.episodeNameButton.Text = "Episode";
            this.episodeNameButton.UseVisualStyleBackColor = true;
            this.episodeNameButton.Click += new System.EventHandler(this.EpisodeNameButtonClick);
            // 
            // showNameButton
            // 
            this.showNameButton.Location = new System.Drawing.Point(6, 19);
            this.showNameButton.Name = "showNameButton";
            this.showNameButton.Size = new System.Drawing.Size(65, 23);
            this.showNameButton.TabIndex = 0;
            this.showNameButton.Text = "Show";
            this.showNameButton.UseVisualStyleBackColor = true;
            this.showNameButton.Click += new System.EventHandler(this.ShowNameButtonClick);
            // 
            // dateGroup
            // 
            dateGroup.AutoSize = true;
            dateGroup.Controls.Add(this.dateFormat);
            dateGroup.Controls.Add(this.dateExample);
            dateGroup.Controls.Add(this.dateButton);
            dateGroup.Location = new System.Drawing.Point(174, 9);
            dateGroup.Name = "dateGroup";
            dateGroup.Size = new System.Drawing.Size(77, 119);
            dateGroup.TabIndex = 8;
            dateGroup.TabStop = false;
            dateGroup.Text = "Date";
            // 
            // dateFormat
            // 
            this.dateFormat.Location = new System.Drawing.Point(6, 51);
            this.dateFormat.Name = "dateFormat";
            this.dateFormat.Size = new System.Drawing.Size(65, 20);
            this.dateFormat.TabIndex = 1;
            this.dateFormat.TextChanged += new System.EventHandler(this.DateFormatTextChanged);
            // 
            // dateExample
            // 
            this.dateExample.Location = new System.Drawing.Point(6, 77);
            this.dateExample.Name = "dateExample";
            this.dateExample.ReadOnly = true;
            this.dateExample.Size = new System.Drawing.Size(65, 20);
            this.dateExample.TabIndex = 2;
            // 
            // dateButton
            // 
            this.dateButton.Location = new System.Drawing.Point(6, 19);
            this.dateButton.Name = "dateButton";
            this.dateButton.Size = new System.Drawing.Size(65, 23);
            this.dateButton.TabIndex = 0;
            this.dateButton.Text = "Date";
            this.dateButton.UseVisualStyleBackColor = true;
            this.dateButton.Click += new System.EventHandler(this.DateButtonClick);
            // 
            // FormatBuilder
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(371, 221);
            this.Controls.Add(tableMain);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimumSize = new System.Drawing.Size(387, 259);
            this.Name = "FormatBuilder";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Format Builder";
            this.Load += new System.EventHandler(this.FormatBuilderLoad);
            tableMain.ResumeLayout(false);
            tableMain.PerformLayout();
            flowButtons.ResumeLayout(false);
            panel.ResumeLayout(false);
            panel.PerformLayout();
            groupNumbers.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.digitalSelector)).EndInit();
            otherGroup.ResumeLayout(false);
            namesGroup.ResumeLayout(false);
            dateGroup.ResumeLayout(false);
            dateGroup.PerformLayout();
            this.ResumeLayout(false);

        }
开发者ID:a-jackson,项目名称:tvsorter,代码行数:101,代码来源:FormatBuilder.Designer.cs

示例14: InitializeComponent


//.........这里部分代码省略.........
			lblDateOfPublication.Name = "lblDateOfPublication";
			// 
			// lblAuthor
			// 
			resources.ApplyResources(lblAuthor, "lblAuthor");
			tplPanel1.SetColumnSpan(lblAuthor, 2);
			lblAuthor.Name = "lblAuthor";
			// 
			// btnSearchOnBrowser
			// 
			resources.ApplyResources(btnSearchOnBrowser, "btnSearchOnBrowser");
			btnSearchOnBrowser.Name = "btnSearchOnBrowser";
			btnSearchOnBrowser.UseVisualStyleBackColor = true;
			btnSearchOnBrowser.Click += new System.EventHandler(this.btnSearchOnBrowser_Click);
			// 
			// cmbAuthor
			// 
			resources.ApplyResources(this.cmbAuthor, "cmbAuthor");
			tplPanel1.SetColumnSpan(this.cmbAuthor, 2);
			this.cmbAuthor.DropDownHeight = 256;
			this.cmbAuthor.FormattingEnabled = true;
			this.cmbAuthor.Name = "cmbAuthor";
			this.cmbAuthor.TextChanged += new System.EventHandler(this.cmbAuthor_TextChanged);
			// 
			// dtpDateOfPublication
			// 
			resources.ApplyResources(this.dtpDateOfPublication, "dtpDateOfPublication");
			this.dtpDateOfPublication.Checked = false;
			this.dtpDateOfPublication.Name = "dtpDateOfPublication";
			this.dtpDateOfPublication.ShowCheckBox = true;
			this.dtpDateOfPublication.ValueChanged += new System.EventHandler(this.dtpDateOfIssue_ValueChanged);
			// 
			// tplPanel2
			// 
			resources.ApplyResources(tplPanel2, "tplPanel2");
			tplPanel2.Controls.Add(this.lblThumbnail, 0, 0);
			tplPanel2.Controls.Add(this.preThumbnail, 0, 2);
			tplPanel2.Controls.Add(this.btnUpdate, 1, 1);
			tplPanel2.Controls.Add(this.lblSize, 0, 3);
			tplPanel2.Controls.Add(this.numThumbnailIndex, 0, 1);
			tplPanel2.Controls.Add(btnEdit, 1, 3);
			tplPanel2.Name = "tplPanel2";
			// 
			// lblThumbnail
			// 
			resources.ApplyResources(this.lblThumbnail, "lblThumbnail");
			this.lblThumbnail.Name = "lblThumbnail";
			// 
			// preThumbnail
			// 
			resources.ApplyResources(this.preThumbnail, "preThumbnail");
			tplPanel2.SetColumnSpan(this.preThumbnail, 2);
			this.preThumbnail.Description = null;
			this.preThumbnail.Image = null;
			this.preThumbnail.Name = "preThumbnail";
			this.preThumbnail.StretchMode = Comical.Controls.PreviewerStretchMode.Uniform;
			// 
			// btnUpdate
			// 
			resources.ApplyResources(this.btnUpdate, "btnUpdate");
			this.btnUpdate.Name = "btnUpdate";
			this.btnUpdate.UseVisualStyleBackColor = true;
			this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
			// 
			// lblSize
			// 
			resources.ApplyResources(this.lblSize, "lblSize");
			this.lblSize.Name = "lblSize";
			// 
			// numThumbnailIndex
			// 
			resources.ApplyResources(this.numThumbnailIndex, "numThumbnailIndex");
			this.numThumbnailIndex.Name = "numThumbnailIndex";
			// 
			// btnEdit
			// 
			resources.ApplyResources(btnEdit, "btnEdit");
			btnEdit.Name = "btnEdit";
			btnEdit.UseVisualStyleBackColor = true;
			btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
			// 
			// DocumentView
			// 
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
			resources.ApplyResources(this, "$this");
			this.Controls.Add(splMain);
			this.HideOnClose = true;
			this.Name = "DocumentView";
			splMain.Panel1.ResumeLayout(false);
			splMain.Panel2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(splMain)).EndInit();
			splMain.ResumeLayout(false);
			tplPanel1.ResumeLayout(false);
			tplPanel1.PerformLayout();
			tplPanel2.ResumeLayout(false);
			tplPanel2.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.numThumbnailIndex)).EndInit();
			this.ResumeLayout(false);

		}
开发者ID:kavenblog,项目名称:Comical,代码行数:101,代码来源:DocumentView.Designer.cs

示例15: InitializeComponent


//.........这里部分代码省略.........
            this.Notes.Location = new System.Drawing.Point(321, 138);
            this.Notes.Multiline = true;
            this.Notes.Name = "Notes";
            tableLayoutPanel5.SetRowSpan(this.Notes, 2);
            this.Notes.Size = new System.Drawing.Size(282, 45);
            this.Notes.TabIndex = 20;
            // 
            // labelClasses
            // 
            this.labelClasses.AutoSize = true;
            this.labelClasses.Location = new System.Drawing.Point(3, 189);
            this.labelClasses.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
            this.labelClasses.Name = "labelClasses";
            this.labelClasses.Size = new System.Drawing.Size(83, 13);
            this.labelClasses.TabIndex = 25;
            this.labelClasses.Text = "Allowed Classes";
            // 
            // listBoxAllowed
            // 
            this.listBoxAllowed.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listBoxAllowed.FormattingEnabled = true;
            this.listBoxAllowed.Location = new System.Drawing.Point(115, 189);
            this.listBoxAllowed.Name = "listBoxAllowed";
            this.listBoxAllowed.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
            this.listBoxAllowed.Size = new System.Drawing.Size(170, 69);
            this.listBoxAllowed.TabIndex = 26;
            // 
            // listBoxAvailable
            // 
            tableLayoutPanel5.SetColumnSpan(this.listBoxAvailable, 3);
            this.listBoxAvailable.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listBoxAvailable.FormattingEnabled = true;
            this.listBoxAvailable.Location = new System.Drawing.Point(321, 189);
            this.listBoxAvailable.Name = "listBoxAvailable";
            this.listBoxAvailable.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
            this.listBoxAvailable.Size = new System.Drawing.Size(282, 69);
            this.listBoxAvailable.TabIndex = 27;
            // 
            // flowLayoutPanel1
            // 
            this.flowLayoutPanel1.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.flowLayoutPanel1.Controls.Add(this.buttonAddClass);
            this.flowLayoutPanel1.Controls.Add(this.buttonRemoveClass);
            this.flowLayoutPanel1.Location = new System.Drawing.Point(291, 189);
            this.flowLayoutPanel1.Name = "flowLayoutPanel1";
            this.flowLayoutPanel1.Size = new System.Drawing.Size(24, 74);
            this.flowLayoutPanel1.TabIndex = 28;
            // 
            // buttonAddClass
            // 
            this.buttonAddClass.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.buttonAddClass.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.buttonAddClass.Location = new System.Drawing.Point(1, 1);
            this.buttonAddClass.Margin = new System.Windows.Forms.Padding(1);
            this.buttonAddClass.Name = "buttonAddClass";
            this.buttonAddClass.Size = new System.Drawing.Size(23, 23);
            this.buttonAddClass.TabIndex = 0;
            this.buttonAddClass.Text = "<";
            this.buttonAddClass.UseVisualStyleBackColor = true;
            this.buttonAddClass.Click += new System.EventHandler(this.buttonAddClass_Click);
            // 
            // buttonRemoveClass
            // 
            this.buttonRemoveClass.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.buttonRemoveClass.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.buttonRemoveClass.Location = new System.Drawing.Point(1, 26);
            this.buttonRemoveClass.Margin = new System.Windows.Forms.Padding(1);
            this.buttonRemoveClass.Name = "buttonRemoveClass";
            this.buttonRemoveClass.Size = new System.Drawing.Size(23, 23);
            this.buttonRemoveClass.TabIndex = 1;
            this.buttonRemoveClass.Text = ">";
            this.buttonRemoveClass.UseVisualStyleBackColor = true;
            this.buttonRemoveClass.Click += new System.EventHandler(this.buttonRemoveClass_Click);
            // 
            // errorProvider
            // 
            this.errorProvider.ContainerControl = this;
            // 
            // QuestInfo
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(tableLayoutPanel5);
            this.Name = "QuestInfo";
            this.Size = new System.Drawing.Size(606, 464);
            tableLayoutPanel5.ResumeLayout(false);
            tableLayoutPanel5.PerformLayout();
            headerStrip2.ResumeLayout(false);
            headerStrip2.PerformLayout();
            headerStrip1.ResumeLayout(false);
            headerStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.QuestStep)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LevelMin)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LevelMax)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaxQuestCount)).EndInit();
            this.flowLayoutPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
            this.ResumeLayout(false);

		}
开发者ID:Dawn-of-Light,项目名称:QuestDesigner,代码行数:101,代码来源:QuestInfo.Designer.cs


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