本文整理汇总了C#中System.Windows.Forms.TabControl类的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.TabControl类的具体用法?C# System.Windows.Forms.TabControl怎么用?C# System.Windows.Forms.TabControl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
System.Windows.Forms.TabControl类属于命名空间,在下文中一共展示了System.Windows.Forms.TabControl类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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()
{
this.MasterTabControl = new System.Windows.Forms.TabControl();
this.MasterTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.Multiline = true;
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Text = "NORMA: BlogDemo Data Test Form";
this.MasterTabControl.Size = new System.Drawing.Size(540, 520);
this.Controls.Add(MasterTabControl);
this.Size = new System.Drawing.Size(550, 550);
this.MasterTabControl.TabPages.Add("BlogEntry", "BlogEntry");
BlogEntryCore_InputControl icBlogEntryCore = new BlogEntryCore_InputControl();
icBlogEntryCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["BlogEntry"].Controls.Add(icBlogEntryCore);
this.MasterTabControl.TabPages.Add("BlogEntryLabel", "BlogEntryLabel");
BlogEntryLabelCore_InputControl icBlogEntryLabelCore = new BlogEntryLabelCore_InputControl();
icBlogEntryLabelCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["BlogEntryLabel"].Controls.Add(icBlogEntryLabelCore);
this.MasterTabControl.TabPages.Add("BlogLabel", "BlogLabel");
BlogLabelCore_InputControl icBlogLabelCore = new BlogLabelCore_InputControl();
icBlogLabelCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["BlogLabel"].Controls.Add(icBlogLabelCore);
this.MasterTabControl.TabPages.Add("User", "User");
UserCore_InputControl icUserCore = new UserCore_InputControl();
icUserCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["User"].Controls.Add(icUserCore);
}
开发者ID:cjheath,项目名称:NORMA,代码行数:33,代码来源:BlogDemo.DataLayerTestForm.PLiX.cs
示例2: InitializeComponent
/// <summary>Required method for Designer support - do not modify the contents of this method with the code editor.</summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
//
// actionTabs
//
this.actionTabs = new System.Windows.Forms.TabControl();
this.actionTabs.Dock = System.Windows.Forms.DockStyle.Fill;
this.actionTabs.Size = new System.Drawing.Size(530, 485);
this.actionTabs.Location = new System.Drawing.Point(0, 0);
this.actionTabs.Name = "actionTabs";
this.actionTabs.TabPages.Add("Collection", "Collection");
Collection_CountryCore_InputControl icCollection = new Collection_CountryCore_InputControl();
icCollection.Dock = System.Windows.Forms.DockStyle.Fill;
this.actionTabs.TabPages["Collection"].Controls.Add(icCollection);
this.actionTabs.TabPages.Add("Create", "Create");
Create_CountryCore_InputControl icCreate = new Create_CountryCore_InputControl();
icCreate.Dock = System.Windows.Forms.DockStyle.Fill;
this.actionTabs.TabPages["Create"].Controls.Add(icCreate);
this.actionTabs.TabPages.Add("Select", "Select and Edit");
Select_CountryCore_InputControl icSelect = new Select_CountryCore_InputControl();
icSelect.Dock = System.Windows.Forms.DockStyle.Fill;
this.actionTabs.TabPages["Select"].Controls.Add(icSelect);
//
// this
//
this.Controls.Add(actionTabs);
this.Size = new System.Drawing.Size(540, 500);
}
开发者ID:cjheath,项目名称:NORMA,代码行数:30,代码来源:PersonCountryDemo.DataLayerTestFormInputControl.Designer.PLiX.cs
示例3: InitializeComponent
private void InitializeComponent()
{
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage = new System.Windows.Forms.TabPage();
this.browser = new System.Windows.Forms.WebBrowser();
this.chbDisplayAll = new System.Windows.Forms.CheckBox();
this.tabControl1.SuspendLayout();
this.tabPage.SuspendLayout();
this.SuspendLayout();
this.tabControl1.Controls.Add(this.tabPage);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 0);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(300, 300);
this.tabControl1.TabIndex = 0;
this.tabPage.BackColor = System.Drawing.SystemColors.Control;
this.tabPage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.tabPage.Controls.Add(this.browser);
this.tabPage.Controls.Add(this.chbDisplayAll);
this.tabPage.Location = new System.Drawing.Point(4, 22);
this.tabPage.Name = "tabPage";
this.tabPage.Padding = new System.Windows.Forms.Padding(3);
this.tabPage.Size = new System.Drawing.Size(292, 274);
this.tabPage.TabIndex = 0;
this.tabPage.Text = "Release Notes";
this.browser.AllowWebBrowserDrop = false;
this.browser.Dock = System.Windows.Forms.DockStyle.Fill;
this.browser.IsWebBrowserContextMenuEnabled = false;
this.browser.Location = new System.Drawing.Point(3, 3);
this.browser.MinimumSize = new System.Drawing.Size(20, 20);
this.browser.Name = "browser";
this.browser.ScriptErrorsSuppressed = true;
this.browser.Size = new System.Drawing.Size(282, 240);
this.browser.TabIndex = 0;
this.browser.WebBrowserShortcutsEnabled = false;
this.browser.Navigating += new System.Windows.Forms.WebBrowserNavigatingEventHandler(this.browser_Navigating);
this.chbDisplayAll.Dock = System.Windows.Forms.DockStyle.Bottom;
this.chbDisplayAll.Location = new System.Drawing.Point(3, 243);
this.chbDisplayAll.Name = "chbDisplayAll";
this.chbDisplayAll.Size = new System.Drawing.Size(282, 24);
this.chbDisplayAll.TabIndex = 1;
this.chbDisplayAll.Text = "Display all";
this.chbDisplayAll.UseVisualStyleBackColor = true;
this.chbDisplayAll.CheckedChanged += new EventHandler(this.chbDisplayAll_CheckedChanged);
this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tabControl1);
this.Name = "ReleaseNotesControl";
this.Size = new System.Drawing.Size(300, 300);
this.tabControl1.ResumeLayout(false);
this.tabPage.ResumeLayout(false);
this.ResumeLayout(false);
}
开发者ID:smther,项目名称:FreeOQ,代码行数:54,代码来源:ReleaseNotesControl.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.TabControl tabControl1;
System.Windows.Forms.TabPage tabPage2;
this.treeView1 = new System.Windows.Forms.TreeView();
tabControl1 = new System.Windows.Forms.TabControl();
tabPage2 = new System.Windows.Forms.TabPage();
tabControl1.SuspendLayout();
tabPage2.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
tabControl1.Controls.Add(tabPage2);
tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
tabControl1.Location = new System.Drawing.Point(0, 0);
tabControl1.Name = "tabControl1";
tabControl1.SelectedIndex = 0;
tabControl1.Size = new System.Drawing.Size(208, 356);
tabControl1.TabIndex = 1;
//
// tabPage2
//
tabPage2.BackColor = System.Drawing.SystemColors.Control;
tabPage2.Controls.Add(this.treeView1);
tabPage2.Location = new System.Drawing.Point(4, 22);
tabPage2.Name = "tabPage2";
tabPage2.Padding = new System.Windows.Forms.Padding(3);
tabPage2.Size = new System.Drawing.Size(200, 330);
tabPage2.TabIndex = 1;
tabPage2.Text = "World";
//
// treeView1
//
this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeView1.Location = new System.Drawing.Point(3, 3);
this.treeView1.Name = "treeView1";
this.treeView1.Size = new System.Drawing.Size(194, 324);
this.treeView1.TabIndex = 0;
//
// WorldPage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(tabControl1);
this.Name = "WorldPage";
this.Size = new System.Drawing.Size(208, 356);
tabControl1.ResumeLayout(false);
tabPage2.ResumeLayout(false);
this.ResumeLayout(false);
}
开发者ID:bcsanches,项目名称:phobos3d,代码行数:56,代码来源:WorldPage.Designer.cs
示例5: InitializeComponent
/// <summary>Required method for Designer support - do not modify the contents of this method with the code editor.</summary>
private void InitializeComponent()
{
this.MasterTabControl = new System.Windows.Forms.TabControl();
this.MasterTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.Multiline = true;
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Text = "NORMA: SampleModel Data Test Form";
this.MasterTabControl.Size = new System.Drawing.Size(540, 520);
this.Controls.Add(MasterTabControl);
this.Size = new System.Drawing.Size(550, 550);
this.MasterTabControl.TabPages.Add("Death", "Death");
DeathCore_InputControl icDeathCore = new DeathCore_InputControl();
icDeathCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["Death"].Controls.Add(icDeathCore);
this.MasterTabControl.TabPages.Add("PersonBoughtCarFromPersonOnDate", "PersonBoughtCarFromPersonOnDate");
PersonBoughtCarFromPersonOnDateCore_InputControl icPersonBoughtCarFromPersonOnDateCore = new PersonBoughtCarFromPersonOnDateCore_InputControl();
icPersonBoughtCarFromPersonOnDateCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["PersonBoughtCarFromPersonOnDate"].Controls.Add(icPersonBoughtCarFromPersonOnDateCore);
this.MasterTabControl.TabPages.Add("Person", "Person");
PersonCore_InputControl icPersonCore = new PersonCore_InputControl();
icPersonCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["Person"].Controls.Add(icPersonCore);
this.MasterTabControl.TabPages.Add("PersonDrivesCar", "PersonDrivesCar");
PersonDrivesCarCore_InputControl icPersonDrivesCarCore = new PersonDrivesCarCore_InputControl();
icPersonDrivesCarCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["PersonDrivesCar"].Controls.Add(icPersonDrivesCarCore);
this.MasterTabControl.TabPages.Add("PersonHasNickName", "PersonHasNickName");
PersonHasNickNameCore_InputControl icPersonHasNickNameCore = new PersonHasNickNameCore_InputControl();
icPersonHasNickNameCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["PersonHasNickName"].Controls.Add(icPersonHasNickNameCore);
this.MasterTabControl.TabPages.Add("Review", "Review");
ReviewCore_InputControl icReviewCore = new ReviewCore_InputControl();
icReviewCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["Review"].Controls.Add(icReviewCore);
this.MasterTabControl.TabPages.Add("Task", "Task");
TaskCore_InputControl icTaskCore = new TaskCore_InputControl();
icTaskCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["Task"].Controls.Add(icTaskCore);
this.MasterTabControl.TabPages.Add("ValueType1", "ValueType1");
ValueType1Core_InputControl icValueType1Core = new ValueType1Core_InputControl();
icValueType1Core.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["ValueType1"].Controls.Add(icValueType1Core);
}
开发者ID:cjheath,项目名称:NORMA,代码行数:53,代码来源:SampleModel.DataLayerTestForm.PLiX.cs
示例6: InitializeComponent
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.tabControl1.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Location = new System.Drawing.Point(4, 6);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(335, 107);
this.tabControl1.TabIndex = 0;
this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
//
// tabPage1
//
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(327, 81);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "C#编程词典——全能版";
this.tabPage1.UseVisualStyleBackColor = true;
//
// tabPage2
//
this.tabPage2.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(327, 81);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "C#编程词典——珍藏版";
this.tabPage2.UseVisualStyleBackColor = true;
//
// Frm_Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(344, 114);
this.Controls.Add(this.tabControl1);
this.Name = "Frm_Main";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "获取选中的选项卡名称";
this.Load += new System.EventHandler(this.Form1_Load);
this.tabControl1.ResumeLayout(false);
this.ResumeLayout(false);
}
开发者ID:TGHGH,项目名称:C-1200,代码行数:56,代码来源:Frm_Main.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.TabControl tabControl1;
System.Windows.Forms.TabPage tabPage2;
this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
tabControl1 = new System.Windows.Forms.TabControl();
tabPage2 = new System.Windows.Forms.TabPage();
tabControl1.SuspendLayout();
tabPage2.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
tabControl1.Controls.Add(tabPage2);
tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
tabControl1.Location = new System.Drawing.Point(0, 0);
tabControl1.Name = "tabControl1";
tabControl1.SelectedIndex = 0;
tabControl1.Size = new System.Drawing.Size(150, 348);
tabControl1.TabIndex = 0;
//
// tabPage2
//
tabPage2.BackColor = System.Drawing.SystemColors.Control;
tabPage2.Controls.Add(this.propertyGrid1);
tabPage2.Location = new System.Drawing.Point(4, 22);
tabPage2.Name = "tabPage2";
tabPage2.Padding = new System.Windows.Forms.Padding(3);
tabPage2.Size = new System.Drawing.Size(142, 322);
tabPage2.TabIndex = 1;
tabPage2.Text = "Properties";
//
// propertyGrid1
//
this.propertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
this.propertyGrid1.Location = new System.Drawing.Point(3, 3);
this.propertyGrid1.Name = "propertyGrid1";
this.propertyGrid1.Size = new System.Drawing.Size(136, 316);
this.propertyGrid1.TabIndex = 0;
//
// PropertyPage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(tabControl1);
this.Name = "PropertyPage";
this.Size = new System.Drawing.Size(150, 348);
tabControl1.ResumeLayout(false);
tabPage2.ResumeLayout(false);
this.ResumeLayout(false);
}
开发者ID:bcsanches,项目名称:phobos3d,代码行数:56,代码来源:PropertyPage.Designer.cs
示例8: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.tbControlSMSF = new System.Windows.Forms.TabControl();
this.tbTimeLine = new System.Windows.Forms.TabPage();
this.tbMakePost = new System.Windows.Forms.TabPage();
this.tbControlSMSF.SuspendLayout();
this.SuspendLayout();
//
// tbControlSMSF
//
this.tbControlSMSF.Controls.Add(this.tbTimeLine);
this.tbControlSMSF.Controls.Add(this.tbMakePost);
this.tbControlSMSF.Location = new System.Drawing.Point(12, 12);
this.tbControlSMSF.Name = "tbControlSMSF";
this.tbControlSMSF.SelectedIndex = 0;
this.tbControlSMSF.Size = new System.Drawing.Size(713, 659);
this.tbControlSMSF.TabIndex = 0;
//
// tbTimeLine
//
this.tbTimeLine.Location = new System.Drawing.Point(4, 22);
this.tbTimeLine.Name = "tbTimeLine";
this.tbTimeLine.Padding = new System.Windows.Forms.Padding(3);
this.tbTimeLine.Size = new System.Drawing.Size(705, 633);
this.tbTimeLine.TabIndex = 0;
this.tbTimeLine.Text = "Tijdlijn";
this.tbTimeLine.UseVisualStyleBackColor = true;
//
// tbMakePost
//
this.tbMakePost.Location = new System.Drawing.Point(4, 22);
this.tbMakePost.Name = "tbMakePost";
this.tbMakePost.Padding = new System.Windows.Forms.Padding(3);
this.tbMakePost.Size = new System.Drawing.Size(801, 410);
this.tbMakePost.TabIndex = 1;
this.tbMakePost.Text = "Post aanmaken";
this.tbMakePost.UseVisualStyleBackColor = true;
//
// SocialMediaSystemForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(736, 683);
this.Controls.Add(this.tbControlSMSF);
this.Name = "SocialMediaSystemForm";
this.Text = "SocialMediaSystemFormcs";
this.Load += new System.EventHandler(this.SocialMediaSystemForm_Load);
this.tbControlSMSF.ResumeLayout(false);
this.ResumeLayout(false);
}
开发者ID:jackdonders,项目名称:ICT4Events,代码行数:54,代码来源:SocialMediaSystemForm.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()
{
tabControl1 = new System.Windows.Forms.TabControl();
SuspendLayout();
tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
tabControl1.Location = new System.Drawing.Point(0, 0);
tabControl1.Name = "tabControl1";
tabControl1.SelectedIndex = 0;
tabControl1.Size = new System.Drawing.Size(341, 225);
tabControl1.SizeMode = System.Windows.Forms.TabSizeMode.FillToRight;
tabControl1.TabIndex = 1;
AutoScaleDimensions = new System.Drawing.SizeF(7.0F, 11.0F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
ClientSize = new System.Drawing.Size(341, 225);
Controls.Add(tabControl1);
Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
Name = "ElementInformation";
TabText = "ElementInformation";
Text = "ElementInformation";
ResumeLayout(false);
}
开发者ID:diegowald,项目名称:intellitrack,代码行数:25,代码来源:ElementInformation.Designer.cs
示例10: InitializeComponent
/// <summary>Required method for Designer support - do not modify the contents of this method with the code editor.</summary>
private void InitializeComponent()
{
this.MasterTabControl = new System.Windows.Forms.TabControl();
this.MasterTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.Multiline = true;
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Text = "NORMA: PersonCountryDemo Data Test Form";
this.MasterTabControl.Size = new System.Drawing.Size(540, 520);
this.Controls.Add(MasterTabControl);
this.Size = new System.Drawing.Size(550, 550);
this.MasterTabControl.TabPages.Add("Country", "Country");
CountryCore_InputControl icCountryCore = new CountryCore_InputControl();
icCountryCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["Country"].Controls.Add(icCountryCore);
this.MasterTabControl.TabPages.Add("Person", "Person");
PersonCore_InputControl icPersonCore = new PersonCore_InputControl();
icPersonCore.Dock = System.Windows.Forms.DockStyle.Fill;
this.MasterTabControl.TabPages["Person"].Controls.Add(icPersonCore);
}
开发者ID:cjheath,项目名称:NORMA,代码行数:23,代码来源:PersonCountryDemo.DataLayerTestForm.PLiX.cs
示例11: InitializeComponent
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.tabControl1 = new System.Windows.Forms.TabControl();
this.SuspendLayout();
//
// tabControl1
//
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 0);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(517, 537);
this.tabControl1.TabIndex = 2;
//
// UIExcel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tabControl1);
this.Name = "UIExcel";
this.Size = new System.Drawing.Size(517, 537);
this.ResumeLayout(false);
}
开发者ID:tyrant39001,项目名称:Tyrant,代码行数:27,代码来源:UIExcel.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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Welcome));
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.label12 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.room125Button = new System.Windows.Forms.Button();
this.room124Button = new System.Windows.Forms.Button();
this.room118Button = new System.Windows.Forms.Button();
this.room109Button = new System.Windows.Forms.Button();
this.room126Button = new System.Windows.Forms.Button();
this.room127Button = new System.Windows.Forms.Button();
this.room128Button = new System.Windows.Forms.Button();
this.room123Button = new System.Windows.Forms.Button();
this.room122Button = new System.Windows.Forms.Button();
this.room121Button = new System.Windows.Forms.Button();
this.room117Button = new System.Windows.Forms.Button();
this.room116Button = new System.Windows.Forms.Button();
this.rom115Button = new System.Windows.Forms.Button();
this.room108Button = new System.Windows.Forms.Button();
this.room107Button = new System.Windows.Forms.Button();
this.room106Button = new System.Windows.Forms.Button();
this.room129Button = new System.Windows.Forms.Button();
this.room130Button = new System.Windows.Forms.Button();
this.room120Button = new System.Windows.Forms.Button();
this.room119Button = new System.Windows.Forms.Button();
this.room114Button = new System.Windows.Forms.Button();
this.room113Button = new System.Windows.Forms.Button();
this.room112Button = new System.Windows.Forms.Button();
this.room111Button = new System.Windows.Forms.Button();
this.room110Button = new System.Windows.Forms.Button();
this.room105Button = new System.Windows.Forms.Button();
this.room104Button = new System.Windows.Forms.Button();
this.room102Button = new System.Windows.Forms.Button();
this.room103Button = new System.Windows.Forms.Button();
this.room101Button = new System.Windows.Forms.Button();
this.label10 = new System.Windows.Forms.Label();
this.label18 = new System.Windows.Forms.Label();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.room272Button = new System.Windows.Forms.Button();
this.room263Button = new System.Windows.Forms.Button();
this.room271Button = new System.Windows.Forms.Button();
this.room270Button = new System.Windows.Forms.Button();
this.room269Button = new System.Windows.Forms.Button();
this.room262Button = new System.Windows.Forms.Button();
this.room261Button = new System.Windows.Forms.Button();
this.room260Button = new System.Windows.Forms.Button();
this.room268Button = new System.Windows.Forms.Button();
this.room267Button = new System.Windows.Forms.Button();
this.room266Button = new System.Windows.Forms.Button();
this.room265Button = new System.Windows.Forms.Button();
this.room264Button = new System.Windows.Forms.Button();
this.room259Button = new System.Windows.Forms.Button();
this.room258Button = new System.Windows.Forms.Button();
this.room256Button = new System.Windows.Forms.Button();
this.room257Button = new System.Windows.Forms.Button();
this.room255Button = new System.Windows.Forms.Button();
this.room254Button = new System.Windows.Forms.Button();
this.room245Button = new System.Windows.Forms.Button();
this.room253Button = new System.Windows.Forms.Button();
this.room252Button = new System.Windows.Forms.Button();
this.room251Button = new System.Windows.Forms.Button();
this.room244Button = new System.Windows.Forms.Button();
this.room243Button = new System.Windows.Forms.Button();
this.room242Button = new System.Windows.Forms.Button();
this.room250Button = new System.Windows.Forms.Button();
this.room249Button = new System.Windows.Forms.Button();
this.room248Button = new System.Windows.Forms.Button();
this.room247Button = new System.Windows.Forms.Button();
this.room246Button = new System.Windows.Forms.Button();
this.rom241Button = new System.Windows.Forms.Button();
this.room240Button = new System.Windows.Forms.Button();
this.room238Button = new System.Windows.Forms.Button();
this.room239Button = new System.Windows.Forms.Button();
this.rom237Button = new System.Windows.Forms.Button();
this.room236Button = new System.Windows.Forms.Button();
this.room227Button = new System.Windows.Forms.Button();
this.room235Button = new System.Windows.Forms.Button();
this.room234Button = new System.Windows.Forms.Button();
this.room233Button = new System.Windows.Forms.Button();
this.room226Button = new System.Windows.Forms.Button();
this.room225Button = new System.Windows.Forms.Button();
this.room224Button = new System.Windows.Forms.Button();
this.room232Button = new System.Windows.Forms.Button();
this.room231Button = new System.Windows.Forms.Button();
this.room230Button = new System.Windows.Forms.Button();
this.room229Button = new System.Windows.Forms.Button();
this.room228Button = new System.Windows.Forms.Button();
this.room223Button = new System.Windows.Forms.Button();
this.room222Button = new System.Windows.Forms.Button();
this.room220Button = new System.Windows.Forms.Button();
this.room221Button = new System.Windows.Forms.Button();
this.room219Button = new System.Windows.Forms.Button();
//.........这里部分代码省略.........
开发者ID:soniarai,项目名称:HRS,代码行数:101,代码来源:Welcome.designer.cs
示例13: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.grpSQL = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.grpParameters = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.dataGridView2 = new System.Windows.Forms.DataGridView();
this.Name_Input = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.dataGridView3 = new System.Windows.Forms.DataGridView();
this.Name_Out = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.grpSqlResult = new System.Windows.Forms.GroupBox();
this.dgvTest = new System.Windows.Forms.DataGridView();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.tvTables = new System.Windows.Forms.TreeView();
this.label1 = new System.Windows.Forms.Label();
this.cmbDataName = new System.Windows.Forms.ComboBox();
this.groupBox2.SuspendLayout();
this.grpParameters.SuspendLayout();
this.tabPage1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
this.tabPage2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView3)).BeginInit();
this.grpSqlResult.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvTest)).BeginInit();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// grpSQL
//
this.grpSQL.Location = new System.Drawing.Point(264, 16);
this.grpSQL.Name = "grpSQL";
this.grpSQL.Size = new System.Drawing.Size(522, 128);
this.grpSQL.TabIndex = 0;
this.grpSQL.TabStop = false;
this.grpSQL.Text = "SQL Statment";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.grpParameters);
this.groupBox2.Location = new System.Drawing.Point(264, 287);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(522, 220);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Parameters";
//
// grpParameters
//
this.grpParameters.Controls.Add(this.tabPage1);
this.grpParameters.Controls.Add(this.tabPage2);
this.grpParameters.Dock = System.Windows.Forms.DockStyle.Fill;
this.grpParameters.Location = new System.Drawing.Point(3, 16);
this.grpParameters.Name = "grpParameters";
this.grpParameters.SelectedIndex = 0;
this.grpParameters.Size = new System.Drawing.Size(516, 201);
this.grpParameters.TabIndex = 0;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.dataGridView2);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(508, 175);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Input Parameter";
this.tabPage1.UseVisualStyleBackColor = true;
//
// dataGridView2
//
this.dataGridView2.BackgroundColor = System.Drawing.SystemColors.ActiveBorder;
this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Name_Input});
this.dataGridView2.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView2.Location = new System.Drawing.Point(3, 3);
this.dataGridView2.Name = "dataGridView2";
this.dataGridView2.Size = new System.Drawing.Size(502, 169);
this.dataGridView2.TabIndex = 1;
//
// Name_Input
//
this.Name_Input.HeaderText = "Name";
this.Name_Input.Name = "Name_Input";
//
// tabPage2
//
this.tabPage2.Controls.Add(this.dataGridView3);
this.tabPage2.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(380, 175);
this.tabPage2.TabIndex = 1;
//.........这里部分代码省略.........
开发者ID:huutruongqnvn,项目名称:vnecoo01,代码行数:101,代码来源:ConfugurationQuery.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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_CancelacionesCobranzas));
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
this.GroupBox1 = new System.Windows.Forms.GroupBox();
this.label4 = new System.Windows.Forms.Label();
this.txtCuentaname = new System.Windows.Forms.TextBox();
this.GroupBox6 = new System.Windows.Forms.GroupBox();
this.rbAnalisis2 = new System.Windows.Forms.RadioButton();
this.rbAnalisis1 = new System.Windows.Forms.RadioButton();
this.Label3 = new System.Windows.Forms.Label();
this.txtGlosa = new System.Windows.Forms.TextBox();
this.btnSeleccionarproveedores = new System.Windows.Forms.Button();
this.GroupBox10 = new System.Windows.Forms.GroupBox();
this.rbMultiplesdetalles = new System.Windows.Forms.RadioButton();
this.rbDetalle = new System.Windows.Forms.RadioButton();
this.chkCuenta = new System.Windows.Forms.CheckBox();
this.txtCtactename = new System.Windows.Forms.TextBox();
this.txtCuenta = new System.Windows.Forms.TextBox();
this.btnGenerarPendientes = new System.Windows.Forms.Button();
this.txtRuc = new System.Windows.Forms.TextBox();
this.TabCancelaciones = new System.Windows.Forms.TabControl();
this.TabPage1 = new System.Windows.Forms.TabPage();
this.cboModalidad = new System.Windows.Forms.ComboBox();
this.label21 = new System.Windows.Forms.Label();
this.txtcuentaid = new System.Windows.Forms.TextBox();
this.cboFefectivo = new System.Windows.Forms.ComboBox();
this.label9 = new System.Windows.Forms.Label();
this.cboBanco = new System.Windows.Forms.ComboBox();
this.cboFpago = new System.Windows.Forms.ComboBox();
this.examinar = new System.Windows.Forms.DataGridView();
this.selecciona = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.ctactename = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.debehaber = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.pedidoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.num_op = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cuentaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tipoper = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cuentaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tipdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.serdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.numdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.fechdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.fechvenc = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.moneda = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.saldo1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.saldo2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.monedap = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.pagosoles = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.pagodolares = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.asiento = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tipcamb = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.glosa = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.porcdetraccion = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.original1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.original2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.fEmision = new System.Windows.Forms.DateTimePicker();
this.txtTipCamb = new System.Windows.Forms.TextBox();
this.txtnomdetalle = new System.Windows.Forms.TextBox();
this.btnPagoauto = new System.Windows.Forms.Button();
this.cboMoneda = new System.Windows.Forms.ComboBox();
this.txtmontoapagar = new System.Windows.Forms.TextBox();
this.GroupBox5 = new System.Windows.Forms.GroupBox();
this.Label6 = new System.Windows.Forms.Label();
this.Label7 = new System.Windows.Forms.Label();
this.lbldolaresseleccionado = new System.Windows.Forms.Label();
this.lblsolesseleccionado = new System.Windows.Forms.Label();
this.txtNumpago = new System.Windows.Forms.TextBox();
this.Label1 = new System.Windows.Forms.Label();
this.txtconcepto = new System.Windows.Forms.TextBox();
this.txtDsubdiario = new System.Windows.Forms.TextBox();
this.Label18 = new System.Windows.Forms.Label();
this.txtCodsubdiario = new System.Windows.Forms.TextBox();
this.GroupBox21 = new System.Windows.Forms.GroupBox();
this.rbSoles = new System.Windows.Forms.RadioButton();
this.rbDolares = new System.Windows.Forms.RadioButton();
this.Label15 = new System.Windows.Forms.Label();
this.Label10 = new System.Windows.Forms.Label();
this.Label5 = new System.Windows.Forms.Label();
this.txtglosacampo = new System.Windows.Forms.TextBox();
this.GroupBox4 = new System.Windows.Forms.GroupBox();
this.btnVervoucher = new System.Windows.Forms.Button();
this.btnGeneravoucher = new System.Windows.Forms.Button();
this.btnSalir = new System.Windows.Forms.Button();
this.GroupBox3 = new System.Windows.Forms.GroupBox();
//.........这里部分代码省略.........
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:101,代码来源:Frm_CancelacionesCobranzas.designer.cs
示例15: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Filmes));
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.label18 = new System.Windows.Forms.Label();
this.Genero = new System.Windows.Forms.GroupBox();
this.label16 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label17 = new System.Windows.Forms.Label();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.tb_Quantidade = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.button2 = new System.Windows.Forms.Button();
this.label5 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.tb_titulo = new System.Windows.Forms.TextBox();
this.tb_anoprod = new System.Windows.Forms.TextBox();
this.tb_subtitulo = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.tb_duracao = new System.Windows.Forms.TextBox();
this.tb_produtora = new System.Windows.Forms.TextBox();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.tabPage4 = new System.Windows.Forms.TabPage();
this.Voltar = new System.Windows.Forms.ToolStrip();
this.Retornar = new System.Windows.Forms.ToolStripButton();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.rb_genero = new System.Windows.Forms.RadioButton
|
请发表评论