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


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

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


在下文中一共展示了System.Windows.Forms.TableLayoutPanel.SetColumnSpan方法的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()
		{
			TC.WinForms.Controls.TSystemIconBox SideImageControl;
			System.Windows.Forms.TableLayoutPanel PanelLayout;
			TC.WinForms.Commands.ApplicationCommand VisitWebsiteCommand;
			TC.WinForms.Dialogs.DialogResultButton dialogResultButton1 = new TC.WinForms.Dialogs.DialogResultButton();
			this.LabelTitle = new TC.WinForms.Controls.TLabel();
			this.LabelCopyright = new TC.WinForms.Controls.TLabel();
			this.LabelVersion = new TC.WinForms.Controls.TLabel();
			this.Hyperlink = new TC.WinForms.Controls.TCommandHyperlink();
			SideImageControl = new TC.WinForms.Controls.TSystemIconBox();
			PanelLayout = new System.Windows.Forms.TableLayoutPanel();
			VisitWebsiteCommand = new TC.WinForms.Commands.ApplicationCommand();
			PanelLayout.SuspendLayout();
			this.SuspendLayout();
			// 
			// SideImageControl
			// 
			SideImageControl.SystemIcon = TC.WinForms.SystemIcon.FormIcon;
			SideImageControl.Location = new System.Drawing.Point(8, 8);
			SideImageControl.Name = "SideImageControl";
			SideImageControl.Size = new System.Drawing.Size(42, 98);
			SideImageControl.Dock = System.Windows.Forms.DockStyle.Left;
			SideImageControl.TabIndex = 0;
			SideImageControl.TabStop = false;
			// 
			// PanelLayout
			// 
			PanelLayout.AutoSize = true;
			PanelLayout.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			PanelLayout.ColumnCount = 2;
			PanelLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 15F));
			PanelLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			PanelLayout.Controls.Add(this.LabelTitle, 0, 0);
			PanelLayout.Controls.Add(this.LabelCopyright, 1, 2);
			PanelLayout.Controls.Add(this.LabelVersion, 1, 1);
			PanelLayout.Controls.Add(this.Hyperlink, 1, 3);
			PanelLayout.Dock = System.Windows.Forms.DockStyle.Fill;
			PanelLayout.Location = new System.Drawing.Point(50, 8);
			PanelLayout.Name = "PanelLayout";
			PanelLayout.Padding = new System.Windows.Forms.Padding(5);
			PanelLayout.RowCount = 4;
			PanelLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
			PanelLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
			PanelLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
			PanelLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
			PanelLayout.Size = new System.Drawing.Size(122, 98);
			PanelLayout.TabIndex = 4;
			// 
			// LabelTitle
			// 
			this.LabelTitle.AutoSize = true;
			PanelLayout.SetColumnSpan(this.LabelTitle, 2);
			this.LabelTitle.Location = new System.Drawing.Point(8, 8);
			this.LabelTitle.Margin = new System.Windows.Forms.Padding(3);
			this.LabelTitle.Name = "LabelTitle";
			this.LabelTitle.Size = new System.Drawing.Size(64, 25);
			this.LabelTitle.SystemFont = TC.WinForms.SystemFont.Header;
			this.LabelTitle.TabIndex = 1;
			this.LabelTitle.Text = "{Title}";
			// 
			// LabelCopyright
			// 
			this.LabelCopyright.AutoSize = true;
			this.LabelCopyright.Location = new System.Drawing.Point(23, 58);
			this.LabelCopyright.Margin = new System.Windows.Forms.Padding(3);
			this.LabelCopyright.Name = "LabelCopyright";
			this.LabelCopyright.Size = new System.Drawing.Size(59, 13);
			this.LabelCopyright.TabIndex = 3;
			this.LabelCopyright.Text = "{Copyright}";
			// 
			// LabelVersion
			// 
			this.LabelVersion.AutoSize = true;
			this.LabelVersion.Location = new System.Drawing.Point(23, 39);
			this.LabelVersion.Margin = new System.Windows.Forms.Padding(3);
			this.LabelVersion.Name = "LabelVersion";
			this.LabelVersion.Size = new System.Drawing.Size(91, 13);
			this.LabelVersion.TabIndex = 2;
			this.LabelVersion.Text = "Version: {Version}";
			// 
			// Hyperlink
			// 
			this.Hyperlink.AutoSize = true;
			this.Hyperlink.Command = VisitWebsiteCommand;
			this.Hyperlink.Location = new System.Drawing.Point(23, 77);
			this.Hyperlink.Margin = new System.Windows.Forms.Padding(3);
			this.Hyperlink.Name = "Hyperlink";
			this.Hyperlink.Size = new System.Drawing.Size(37, 13);
			this.Hyperlink.TabIndex = 4;
			this.Hyperlink.TabStop = true;
			this.Hyperlink.Text = "{URL}";
			// 
			// VisitWebsiteCommand
			// 
			VisitWebsiteCommand.Executed += new System.EventHandler(this.HandlerVisitWebsiteCommandExecuted);
//.........这里部分代码省略.........
开发者ID:tommy-carlier,项目名称:tc-libs,代码行数:101,代码来源:TAboutDialogContentControl.Designer.cs

示例4: InitializeComponent


//.........这里部分代码省略.........
            this.cbShowFilenameInTitle.UseVisualStyleBackColor = true;
            // 
            // lblUISettingAppliedAfterRestart
            // 
            resources.ApplyResources(lblUISettingAppliedAfterRestart, "lblUISettingAppliedAfterRestart");
            lblUISettingAppliedAfterRestart.Name = "lblUISettingAppliedAfterRestart";
            // 
            // gbCustomMetadata
            // 
            resources.ApplyResources(gbCustomMetadata, "gbCustomMetadata");
            gbCustomMetadata.Controls.Add(tlpCustomMetadata);
            gbCustomMetadata.Name = "gbCustomMetadata";
            gbCustomMetadata.TabStop = false;
            // 
            // tlpCustomMetadata
            // 
            resources.ApplyResources(tlpCustomMetadata, "tlpCustomMetadata");
            tlpCustomMetadata.Controls.Add(this.btnMetadata, 0, 1);
            tlpCustomMetadata.Controls.Add(this.lblMetadataDescription, 0, 0);
            tlpCustomMetadata.Controls.Add(this.btnClearCustomMetadata, 1, 1);
            tlpCustomMetadata.Name = "tlpCustomMetadata";
            // 
            // btnMetadata
            // 
            resources.ApplyResources(this.btnMetadata, "btnMetadata");
            this.btnMetadata.Image = global::easyMoney.Manager.Properties.Resources.page;
            this.btnMetadata.Name = "btnMetadata";
            this.btnMetadata.UseVisualStyleBackColor = true;
            this.btnMetadata.Click += new System.EventHandler(this.btnMetadata_Click);
            // 
            // lblMetadataDescription
            // 
            resources.ApplyResources(this.lblMetadataDescription, "lblMetadataDescription");
            tlpCustomMetadata.SetColumnSpan(this.lblMetadataDescription, 2);
            this.lblMetadataDescription.Name = "lblMetadataDescription";
            // 
            // btnClearCustomMetadata
            // 
            resources.ApplyResources(this.btnClearCustomMetadata, "btnClearCustomMetadata");
            this.btnClearCustomMetadata.Image = global::easyMoney.Manager.Properties.Resources.exclamation;
            this.btnClearCustomMetadata.Name = "btnClearCustomMetadata";
            this.btnClearCustomMetadata.UseVisualStyleBackColor = true;
            this.btnClearCustomMetadata.Click += new System.EventHandler(this.btnClearCustomMetadata_Click);
            // 
            // gbFileSettings
            // 
            resources.ApplyResources(gbFileSettings, "gbFileSettings");
            gbFileSettings.Controls.Add(tlpPortabilitySettings);
            gbFileSettings.Name = "gbFileSettings";
            gbFileSettings.TabStop = false;
            // 
            // tlpPortabilitySettings
            // 
            resources.ApplyResources(tlpPortabilitySettings, "tlpPortabilitySettings");
            tlpPortabilitySettings.Controls.Add(this.cbShowOpenDialogEachStart, 0, 2);
            tlpPortabilitySettings.Controls.Add(lblPortabilityInfo, 0, 3);
            tlpPortabilitySettings.Controls.Add(this.numKeepArchivesDays, 1, 0);
            tlpPortabilitySettings.Controls.Add(lblKeepArchivesDays, 0, 0);
            tlpPortabilitySettings.Name = "tlpPortabilitySettings";
            // 
            // cbShowOpenDialogEachStart
            // 
            resources.ApplyResources(this.cbShowOpenDialogEachStart, "cbShowOpenDialogEachStart");
            tlpPortabilitySettings.SetColumnSpan(this.cbShowOpenDialogEachStart, 2);
            this.cbShowOpenDialogEachStart.Name = "cbShowOpenDialogEachStart";
            this.cbShowOpenDialogEachStart.UseVisualStyleBackColor = true;
开发者ID:e-Deniska,项目名称:easyMoney,代码行数:67,代码来源:SettingsForm.Designer.cs

示例5: InitializeComponent


//.........这里部分代码省略.........
            tableEncodingGeneral.Controls.Add(labelGeneralModeConstantHint, 3, 1);
            tableEncodingGeneral.Controls.Add(labelGeneralMode, 0, 1);
            tableEncodingGeneral.Controls.Add(labelGeneralTitle, 0, 0);
            tableEncodingGeneral.Controls.Add(this.boxTitle, 1, 0);
            tableEncodingGeneral.Controls.Add(labelGeneralTitleHint, 4, 0);
            tableEncodingGeneral.Controls.Add(this.boxConstant, 1, 1);
            tableEncodingGeneral.Controls.Add(this.boxVariable, 1, 2);
            tableEncodingGeneral.Controls.Add(this.buttonConstantDefault, 2, 1);
            tableEncodingGeneral.Dock = System.Windows.Forms.DockStyle.Fill;
            tableEncodingGeneral.Location = new System.Drawing.Point(3, 16);
            tableEncodingGeneral.Name = "tableEncodingGeneral";
            tableEncodingGeneral.RowCount = 3;
            tableEncodingGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableEncodingGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableEncodingGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            tableEncodingGeneral.Size = new System.Drawing.Size(1035, 82);
            tableEncodingGeneral.TabIndex = 0;
            // 
            // buttonVariableDefault
            // 
            this.buttonVariableDefault.Dock = System.Windows.Forms.DockStyle.Fill;
            this.buttonVariableDefault.Location = new System.Drawing.Point(170, 59);
            this.buttonVariableDefault.Name = "buttonVariableDefault";
            this.buttonVariableDefault.Size = new System.Drawing.Size(54, 22);
            this.buttonVariableDefault.TabIndex = 5;
            this.buttonVariableDefault.Text = "Default";
            this.buttonVariableDefault.UseVisualStyleBackColor = true;
            this.buttonVariableDefault.Visible = false;
            this.buttonVariableDefault.Click += new System.EventHandler(this.buttonVariableDefault_Click);
            // 
            // labelGeneralModeVariableHint
            // 
            labelGeneralModeVariableHint.AutoSize = true;
            tableEncodingGeneral.SetColumnSpan(labelGeneralModeVariableHint, 2);
            labelGeneralModeVariableHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelGeneralModeVariableHint.Location = new System.Drawing.Point(230, 56);
            labelGeneralModeVariableHint.Name = "labelGeneralModeVariableHint";
            labelGeneralModeVariableHint.Size = new System.Drawing.Size(802, 28);
            labelGeneralModeVariableHint.TabIndex = 0;
            labelGeneralModeVariableHint.Text = "This will make your video get the size it deserves to look good.";
            labelGeneralModeVariableHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelGeneralModeConstantHint
            // 
            labelGeneralModeConstantHint.AutoSize = true;
            tableEncodingGeneral.SetColumnSpan(labelGeneralModeConstantHint, 2);
            labelGeneralModeConstantHint.Dock = System.Windows.Forms.DockStyle.Fill;
            labelGeneralModeConstantHint.Location = new System.Drawing.Point(230, 28);
            labelGeneralModeConstantHint.Name = "labelGeneralModeConstantHint";
            labelGeneralModeConstantHint.Size = new System.Drawing.Size(802, 28);
            labelGeneralModeConstantHint.TabIndex = 0;
            labelGeneralModeConstantHint.Text = "This will make your video have a specific filesize, and suffer lower quality to m" +
    "atch that size.";
            labelGeneralModeConstantHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelGeneralMode
            // 
            labelGeneralMode.AutoSize = true;
            labelGeneralMode.Dock = System.Windows.Forms.DockStyle.Fill;
            labelGeneralMode.Location = new System.Drawing.Point(3, 28);
            labelGeneralMode.Name = "labelGeneralMode";
            labelGeneralMode.Size = new System.Drawing.Size(73, 28);
            labelGeneralMode.TabIndex = 0;
            labelGeneralMode.Text = "Mode:";
            labelGeneralMode.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
开发者ID:CaptSpify,项目名称:WebMConverter,代码行数:67,代码来源:MainForm.Designer.cs

示例6: InitializeComponent

		/// <summary>
		/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
		/// コード エディターで変更しないでください。
		/// </summary>
		void InitializeComponent()
		{
			System.Windows.Forms.SplitContainer splMain;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DocumentView));
			System.Windows.Forms.TableLayoutPanel tplPanel1;
			System.Windows.Forms.Label lblPageTurningDirection;
			System.Windows.Forms.Label lblCultureDependingDateOfPublication;
			System.Windows.Forms.Label lblTitle;
			System.Windows.Forms.Label lblDateOfPublication;
			System.Windows.Forms.Label lblAuthor;
			System.Windows.Forms.Button btnSearchOnBrowser;
			System.Windows.Forms.TableLayoutPanel tplPanel2;
			System.Windows.Forms.Button btnEdit;
			this.cmbPageTurningDirection = new System.Windows.Forms.ComboBox();
			this.txtCultureDependingDateOfPublication = new System.Windows.Forms.TextBox();
			this.txtTitle = new System.Windows.Forms.TextBox();
			this.cmbAuthor = new System.Windows.Forms.ComboBox();
			this.dtpDateOfPublication = new System.Windows.Forms.DateTimePicker();
			this.lblThumbnail = new System.Windows.Forms.Label();
			this.preThumbnail = new Comical.Controls.Previewer();
			this.btnUpdate = new System.Windows.Forms.Button();
			this.lblSize = new System.Windows.Forms.Label();
			this.numThumbnailIndex = new System.Windows.Forms.NumericUpDown();
			splMain = new System.Windows.Forms.SplitContainer();
			tplPanel1 = new System.Windows.Forms.TableLayoutPanel();
			lblPageTurningDirection = new System.Windows.Forms.Label();
			lblCultureDependingDateOfPublication = new System.Windows.Forms.Label();
			lblTitle = new System.Windows.Forms.Label();
			lblDateOfPublication = new System.Windows.Forms.Label();
			lblAuthor = new System.Windows.Forms.Label();
			btnSearchOnBrowser = new System.Windows.Forms.Button();
			tplPanel2 = new System.Windows.Forms.TableLayoutPanel();
			btnEdit = new System.Windows.Forms.Button();
			((System.ComponentModel.ISupportInitialize)(splMain)).BeginInit();
			splMain.Panel1.SuspendLayout();
			splMain.Panel2.SuspendLayout();
			splMain.SuspendLayout();
			tplPanel1.SuspendLayout();
			tplPanel2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numThumbnailIndex)).BeginInit();
			this.SuspendLayout();
			// 
			// splMain
			// 
			resources.ApplyResources(splMain, "splMain");
			splMain.Name = "splMain";
			// 
			// splMain.Panel1
			// 
			splMain.Panel1.Controls.Add(tplPanel1);
			// 
			// splMain.Panel2
			// 
			splMain.Panel2.Controls.Add(tplPanel2);
			// 
			// tplPanel1
			// 
			resources.ApplyResources(tplPanel1, "tplPanel1");
			tplPanel1.Controls.Add(this.cmbPageTurningDirection, 0, 9);
			tplPanel1.Controls.Add(lblPageTurningDirection, 0, 8);
			tplPanel1.Controls.Add(this.txtCultureDependingDateOfPublication, 0, 7);
			tplPanel1.Controls.Add(lblCultureDependingDateOfPublication, 0, 6);
			tplPanel1.Controls.Add(lblTitle, 0, 0);
			tplPanel1.Controls.Add(this.txtTitle, 0, 1);
			tplPanel1.Controls.Add(lblDateOfPublication, 0, 4);
			tplPanel1.Controls.Add(lblAuthor, 0, 2);
			tplPanel1.Controls.Add(btnSearchOnBrowser, 1, 5);
			tplPanel1.Controls.Add(this.cmbAuthor, 0, 3);
			tplPanel1.Controls.Add(this.dtpDateOfPublication, 0, 5);
			tplPanel1.Name = "tplPanel1";
			// 
			// cmbPageTurningDirection
			// 
			resources.ApplyResources(this.cmbPageTurningDirection, "cmbPageTurningDirection");
			tplPanel1.SetColumnSpan(this.cmbPageTurningDirection, 2);
			this.cmbPageTurningDirection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbPageTurningDirection.FormattingEnabled = true;
			this.cmbPageTurningDirection.Items.AddRange(new object[] {
            resources.GetString("cmbPageTurningDirection.Items"),
            resources.GetString("cmbPageTurningDirection.Items1")});
			this.cmbPageTurningDirection.Name = "cmbPageTurningDirection";
			this.cmbPageTurningDirection.SelectedIndexChanged += new System.EventHandler(this.cmbPageTurningDirection_SelectedIndexChanged);
			// 
			// lblPageTurningDirection
			// 
			resources.ApplyResources(lblPageTurningDirection, "lblPageTurningDirection");
			tplPanel1.SetColumnSpan(lblPageTurningDirection, 2);
			lblPageTurningDirection.Name = "lblPageTurningDirection";
			// 
			// txtCultureDependingDateOfPublication
			// 
			resources.ApplyResources(this.txtCultureDependingDateOfPublication, "txtCultureDependingDateOfPublication");
			tplPanel1.SetColumnSpan(this.txtCultureDependingDateOfPublication, 2);
			this.txtCultureDependingDateOfPublication.Name = "txtCultureDependingDateOfPublication";
			this.txtCultureDependingDateOfPublication.TextChanged += new System.EventHandler(this.txtCultureDependingDateOfIssue_TextChanged);
			// 
//.........这里部分代码省略.........
开发者ID:kavenblog,项目名称:Comical,代码行数:101,代码来源:DocumentView.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 close;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
            this.randomTip = new System.Windows.Forms.Button();
            this.nextTip = new System.Windows.Forms.Button();
            this.tipBox = new System.Windows.Forms.GroupBox();
            this.tipTitle = new System.Windows.Forms.Label();
            this.tipPicture = new System.Windows.Forms.PictureBox();
            this.tipLink = new System.Windows.Forms.LinkLabel();
            this.tipText = new System.Windows.Forms.Label();
            close = new System.Windows.Forms.Button();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            tableLayoutPanel1.SuspendLayout();
            this.tipBox.SuspendLayout();
            tableLayoutPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tipPicture)).BeginInit();
            this.SuspendLayout();
            // 
            // close
            // 
            close.DialogResult = System.Windows.Forms.DialogResult.OK;
            close.Location = new System.Drawing.Point(472, 295);
            close.Name = "close";
            close.Size = new System.Drawing.Size(75, 23);
            close.TabIndex = 0;
            close.Text = "Close";
            close.UseVisualStyleBackColor = true;
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.ColumnCount = 3;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            tableLayoutPanel1.Controls.Add(this.randomTip, 0, 1);
            tableLayoutPanel1.Controls.Add(close, 2, 1);
            tableLayoutPanel1.Controls.Add(this.nextTip, 1, 1);
            tableLayoutPanel1.Controls.Add(this.tipBox, 0, 0);
            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(550, 321);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // randomTip
            // 
            this.randomTip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.randomTip.Location = new System.Drawing.Point(311, 295);
            this.randomTip.Name = "randomTip";
            this.randomTip.Size = new System.Drawing.Size(74, 23);
            this.randomTip.TabIndex = 3;
            this.randomTip.Text = "Random Tip";
            this.randomTip.UseVisualStyleBackColor = true;
            this.randomTip.Click += new System.EventHandler(this.LoadRandomTip);
            // 
            // nextTip
            // 
            this.nextTip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.nextTip.Location = new System.Drawing.Point(391, 295);
            this.nextTip.Name = "nextTip";
            this.nextTip.Size = new System.Drawing.Size(75, 23);
            this.nextTip.TabIndex = 1;
            this.nextTip.Text = "Next Tip";
            this.nextTip.UseVisualStyleBackColor = true;
            this.nextTip.Click += new System.EventHandler(this.LoadNextTip);
            // 
            // tipBox
            // 
            tableLayoutPanel1.SetColumnSpan(this.tipBox, 3);
            this.tipBox.Controls.Add(tableLayoutPanel2);
            this.tipBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tipBox.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tipBox.Location = new System.Drawing.Point(3, 3);
            this.tipBox.Name = "tipBox";
            this.tipBox.Size = new System.Drawing.Size(544, 286);
            this.tipBox.TabIndex = 2;
            this.tipBox.TabStop = false;
            this.tipBox.Text = "Tip #X";
            // 
            // tableLayoutPanel2
            // 
            tableLayoutPanel2.ColumnCount = 1;
            tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel2.Controls.Add(this.tipTitle, 0, 0);
            tableLayoutPanel2.Controls.Add(this.tipPicture, 0, 2);
            tableLayoutPanel2.Controls.Add(this.tipLink, 0, 3);
            tableLayoutPanel2.Controls.Add(this.tipText, 0, 1);
            tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel2.Location = new System.Drawing.Point(3, 16);
            tableLayoutPanel2.Name = "tableLayoutPanel2";
//.........这里部分代码省略.........
开发者ID:Cry-Filami,项目名称:renderdoc,代码行数:101,代码来源:TipsDialog.Designer.cs

示例8: InitializeComponent


//.........这里部分代码省略.........
            this.iabuffers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn929,
            treeListColumn930,
            treeListColumn931,
            treeListColumn932,
            treeListColumn933,
            treeListColumn934,
            treeListColumn935});
            this.iabuffers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.iabuffers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.iabuffers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.iabuffers.Location = new System.Drawing.Point(3, 16);
            this.iabuffers.MultiSelect = false;
            this.iabuffers.Name = "iabuffers";
            this.iabuffers.RowOptions.ItemHeight = 20;
            this.iabuffers.RowOptions.ShowHeader = false;
            this.iabuffers.Size = new System.Drawing.Size(566, 278);
            this.iabuffers.TabIndex = 10;
            this.iabuffers.Text = "treeListView1";
            this.iabuffers.TreeColumn = 6;
            this.iabuffers.ViewOptions.Indent = 0;
            this.iabuffers.ViewOptions.ShowLine = false;
            this.iabuffers.ViewOptions.ShowPlusMinus = false;
            this.iabuffers.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.iabuffers_NodeDoubleClicked);
            this.iabuffers.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.iabuffers_NodeDoubleClicked);
            this.iabuffers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.iabuffers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.iabuffers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            this.iabuffers.MouseLeave += new System.EventHandler(this.ia_MouseLeave);
            this.iabuffers.MouseMove += new System.Windows.Forms.MouseEventHandler(this.iabuffers_MouseMove);
            // 
            // groupBox2
            // 
            this.tableLayoutPanel1.SetColumnSpan(groupBox2, 3);
            groupBox2.Controls.Add(this.inputLayouts);
            groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            groupBox2.Location = new System.Drawing.Point(3, 3);
            groupBox2.Name = "groupBox2";
            groupBox2.Size = new System.Drawing.Size(1151, 296);
            groupBox2.TabIndex = 9;
            groupBox2.TabStop = false;
            groupBox2.Text = "Vertex Attribute Formats";
            // 
            // inputLayouts
            // 
            treeListColumn936.AutoSizeMinSize = 0;
            treeListColumn936.Width = 50;
            treeListColumn937.AutoSizeMinSize = 0;
            treeListColumn937.Width = 60;
            treeListColumn938.AutoSizeMinSize = 0;
            treeListColumn938.Width = 200;
            treeListColumn939.AutoSizeMinSize = 0;
            treeListColumn939.Width = 200;
            treeListColumn940.AutoSizeMinSize = 0;
            treeListColumn940.Width = 90;
            treeListColumn941.AutoSize = true;
            treeListColumn941.AutoSizeMinSize = 0;
            treeListColumn941.Width = 150;
            treeListColumn942.AutoSizeMinSize = 0;
            treeListColumn942.Width = 25;
            this.inputLayouts.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn936,
            treeListColumn937,
            treeListColumn938,
            treeListColumn939,
            treeListColumn940,
开发者ID:michaelkvance,项目名称:renderdoc,代码行数:67,代码来源:GLPipelineStateViewer.Designer.cs

示例9: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.Panel HeaderPanel;
            System.Windows.Forms.Label HeaderTextLabel;
            System.Windows.Forms.TableLayoutPanel ActionLogFormLayoutTable;
            System.Windows.Forms.Panel ItemDropDownListPanel;
            System.Windows.Forms.Label ItemDropDownListLabel;
            System.Windows.Forms.Panel SetQuantityPanel;
            System.Windows.Forms.Label SetQuantityLabel;
            System.Windows.Forms.Panel ActionLogNotePanel;
            System.Windows.Forms.Label ActionLogNoteLabel;
            this.CurrentItemDifferenceLabel = new System.Windows.Forms.Label();
            this.AddNewItemLinkLabel = new System.Windows.Forms.LinkLabel();
            this.ItemsComboBox = new System.Windows.Forms.ComboBox();
            this.ChangeQuantitySignButton = new System.Windows.Forms.Button();
            this.QuantityNumericUpDown = new System.Windows.Forms.NumericUpDown();
            this.NoteTextBox = new System.Windows.Forms.TextBox();
            this.AddActionButton = new System.Windows.Forms.Button();
            this.ActionsPanel = new System.Windows.Forms.Panel();
            this.MessageLabel = new System.Windows.Forms.Label();
            HeaderPanel = new System.Windows.Forms.Panel();
            HeaderTextLabel = new System.Windows.Forms.Label();
            ActionLogFormLayoutTable = new System.Windows.Forms.TableLayoutPanel();
            ItemDropDownListPanel = new System.Windows.Forms.Panel();
            ItemDropDownListLabel = new System.Windows.Forms.Label();
            SetQuantityPanel = new System.Windows.Forms.Panel();
            SetQuantityLabel = new System.Windows.Forms.Label();
            ActionLogNotePanel = new System.Windows.Forms.Panel();
            ActionLogNoteLabel = new System.Windows.Forms.Label();
            HeaderPanel.SuspendLayout();
            ActionLogFormLayoutTable.SuspendLayout();
            ItemDropDownListPanel.SuspendLayout();
            SetQuantityPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.QuantityNumericUpDown)).BeginInit();
            ActionLogNotePanel.SuspendLayout();
            this.ActionsPanel.SuspendLayout();
            this.SuspendLayout();
            // 
            // HeaderPanel
            // 
            HeaderPanel.BackColor = System.Drawing.Color.Silver;
            HeaderPanel.Controls.Add(HeaderTextLabel);
            HeaderPanel.Dock = System.Windows.Forms.DockStyle.Top;
            HeaderPanel.Location = new System.Drawing.Point(0, 0);
            HeaderPanel.Name = "HeaderPanel";
            HeaderPanel.Size = new System.Drawing.Size(460, 60);
            HeaderPanel.TabIndex = 11;
            // 
            // HeaderTextLabel
            // 
            HeaderTextLabel.Dock = System.Windows.Forms.DockStyle.Left;
            HeaderTextLabel.Font = new System.Drawing.Font("Century Gothic", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
            HeaderTextLabel.ForeColor = System.Drawing.Color.Black;
            HeaderTextLabel.Location = new System.Drawing.Point(0, 0);
            HeaderTextLabel.Name = "HeaderTextLabel";
            HeaderTextLabel.Size = new System.Drawing.Size(239, 60);
            HeaderTextLabel.TabIndex = 0;
            HeaderTextLabel.Text = "Yeni Olay Ekle";
            HeaderTextLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // ActionLogFormLayoutTable
            // 
            ActionLogFormLayoutTable.ColumnCount = 2;
            ActionLogFormLayoutTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 60F));
            ActionLogFormLayoutTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40F));
            ActionLogFormLayoutTable.Controls.Add(this.CurrentItemDifferenceLabel, 0, 2);
            ActionLogFormLayoutTable.Controls.Add(ItemDropDownListPanel, 0, 0);
            ActionLogFormLayoutTable.Controls.Add(SetQuantityPanel, 1, 0);
            ActionLogFormLayoutTable.Controls.Add(ActionLogNotePanel, 0, 1);
            ActionLogFormLayoutTable.Dock = System.Windows.Forms.DockStyle.Fill;
            ActionLogFormLayoutTable.Location = new System.Drawing.Point(0, 60);
            ActionLogFormLayoutTable.Name = "ActionLogFormLayoutTable";
            ActionLogFormLayoutTable.RowCount = 3;
            ActionLogFormLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            ActionLogFormLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F));
            ActionLogFormLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            ActionLogFormLayoutTable.Size = new System.Drawing.Size(460, 161);
            ActionLogFormLayoutTable.TabIndex = 13;
            // 
            // CurrentItemDifferenceLabel
            // 
            this.CurrentItemDifferenceLabel.AutoSize = true;
            ActionLogFormLayoutTable.SetColumnSpan(this.CurrentItemDifferenceLabel, 2);
            this.CurrentItemDifferenceLabel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.CurrentItemDifferenceLabel.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
            this.CurrentItemDifferenceLabel.Location = new System.Drawing.Point(3, 136);
            this.CurrentItemDifferenceLabel.Name = "CurrentItemDifferenceLabel";
            this.CurrentItemDifferenceLabel.Size = new System.Drawing.Size(454, 25);
            this.CurrentItemDifferenceLabel.TabIndex = 2;
            this.CurrentItemDifferenceLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // ItemDropDownListPanel
            // 
            ItemDropDownListPanel.Controls.Add(this.AddNewItemLinkLabel);
            ItemDropDownListPanel.Controls.Add(ItemDropDownListLabel);
            ItemDropDownListPanel.Controls.Add(this.ItemsComboBox);
//.........这里部分代码省略.........
开发者ID:syil,项目名称:StokTakip,代码行数:101,代码来源:AddActionLogForm.Designer.cs

示例10: InitializeComponent


//.........这里部分代码省略.........
            this.lbImportedTransactions.FormattingEnabled = true;
            this.lbImportedTransactions.Name = "lbImportedTransactions";
            this.lbImportedTransactions.SelectedIndexChanged += new System.EventHandler(this.lbImportedTransactions_SelectedIndexChanged);
            // 
            // gbTransactionDetails
            // 
            gbTransactionDetails.Controls.Add(tlpDetails);
            resources.ApplyResources(gbTransactionDetails, "gbTransactionDetails");
            gbTransactionDetails.Name = "gbTransactionDetails";
            gbTransactionDetails.TabStop = false;
            // 
            // tlpDetails
            // 
            resources.ApplyResources(tlpDetails, "tlpDetails");
            tlpDetails.Controls.Add(this.cbImport, 0, 0);
            tlpDetails.Controls.Add(lblDate, 0, 1);
            tlpDetails.Controls.Add(this.dtpDate, 0, 2);
            tlpDetails.Controls.Add(lblTitle, 0, 3);
            tlpDetails.Controls.Add(this.tbTitle, 0, 4);
            tlpDetails.Controls.Add(this.cbImplementsPlan, 0, 5);
            tlpDetails.Controls.Add(this.cbPlan, 0, 6);
            tlpDetails.Controls.Add(lblAccount, 0, 7);
            tlpDetails.Controls.Add(this.cbAccount, 0, 8);
            tlpDetails.Controls.Add(lblAmount, 0, 9);
            tlpDetails.Controls.Add(this.numAmount, 0, 10);
            tlpDetails.Controls.Add(this.lblCurrency, 2, 10);
            tlpDetails.Controls.Add(lblTags, 0, 11);
            tlpDetails.Controls.Add(this.ttbTags, 0, 12);
            tlpDetails.Name = "tlpDetails";
            // 
            // cbImport
            // 
            resources.ApplyResources(this.cbImport, "cbImport");
            tlpDetails.SetColumnSpan(this.cbImport, 3);
            this.cbImport.Name = "cbImport";
            this.cbImport.UseVisualStyleBackColor = true;
            // 
            // lblDate
            // 
            resources.ApplyResources(lblDate, "lblDate");
            tlpDetails.SetColumnSpan(lblDate, 3);
            lblDate.Name = "lblDate";
            // 
            // dtpDate
            // 
            tlpDetails.SetColumnSpan(this.dtpDate, 3);
            resources.ApplyResources(this.dtpDate, "dtpDate");
            this.dtpDate.Name = "dtpDate";
            // 
            // lblTitle
            // 
            resources.ApplyResources(lblTitle, "lblTitle");
            tlpDetails.SetColumnSpan(lblTitle, 3);
            lblTitle.Name = "lblTitle";
            // 
            // tbTitle
            // 
            this.tbTitle.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
            this.tbTitle.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
            tlpDetails.SetColumnSpan(this.tbTitle, 3);
            resources.ApplyResources(this.tbTitle, "tbTitle");
            this.tbTitle.Name = "tbTitle";
            // 
            // cbImplementsPlan
            // 
            resources.ApplyResources(this.cbImplementsPlan, "cbImplementsPlan");
开发者ID:e-Deniska,项目名称:easyMoney,代码行数:67,代码来源:FileImportForm.Designer.cs

示例11: InitializeComponent


//.........这里部分代码省略.........
			// 
			gpRegex.Controls.Add(tableLayoutPanel4);
			gpRegex.Dock = System.Windows.Forms.DockStyle.Fill;
			gpRegex.Location = new System.Drawing.Point(389, 56);
			gpRegex.Name = "gpRegex";
			gpRegex.Size = new System.Drawing.Size(353, 138);
			gpRegex.TabIndex = 2;
			gpRegex.TabStop = false;
			gpRegex.Text = "Apply a Regular Expression";
			// 
			// tableLayoutPanel4
			// 
			tableLayoutPanel4.ColumnCount = 2;
			tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 21.23288F));
			tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 78.76712F));
			tableLayoutPanel4.Controls.Add(this.cbRegex, 0, 0);
			tableLayoutPanel4.Controls.Add(this.label7, 0, 1);
			tableLayoutPanel4.Controls.Add(this.label8, 0, 2);
			tableLayoutPanel4.Controls.Add(this.tbRegexMatch, 1, 1);
			tableLayoutPanel4.Controls.Add(this.tbRegexReplace, 1, 2);
			tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
			tableLayoutPanel4.Location = new System.Drawing.Point(3, 16);
			tableLayoutPanel4.Name = "tableLayoutPanel4";
			tableLayoutPanel4.RowCount = 3;
			tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30F));
			tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 35F));
			tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 35F));
			tableLayoutPanel4.Size = new System.Drawing.Size(347, 119);
			tableLayoutPanel4.TabIndex = 0;
			// 
			// cbRegex
			// 
			this.cbRegex.Anchor = System.Windows.Forms.AnchorStyles.Left;
			tableLayoutPanel4.SetColumnSpan(this.cbRegex, 2);
			this.cbRegex.DisplayMember = "Label";
			this.cbRegex.FormattingEnabled = true;
			this.cbRegex.Location = new System.Drawing.Point(20, 7);
			this.cbRegex.Margin = new System.Windows.Forms.Padding(20, 3, 3, 3);
			this.cbRegex.Name = "cbRegex";
			this.cbRegex.Size = new System.Drawing.Size(187, 21);
			this.cbRegex.TabIndex = 0;
			this.cbRegex.ValueMember = "Value";
			// 
			// label7
			// 
			this.label7.Anchor = System.Windows.Forms.AnchorStyles.Right;
			this.label7.AutoSize = true;
			this.label7.Location = new System.Drawing.Point(30, 49);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(40, 13);
			this.label7.TabIndex = 1;
			this.label7.Text = "Match:";
			// 
			// label8
			// 
			this.label8.Anchor = System.Windows.Forms.AnchorStyles.Right;
			this.label8.AutoSize = true;
			this.label8.Location = new System.Drawing.Point(20, 91);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(50, 13);
			this.label8.TabIndex = 1;
			this.label8.Text = "Replace:";
			// 
			// tbRegexMatch
			// 
			this.tbRegexMatch.Anchor = System.Windows.Forms.AnchorStyles.Left;
开发者ID:svallory,项目名称:EdmxTypist,代码行数:67,代码来源:ConfigGroup.Designer.cs

示例12: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            TreelistView.TreeListColumn treeListColumn1 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Name", "Name")));
            TreelistView.TreeListColumn treeListColumn2 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Modification", "Modification")));
            TreelistView.TreeListColumn treeListColumn3 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Value", "Value")));
            System.Windows.Forms.GroupBox groupBox2;
            System.Windows.Forms.Label label2;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.GroupBox groupBox1;
            System.Windows.Forms.Button ok;
            System.Windows.Forms.Button cancel;
            this.variables = new TreelistView.TreeListView();
            this.varValue = new System.Windows.Forms.TextBox();
            this.varName = new System.Windows.Forms.TextBox();
            this.pendSeparator = new System.Windows.Forms.ComboBox();
            this.prependType = new System.Windows.Forms.RadioButton();
            this.appendType = new System.Windows.Forms.RadioButton();
            this.setType = new System.Windows.Forms.RadioButton();
            this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            this.addUpdate = new System.Windows.Forms.Button();
            this.delete = new System.Windows.Forms.Button();
            this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            groupBox2 = new System.Windows.Forms.GroupBox();
            label2 = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            groupBox1 = new System.Windows.Forms.GroupBox();
            ok = new System.Windows.Forms.Button();
            cancel = new System.Windows.Forms.Button();
            tableLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.variables)).BeginInit();
            groupBox2.SuspendLayout();
            groupBox1.SuspendLayout();
            this.flowLayoutPanel1.SuspendLayout();
            this.flowLayoutPanel2.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.ColumnCount = 2;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            tableLayoutPanel1.Controls.Add(this.variables, 0, 0);
            tableLayoutPanel1.Controls.Add(groupBox2, 0, 1);
            tableLayoutPanel1.Controls.Add(groupBox1, 1, 1);
            tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 1, 2);
            tableLayoutPanel1.Controls.Add(this.flowLayoutPanel2, 1, 3);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 4;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.Size = new System.Drawing.Size(673, 474);
            tableLayoutPanel1.TabIndex = 2;
            // 
            // variables
            // 
            treeListColumn1.AutoSizeMinSize = 0;
            treeListColumn1.Width = 160;
            treeListColumn2.AutoSizeMinSize = 0;
            treeListColumn2.Width = 170;
            treeListColumn3.AutoSize = true;
            treeListColumn3.AutoSizeMinSize = 100;
            treeListColumn3.Width = 50;
            this.variables.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn1,
            treeListColumn2,
            treeListColumn3});
            this.variables.ColumnsOptions.LeftMargin = 0;
            tableLayoutPanel1.SetColumnSpan(this.variables, 2);
            this.variables.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.variables.Dock = System.Windows.Forms.DockStyle.Fill;
            this.variables.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.variables.Location = new System.Drawing.Point(3, 3);
            this.variables.Name = "variables";
            this.variables.RowOptions.ShowHeader = false;
            this.variables.Size = new System.Drawing.Size(667, 257);
            this.variables.TabIndex = 11;
            this.variables.Text = "treeListView1";
            this.variables.ViewOptions.HoverHandTreeColumn = false;
            this.variables.ViewOptions.PadForPlusMinus = false;
            this.variables.ViewOptions.ShowLine = false;
            this.variables.ViewOptions.ShowPlusMinus = false;
            this.variables.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.variables_AfterSelect);
            this.variables.KeyDown += new System.Windows.Forms.KeyEventHandler(this.variables_KeyDown);
            // 
            // 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(label2);
//.........这里部分代码省略.........
开发者ID:Anteru,项目名称:renderdoc,代码行数:101,代码来源:EnvironmentEditor.Designer.cs

示例13: InitializeComponent


//.........这里部分代码省略.........
            // 
            resources.ApplyResources(this.tlpAccounts, "tlpAccounts");
            this.tlpAccounts.Controls.Add(this.chartDebts, 0, 3);
            this.tlpAccounts.Controls.Add(this.lblAssets, 1, 0);
            this.tlpAccounts.Controls.Add(this.lblDebts, 1, 2);
            this.tlpAccounts.Controls.Add(lblAssetsTitle, 0, 0);
            this.tlpAccounts.Controls.Add(lblDebtsTitle, 0, 2);
            this.tlpAccounts.Controls.Add(this.chartAssets, 0, 1);
            this.tlpAccounts.Name = "tlpAccounts";
            // 
            // chartDebts
            // 
            resources.ApplyResources(this.chartDebts, "chartDebts");
            this.chartDebts.BackColor = System.Drawing.SystemColors.Control;
            chartArea1.AxisX.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.IncreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.LightGray;
            chartArea1.AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
            chartArea1.AxisX.MaximumAutoSize = 100F;
            chartArea1.AxisY.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
            chartArea1.AxisY.LabelAutoFitMinFontSize = 8;
            chartArea1.AxisY.LabelStyle.Format = "N2";
            chartArea1.AxisY.LabelStyle.Interval = 0D;
            chartArea1.AxisY.LabelStyle.IntervalOffset = 0D;
            chartArea1.AxisY.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.LightGray;
            chartArea1.AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
            chartArea1.AxisY.MaximumAutoSize = 100F;
            chartArea1.BackColor = System.Drawing.SystemColors.Control;
            chartArea1.Name = "MainChartArea";
            this.chartDebts.ChartAreas.Add(chartArea1);
            this.tlpAccounts.SetColumnSpan(this.chartDebts, 2);
            this.chartDebts.Name = "chartDebts";
            this.chartDebts.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Light;
            series1.ChartArea = "MainChartArea";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
            series1.LabelToolTip = "#LABEL";
            series1.Legend = "Legend1";
            series1.Name = "Assets";
            series1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Light;
            series1.ShadowOffset = 1;
            series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
            series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
            this.chartDebts.Series.Add(series1);
            this.chartDebts.TabStop = false;
            // 
            // lblAssets
            // 
            resources.ApplyResources(this.lblAssets, "lblAssets");
            this.lblAssets.ForeColor = System.Drawing.Color.Green;
            this.lblAssets.Name = "lblAssets";
            // 
            // lblDebts
            // 
            resources.ApplyResources(this.lblDebts, "lblDebts");
            this.lblDebts.ForeColor = System.Drawing.Color.Blue;
            this.lblDebts.Name = "lblDebts";
            // 
            // lblAssetsTitle
            // 
            resources.ApplyResources(lblAssetsTitle, "lblAssetsTitle");
            lblAssetsTitle.Name = "lblAssetsTitle";
            // 
            // lblDebtsTitle
开发者ID:e-Deniska,项目名称:easyMoney,代码行数:67,代码来源:WelcomeScreenForm.Designer.cs

示例14: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.Label label1;
            this.chooseX = new System.Windows.Forms.NumericUpDown();
            this.chooseY = new System.Windows.Forms.NumericUpDown();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            label1 = new System.Windows.Forms.Label();
            tableLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chooseX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chooseY)).BeginInit();
            this.SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.AutoSize = true;
            tableLayoutPanel1.ColumnCount = 2;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableLayoutPanel1.Controls.Add(this.chooseX, 0, 1);
            tableLayoutPanel1.Controls.Add(this.chooseY, 1, 1);
            tableLayoutPanel1.Controls.Add(label1, 0, 0);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(4, 4);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 2;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.Size = new System.Drawing.Size(137, 39);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // label1
            // 
            label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            label1.AutoSize = true;
            tableLayoutPanel1.SetColumnSpan(label1, 2);
            label1.Location = new System.Drawing.Point(3, 0);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(131, 13);
            label1.TabIndex = 0;
            label1.Text = "Goto Location";
            label1.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            // 
            // chooseX
            // 
            this.chooseX.Location = new System.Drawing.Point(3, 16);
            this.chooseX.Maximum = new decimal(new int[] {
            16384,
            0,
            0,
            0});
            this.chooseX.Name = "chooseX";
            this.chooseX.Size = new System.Drawing.Size(62, 20);
            this.chooseX.TabIndex = 1;
            this.chooseX.Value = new decimal(new int[] {
            16384,
            0,
            0,
            0});
            this.chooseX.Enter += new System.EventHandler(this.location_Enter);
            this.chooseX.KeyDown += new System.Windows.Forms.KeyEventHandler(this.location_KeyDown);
            // 
            // chooseY
            // 
            this.chooseY.Location = new System.Drawing.Point(71, 16);
            this.chooseY.Maximum = new decimal(new int[] {
            16384,
            0,
            0,
            0});
            this.chooseY.Name = "chooseY";
            this.chooseY.Size = new System.Drawing.Size(63, 20);
            this.chooseY.TabIndex = 2;
            this.chooseY.Value = new decimal(new int[] {
            16384,
            0,
            0,
            0});
            this.chooseY.Enter += new System.EventHandler(this.location_Enter);
            this.chooseY.KeyDown += new System.Windows.Forms.KeyEventHandler(this.location_KeyDown);
            // 
            // TextureGoto
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.ClientSize = new System.Drawing.Size(145, 47);
            this.ControlBox = false;
            this.Controls.Add(tableLayoutPanel1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "TextureGoto";
            this.Padding = new System.Windows.Forms.Padding(4);
            this.ShowIcon = false;
//.........这里部分代码省略.........
开发者ID:Anteru,项目名称:renderdoc,代码行数:101,代码来源:TextureGoto.Designer.cs

示例15: InitializeComponent


//.........这里部分代码省略.........
            tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel3.Size = new System.Drawing.Size(652, 116);
            tableLayoutPanel3.TabIndex = 0;
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.Dock = System.Windows.Forms.DockStyle.Fill;
            this.label15.Location = new System.Drawing.Point(3, 0);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(134, 31);
            this.label15.TabIndex = 0;
            this.label15.Text = "Path to plink";
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // PageantBrowse
            // 
            this.PageantBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.PageantBrowse.Location = new System.Drawing.Point(574, 65);
            this.PageantBrowse.Name = "PageantBrowse";
            this.PageantBrowse.Size = new System.Drawing.Size(75, 25);
            this.PageantBrowse.TabIndex = 8;
            this.PageantBrowse.Text = "Browse";
            this.PageantBrowse.UseVisualStyleBackColor = true;
            this.PageantBrowse.Click += new System.EventHandler(this.PageantBrowse_Click);
            // 
            // AutostartPageant
            // 
            this.AutostartPageant.AutoEllipsis = true;
            this.AutostartPageant.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
            this.AutostartPageant.Checked = true;
            this.AutostartPageant.CheckState = System.Windows.Forms.CheckState.Checked;
            tableLayoutPanel3.SetColumnSpan(this.AutostartPageant, 2);
            this.AutostartPageant.Dock = System.Windows.Forms.DockStyle.Fill;
            this.AutostartPageant.Location = new System.Drawing.Point(143, 96);
            this.AutostartPageant.Name = "AutostartPageant";
            this.AutostartPageant.Size = new System.Drawing.Size(506, 17);
            this.AutostartPageant.TabIndex = 9;
            this.AutostartPageant.Text = "Automatically start authentication client when a private key is configured for a " +
    "remote";
            this.AutostartPageant.TextAlign = System.Drawing.ContentAlignment.TopLeft;
            this.AutostartPageant.UseVisualStyleBackColor = true;
            // 
            // PuttygenBrowse
            // 
            this.PuttygenBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.PuttygenBrowse.Location = new System.Drawing.Point(574, 34);
            this.PuttygenBrowse.Name = "PuttygenBrowse";
            this.PuttygenBrowse.Size = new System.Drawing.Size(75, 25);
            this.PuttygenBrowse.TabIndex = 5;
            this.PuttygenBrowse.Text = "Browse";
            this.PuttygenBrowse.UseVisualStyleBackColor = true;
            this.PuttygenBrowse.Click += new System.EventHandler(this.PuttygenBrowse_Click);
            // 
            // label16
            // 
            this.label16.AutoSize = true;
            this.label16.Dock = System.Windows.Forms.DockStyle.Fill;
            this.label16.Location = new System.Drawing.Point(3, 31);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(134, 31);
            this.label16.TabIndex = 3;
            this.label16.Text = "Path to puttygen";
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
开发者ID:qgppl,项目名称:gitextensions,代码行数:67,代码来源:SshSettingsPage.Designer.cs


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