本文整理汇总了C#中System.Windows.Forms.FlowLayoutPanel类的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.FlowLayoutPanel类的具体用法?C# System.Windows.Forms.FlowLayoutPanel怎么用?C# System.Windows.Forms.FlowLayoutPanel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
System.Windows.Forms.FlowLayoutPanel类属于命名空间,在下文中一共展示了System.Windows.Forms.FlowLayoutPanel类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: addItem
public int addItem(int appNumber)
{
getFiles(appNumber);
getIcon(appNumber);
pictureBox2 = new System.Windows.Forms.PictureBox[files.Length];
flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel[files.Length];
label = new System.Windows.Forms.Label[fileNames.Length];
flow = System.Windows.Forms.FlowDirection.TopDown;
img = (System.Drawing.Image)bitmap;
for (int i = 0; i < files.Length; i++)
{
flowLayoutPanel2[i] = new System.Windows.Forms.FlowLayoutPanel();
flowLayoutPanel2[i].AutoSize = false;
flowLayoutPanel2[i].FlowDirection = flow;
pictureBox2[i] = new System.Windows.Forms.PictureBox();
pictureBox2[i].Image = img;
pictureBox2[i].Size = size;
pictureBox2[i].Parent = this.flowLayoutPanel2[i];
this.flowLayoutPanel2[i].Size = size;
label[i] = new System.Windows.Forms.Label();
label[i].ForeColor = System.Drawing.Color.White;
label[i].Text = fileNames[i];
label[i].AutoSize = true;
label[i].Parent = this.flowLayoutPanel2[i];
this.flowLayoutPanel2[i].Parent = this.flowLayoutPanel1;
}
return files.Length;
}//end of addItem
开发者ID:kuropyon,项目名称:SpecialProblem-final,代码行数:29,代码来源:Form1.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()
{
this.flowLayout = new System.Windows.Forms.FlowLayoutPanel();
this.SuspendLayout();
//
// flowLayout
//
this.flowLayout.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.flowLayout.AutoScroll = true;
this.flowLayout.Location = new System.Drawing.Point(3, 3);
this.flowLayout.Name = "flowLayout";
this.flowLayout.Size = new System.Drawing.Size(781, 193);
this.flowLayout.TabIndex = 0;
//
// FilterPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.flowLayout);
this.DoubleBuffered = true;
this.Name = "FilterPanel";
this.Size = new System.Drawing.Size(787, 199);
this.ResumeLayout(false);
}
开发者ID:mkoscak,项目名称:koberce-part-ii,代码行数:30,代码来源:FilterPanel.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()
{
this.bSave = new System.Windows.Forms.Button();
this.bCancel = new System.Windows.Forms.Button();
this.fpanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.SuspendLayout();
//
// bSave
//
this.bSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.bSave.Location = new System.Drawing.Point(317, 334);
this.bSave.Name = "bSave";
this.bSave.Size = new System.Drawing.Size(75, 23);
this.bSave.TabIndex = 1;
this.bSave.Text = "Save";
this.bSave.UseVisualStyleBackColor = true;
this.bSave.Click += new System.EventHandler(this.bSave_Click);
//
// bCancel
//
this.bCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.bCancel.Location = new System.Drawing.Point(398, 334);
this.bCancel.Name = "bCancel";
this.bCancel.Size = new System.Drawing.Size(75, 23);
this.bCancel.TabIndex = 0;
this.bCancel.Text = "Cancel";
this.bCancel.UseVisualStyleBackColor = true;
this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
//
// fpanel1
//
this.fpanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.fpanel1.AutoScroll = true;
this.fpanel1.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
this.fpanel1.Location = new System.Drawing.Point(12, 12);
this.fpanel1.Name = "fpanel1";
this.fpanel1.Size = new System.Drawing.Size(461, 316);
this.fpanel1.TabIndex = 2;
this.fpanel1.WrapContents = false;
//
// MediumLevelRecordEditor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(485, 369);
this.Controls.Add(this.fpanel1);
this.Controls.Add(this.bCancel);
this.Controls.Add(this.bSave);
this.Name = "MediumLevelRecordEditor";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Record editor";
this.ResumeLayout(false);
}
开发者ID:robjer,项目名称:tesvsnip,代码行数:59,代码来源:MediumLevelRecordEditor.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()
{
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.btnDongY = new System.Windows.Forms.Button();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
this.panelControl1.SuspendLayout();
this.SuspendLayout();
//
// panelControl1
//
this.panelControl1.Controls.Add(this.btnDongY);
this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panelControl1.Location = new System.Drawing.Point(0, 415);
this.panelControl1.Name = "panelControl1";
this.panelControl1.Size = new System.Drawing.Size(634, 61);
this.panelControl1.TabIndex = 0;
//
// btnDongY
//
this.btnDongY.Location = new System.Drawing.Point(493, 8);
this.btnDongY.Name = "btnDongY";
this.btnDongY.Size = new System.Drawing.Size(129, 41);
this.btnDongY.TabIndex = 0;
this.btnDongY.Text = "Đồng ý";
this.btnDongY.UseVisualStyleBackColor = true;
this.btnDongY.Click += new System.EventHandler(this.btnDongY_Click);
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.AutoScroll = true;
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(634, 415);
this.flowLayoutPanel1.TabIndex = 1;
//
// frmChuyenTB
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(634, 476);
this.Controls.Add(this.flowLayoutPanel1);
this.Controls.Add(this.panelControl1);
this.Name = "frmChuyenTB";
this.Text = "frmChuyenTB";
this.Load += new System.EventHandler(this.frmChuyenTB_Load);
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
this.panelControl1.ResumeLayout(false);
this.ResumeLayout(false);
}
开发者ID:WendyAnne,项目名称:Hotel-software,代码行数:55,代码来源:frmChuyenTB.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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MediumLevelRecordEditor));
this.bSave = new System.Windows.Forms.Button();
this.bCancel = new System.Windows.Forms.Button();
this.fpanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.SuspendLayout();
//
// bSave
//
resources.ApplyResources(this.bSave, "bSave");
this.bSave.DialogResult = System.Windows.Forms.DialogResult.OK;
this.bSave.Name = "bSave";
this.bSave.UseVisualStyleBackColor = true;
this.bSave.Click += new System.EventHandler(this.bSave_Click);
//
// bCancel
//
resources.ApplyResources(this.bCancel, "bCancel");
this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.bCancel.Name = "bCancel";
this.bCancel.UseVisualStyleBackColor = true;
this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
//
// fpanel1
//
resources.ApplyResources(this.fpanel1, "fpanel1");
this.fpanel1.Name = "fpanel1";
//
// MediumLevelRecordEditor
//
this.AcceptButton = this.bSave;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.bCancel;
this.Controls.Add(this.fpanel1);
this.Controls.Add(this.bCancel);
this.Controls.Add(this.bSave);
this.Name = "MediumLevelRecordEditor";
this.ShowInTaskbar = false;
this.ResumeLayout(false);
}
开发者ID:Emilgardis,项目名称:falloutsnip,代码行数:46,代码来源:MediumLevelRecordEditor.designer.cs
示例6: InitializeComponent
private void InitializeComponent()
{
this.flpProtocols = new System.Windows.Forms.FlowLayoutPanel();
this.Load += new System.EventHandler(this.QuickConnect_Load);
this.btnCancel = new System.Windows.Forms.Button();
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
this.SuspendLayout();
//
//flpProtocols
//
this.flpProtocols.Dock = System.Windows.Forms.DockStyle.Fill;
this.flpProtocols.Location = new System.Drawing.Point(0, 0);
this.flpProtocols.Name = "flpProtocols";
this.flpProtocols.Size = new System.Drawing.Size(271, 155);
this.flpProtocols.TabIndex = 10;
//
//btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnCancel.Location = new System.Drawing.Point(-200, -200);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 20;
this.btnCancel.TabStop = false;
this.btnCancel.Text = Language.strButtonCancel;
this.btnCancel.UseVisualStyleBackColor = true;
//
//QuickConnect
//
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(271, 155);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.flpProtocols);
this.HideOnClose = true;
this.Icon = global::My.Resources.Resources.Play_Quick_Icon;
this.Name = "QuickConnect";
this.TabText = Language.strQuickConnect;
this.Text = Language.strQuickConnect;
this.ResumeLayout(false);
}
开发者ID:jpmarques,项目名称:mRemoteNC,代码行数:41,代码来源:UI.Window.QuickConnect.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()
{
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.SuspendLayout();
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(465, 322);
this.flowLayoutPanel1.TabIndex = 0;
//
// SelectAccountForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(465, 322);
this.Controls.Add(this.flowLayoutPanel1);
this.Name = "SelectAccountForm";
this.Text = "SelectAccountForm";
this.ResumeLayout(false);
}
开发者ID:kissstudio,项目名称:Topawes5,代码行数:27,代码来源:SelectAccountForm.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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.faTabStrip1 = new System.Windows.Forms.TabControl();
this.faTabStripItemInfo = new System.Windows.Forms.TabPage();
this.label10 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.faTabStripItemSend = new System.Windows.Forms.TabPage();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.cmdClearSend = new System.Windows.Forms.Button();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.lblStatus = new System.Windows.Forms.Label();
this.cmdSend = new System.Windows.Forms.Button();
this.lblTeleLength = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.label7 = new System.Windows.Forms.Label();
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
this.panel4 = new System.Windows.Forms.Panel();
this.lblLenEmpf = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
this.splitContainer3 = new System.Windows.Forms.SplitContainer();
this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
this.lstStoredSenddata = new System.Windows.Forms.ListBox();
this.panel3 = new System.Windows.Forms.Panel();
this.cmdRemoveSendeTele = new System.Windows.Forms.Button();
this.cmdAddSendeTele = new System.Windows.Forms.Button();
this.dtaSendTabelle = new System.Windows.Forms.DataGridView();
this.Bezeichnung = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Laenge = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Wert = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.splitContainer4 = new System.Windows.Forms.SplitContainer();
this.dtaSendSendTable = new System.Windows.Forms.DataGridView();
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dtaSendQuittTable = new System.Windows.Forms.DataGridView();
this.colSendQuittText = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.faTabStripItemRecieve = new System.Windows.Forms.TabPage();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.kryptonButton2 = new System.Windows.Forms.Button();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.grdEmpfang = new System.Windows.Forms.DataGridView();
this.colEmpf = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dtaEmpfangstelegrammAufgeschluesselt = new System.Windows.Forms.DataGridView();
this.colEmpfBezeichnung = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colEmpfLaenge = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colEmpfWert = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.faTabStripItemSettings = new System.Windows.Forms.TabPage();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.label5 = new System.Windows.Forms.Label();
this.cmdDelTele = new System.Windows.Forms.Button();
this.cmdEditQuittFields = new System.Windows.Forms.Button();
this.lstQuitt = new System.Windows.Forms.ListBox();
this.chkAutoQuitt = new System.Windows.Forms.CheckBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.numSequenceNumberLength = new System.Windows.Forms.NumericUpDown();
this.numSequenceNumberPosition = new System.Windows.Forms.NumericUpDown();
this.label4 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.chkChanel2active = new System.Windows.Forms.CheckBox();
this.numPort2 = new System.Windows.Forms.NumericUpDown();
this.numPort1 = new System.Windows.Forms.NumericUpDown();
this.lblKanal2Port = new System.Windows.Forms.Label();
this.chkChanel1active = new System.Windows.Forms.CheckBox();
this.lblKanal2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.optTwoChannel = new System.Windows.Forms.RadioButton();
this.optOneChannel = new System.Windows.Forms.RadioButton();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.ipAddressControl = new IPAddressControlLib.IPAddressControl();
this.cmdSelectStep7UDT = new System.Windows.Forms.Button();
this.cmdConnect = new System.Windows.Forms.Button();
this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
this.panel1 = new System.Windows.Forms.Panel();
this.cmdSettExport = new System.Windows.Forms.Button();
this.cmdSettImport = new System.Windows.Forms.Button();
this.cmdSettingsSave = new System.Windows.Forms.Button();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.picConnection1 = new System.Windows.Forms.PictureBox();
this.picConnection2 = new System.Windows.Forms.PictureBox();
this.cmdDisconnect = new System.Windows.Forms.Button();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.faTabStrip1.SuspendLayout();
this.faTabStripItemInfo.SuspendLayout();
this.faTabStripItemSend.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
this.panel4.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
this.splitContainer2.Panel1.SuspendLayout();
this.splitContainer2.Panel2.SuspendLayout();
//.........这里部分代码省略.........
开发者ID:MaxOLydian,项目名称:s7-diff-merge,代码行数:101,代码来源:MainForm.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()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.CancelBtn = new System.Windows.Forms.Button();
this.SaveBtn = new System.Windows.Forms.Button();
this.QuickSettingsBtn = new System.Windows.Forms.Button();
this.RequestSettingsbtn = new System.Windows.Forms.Button();
this.OptionTabControl = new System.Windows.Forms.TabControl();
this.GameTab = new System.Windows.Forms.TabPage();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel8 = new System.Windows.Forms.TableLayoutPanel();
this.SkinList = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.Antialias = new System.Windows.Forms.NumericUpDown();
this.EnableSleeveLoading = new System.Windows.Forms.CheckBox();
this.tableLayoutPanel7 = new System.Windows.Forms.TableLayoutPanel();
this.AutoPlacing = new System.Windows.Forms.CheckBox();
this.RandomPlacing = new System.Windows.Forms.CheckBox();
this.Fullscreen = new System.Windows.Forms.CheckBox();
this.Enabled3d = new System.Windows.Forms.CheckBox();
this.EnableMusic = new System.Windows.Forms.CheckBox();
this.AutoChain = new System.Windows.Forms.CheckBox();
this.EnableSound = new System.Windows.Forms.CheckBox();
this.NoDelay = new System.Windows.Forms.CheckBox();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.FontSize = new System.Windows.Forms.NumericUpDown();
this.GameFont = new System.Windows.Forms.ComboBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.tableLayoutPanel9 = new System.Windows.Forms.TableLayoutPanel();
this.Username = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.DefualtDeck = new System.Windows.Forms.ComboBox();
this.label5 = new System.Windows.Forms.Label();
this.accountTab = new System.Windows.Forms.TabPage();
this.tableLayoutPanel10 = new System.Windows.Forms.TableLayoutPanel();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.tableLayoutPanel11 = new System.Windows.Forms.TableLayoutPanel();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
this.UpdatePassword = new System.Windows.Forms.Button();
this.currentPassword = new System.Windows.Forms.TextBox();
this.newPassword = new System.Windows.Forms.TextBox();
this.confirmPassword = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.OptionTabControl.SuspendLayout();
this.GameTab.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.groupBox2.SuspendLayout();
this.tableLayoutPanel4.SuspendLayout();
this.tableLayoutPanel8.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.Antialias)).BeginInit();
this.tableLayoutPanel7.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.groupBox1.SuspendLayout();
this.tableLayoutPanel5.SuspendLayout();
this.groupBox3.SuspendLayout();
this.tableLayoutPanel6.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.FontSize)).BeginInit();
this.groupBox4.SuspendLayout();
this.tableLayoutPanel9.SuspendLayout();
this.accountTab.SuspendLayout();
this.tableLayoutPanel10.SuspendLayout();
this.groupBox5.SuspendLayout();
this.tableLayoutPanel11.SuspendLayout();
this.flowLayoutPanel2.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.OptionTabControl, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(608, 362);
this.tableLayoutPanel1.TabIndex = 0;
//
// flowLayoutPanel1
//.........这里部分代码省略.........
开发者ID:hrkrx,项目名称:DevProLauncher,代码行数:101,代码来源:Options_frm.designer.cs
示例10: InitializeComponent
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.labelItemShuoMing = new System.Windows.Forms.Label();
this.panelBigXY = new System.Windows.Forms.Panel();
this.buttonBigXYBig = new System.Windows.Forms.Button();
this.buttonBigXYQuit = new System.Windows.Forms.Button();
this.pictureBoxBigXY = new System.Windows.Forms.PictureBox();
this.MenuRightClick = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripTextBoxX = new System.Windows.Forms.ToolStripTextBox();
this.toolStripTextBoxY = new System.Windows.Forms.ToolStripTextBox();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.网格显示ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.放大选取框功能ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.坐标自动调整ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.默认坐标范围ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.slide = new NationalInstruments.UI.WindowsForms.Slide();
this.panel_itemsIN = new System.Windows.Forms.FlowLayoutPanel();
this.BTN_切换Y轴 = new System.Windows.Forms.Button();
this.BTN_停止显示 = new System.Windows.Forms.Button();
this.buttonReXY = new System.Windows.Forms.Button();
this.buttonModeXY = new System.Windows.Forms.Button();
this.buttonBigModeXY = new System.Windows.Forms.Button();
this.buttonLinesShowXY = new System.Windows.Forms.Button();
this.btn_调整坐标轴 = new System.Windows.Forms.Button();
this.legend1 = new NationalInstruments.UI.WindowsForms.Legend();
this.xAxis_Looking = new NationalInstruments.UI.XAxis();
this.Graph_View = new NationalInstruments.UI.WindowsForms.ScatterGraph();
this.xyCursorB = new NationalInstruments.UI.XYCursor();
this.scatterPlot2 = new NationalInstruments.UI.ScatterPlot();
this.yAxis1 = new NationalInstruments.UI.YAxis();
this.xyCursorE = new NationalInstruments.UI.XYCursor();
this.panel_text = new System.Windows.Forms.Panel();
this.panelBigXY.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxBigXY)).BeginInit();
this.MenuRightClick.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.slide)).BeginInit();
this.panel_itemsIN.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.legend1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.Graph_View)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xyCursorB)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xyCursorE)).BeginInit();
this.SuspendLayout();
//
// labelItemShuoMing
//
this.labelItemShuoMing.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelItemShuoMing.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
this.labelItemShuoMing.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.labelItemShuoMing.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.labelItemShuoMing.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.labelItemShuoMing.ForeColor = System.Drawing.Color.White;
this.labelItemShuoMing.Location = new System.Drawing.Point(868, 518);
this.labelItemShuoMing.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.labelItemShuoMing.Name = "labelItemShuoMing";
this.labelItemShuoMing.Size = new System.Drawing.Size(149, 47);
this.labelItemShuoMing.TabIndex = 10;
this.labelItemShuoMing.Text = "说明";
this.labelItemShuoMing.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.labelItemShuoMing.Visible = false;
//
// panelBigXY
//
this.panelBigXY.BackColor = System.Drawing.Color.Transparent;
this.panelBigXY.Controls.Add(this.buttonBigXYBig);
this.panelBigXY.Controls.Add(this.buttonBigXYQuit);
this.panelBigXY.Location = new System.Drawing.Point(650, 327);
this.panelBigXY.Margin = new System.Windows.Forms.Padding(4);
this.panelBigXY.Name = "panelBigXY";
this.panelBigXY.Size = new System.Drawing.Size(171, 48);
this.panelBigXY.TabIndex = 16;
this.panelBigXY.Visible = false;
//
// buttonBigXYBig
//
this.buttonBigXYBig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonBigXYBig.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.buttonBigXYBig.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.buttonBigXYBig.ForeColor = System.Drawing.Color.Black;
this.buttonBigXYBig.Location = new System.Drawing.Point(32, 14);
this.buttonBigXYBig.Margin = new System.Windows.Forms.Padding(0);
this.buttonBigXYBig.Name = "buttonBigXYBig";
this.buttonBigXYBig.Size = new System.Drawing.Size(70, 34);
this.buttonBigXYBig.TabIndex = 13;
this.buttonBigXYBig.TabStop = false;
this.buttonBigXYBig.Text = "放大";
this.buttonBigXYBig.UseVisualStyleBackColor = false;
this.buttonBigXYBig.Click += new System.EventHandler(this.buttonBigXYBig_Click);
//
// buttonBigXYQuit
//
this.buttonBigXYQuit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonBigXYQuit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.buttonBigXYQuit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.buttonBigXYQuit.ForeColor = System.Drawing.Color.Black;
this.buttonBigXYQuit.Location = new System.Drawing.Point(104, 14);
//.........这里部分代码省略.........
开发者ID:jyorin,项目名称:yinghe,代码行数:101,代码来源:XYGraph.designer.cs
示例11: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.Panel bottomPanel;
System.Windows.Forms.Label lblMainWindowPage;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
System.Windows.Forms.Label lblSize;
System.Windows.Forms.GroupBox groupBox15;
System.Windows.Forms.GroupBox groupBox7;
System.Windows.Forms.Label lblGeneralPage;
System.Windows.Forms.Label lblEnvironment;
System.Windows.Forms.Label lblSkillPlannerPage;
System.Windows.Forms.Label lblNetworkPageAPIProvider;
System.Windows.Forms.Label lblNetworkPageProxy;
System.Windows.Forms.Label label12;
System.Windows.Forms.Label label11;
System.Windows.Forms.Label lblHTTP;
System.Windows.Forms.Label lblEmailNotificationPage;
System.Windows.Forms.Label lblEmailServer;
System.Windows.Forms.Label lblFromAddress;
System.Windows.Forms.Label lblToAddress;
System.Windows.Forms.Label lblEmailPassword;
System.Windows.Forms.Label lblEmailUsername;
System.Windows.Forms.Label lblPortNumber;
System.Windows.Forms.Label lblNotificationsPage;
System.Windows.Forms.Label lblTrayIconPage;
System.Windows.Forms.GroupBox systemTrayIconGroupBox;
System.Windows.Forms.Label lblSchedulerUIPage;
System.Windows.Forms.Label lblText;
System.Windows.Forms.Label lblBlockingEvents;
System.Windows.Forms.Label lblRecurringEvents;
System.Windows.Forms.Label lblSimpleEvents;
System.Windows.Forms.Label lblReminder;
System.Windows.Forms.Label lblURI;
System.Windows.Forms.Label lblPassword;
System.Windows.Forms.Label lblGoogleEmail;
System.Windows.Forms.Label lblEarlyReminder;
System.Windows.Forms.Label lblLateReminder;
System.Windows.Forms.Label lblExternalCalendarPage;
System.Windows.Forms.Label lblG15Page;
System.Windows.Forms.Label lblCycleTrainingSeconds;
System.Windows.Forms.Label lblG15CycleCharSeconds;
System.Windows.Forms.Label lblIgbServerPage;
System.Windows.Forms.Label lblIGBPort;
System.Windows.Forms.FlowLayoutPanel flowLayoutPanel28;
System.Windows.Forms.Label igbHelpLabel;
System.Windows.Forms.Label label1;
System.Windows.Forms.GroupBox gbSkillBrowserIconSet;
System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node1");
System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Node2");
System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Node3");
System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Node4");
System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Node5");
System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Node6");
System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Node7");
System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Node8");
System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
treeNode1,
treeNode2,
treeNode3,
treeNode4,
treeNode5,
treeNode6,
treeNode7,
treeNode8});
System.Windows.Forms.Label label2;
System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("Updates", 11, 11);
System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("Network", 7, 7);
System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("Logitech Keyboards", 4, 4);
System.Windows.Forms.TreeNode treeNode13 = new System.Windows.Forms.TreeNode("IGB Server", 3, 3);
System.Windows.Forms.TreeNode treeNode14 = new System.Windows.Forms.TreeNode("General", 10, 10, new System.Windows.Forms.TreeNode[] {
treeNode10,
treeNode11,
treeNode12,
treeNode13});
System.Windows.Forms.TreeNode treeNode15 = new System.Windows.Forms.TreeNode("Main Window", 6, 6);
System.Windows.Forms.TreeNode treeNode16 = new System.Windows.Forms.TreeNode("Icons", 13, 13);
System.Windows.Forms.TreeNode treeNode17 = new System.Windows.Forms.TreeNode("Messages", 14, 14);
System.Windows.Forms.TreeNode treeNode18 = new System.Windows.Forms.TreeNode("Skill Planner", 8, 8, new System.Windows.Forms.TreeNode[] {
treeNode16,
treeNode17});
System.Windows.Forms.TreeNode treeNode19 = new System.Windows.Forms.TreeNode("System Tray Icon", 2, 2);
System.Windows.Forms.TreeNode treeNode20 = new System.Windows.Forms.TreeNode("External Calendar", 5, 5);
System.Windows.Forms.TreeNode treeNode21 = new System.Windows.Forms.TreeNode("Scheduler", 1, 1, new System.Windows.Forms.TreeNode[] {
treeNode20});
System.Windows.Forms.TreeNode treeNode22 = new System.Windows.Forms.TreeNode("Skill Completion Mails", 12, 12);
System.Windows.Forms.TreeNode treeNode23 = new System.Windows.Forms.TreeNode("Notifications", 9, 9, new System.Windows.Forms.TreeNode[] {
treeNode22});
System.Windows.Forms.TreeNode treeNode24 = new System.Windows.Forms.TreeNode("BattleClinic Service", 15, 15);
this.applyButton = new System.Windows.Forms.Button();
this.okButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.cbColorQueuedSkills = new System.Windows.Forms.CheckBox();
this.cbShowPrereqMetSkills = new System.Windows.Forms.CheckBox();
this.cbColorPartialSkills = new System.Windows.Forms.CheckBox();
this.cbAlwaysShowSkillQueueTime = new System.Windows.Forms.CheckBox();
//.........这里部分代码省略.........
开发者ID:wow4all,项目名称:evemu_server,代码行数:101,代码来源:SettingsForm.Designer.cs
示例12: InitializeComponent
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Grid));
this.btn_simpleCancelSum = new DevExpress.XtraEditors.SimpleButton();
this.btn_显示隐藏分组面板 = new DevExpress.XtraEditors.SimpleButton();
this.btn_显示隐藏过滤面板 = new DevExpress.XtraEditors.SimpleButton();
this.btn_Export = new DevExpress.XtraEditors.SimpleButton();
this.btnshow = new DevExpress.XtraEditors.PictureEdit();
this.btn_合并取消合并表格 = new DevExpress.XtraEditors.SimpleButton();
this._panelControl = new DevExpress.XtraEditors.PanelControl();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.btn_ReduceRow = new DevExpress.XtraEditors.SimpleButton();
this.btn_AddRow = new DevExpress.XtraEditors.SimpleButton();
this.btn_执行命令1 = new DevExpress.XtraEditors.SimpleButton();
this.采集模块 = new System.Windows.Forms.Panel();
this.分钟 = new System.Windows.Forms.Label();
this.采集频率 = new System.Windows.Forms.Label();
this.采集频率1 = new System.Windows.Forms.ComboBox();
this.panel1 = new System.Windows.Forms.Panel();
this._gridControl = new DevExpress.XtraGrid.GridControl();
this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn21 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
this.bandedGridColumn22 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn24 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn25 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.bandedGridColumn26 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this._gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
this._saveFileDialog = new System.Windows.Forms.SaveFileDialog();
this._contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.复制当前列ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.复制当前字段ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.报表导出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.打印预览ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
((System.ComponentModel.ISupportInitialize)(this.btnshow.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this._panelControl)).BeginInit();
this._panelControl.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.采集模块.SuspendLayout();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this._gridControl)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this._gridView)).BeginInit();
this._contextMenuStrip.SuspendLayout();
this.SuspendLayout();
//
// btn_simpleCancelSum
//
this.btn_simpleCancelSum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btn_simpleCancelSum.Image = ((System.Drawing.Image)(resources.GetObject("btn_simpleCancelSum.Image")));
this.btn_simpleCancelSum.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
this.btn_simpleCancelSum.Location = new System.Drawing.Point(501, 3);
this.btn_simpleCancelSum.Name = "btn_simpleCancelSum";
this.btn_simpleCancelSum.Size = new System.Drawing.Size(80, 27);
this.btn_simpleCancelSum.TabIndex = 4;
this.btn_simpleCancelSum.Text = "合计底栏";
this.btn_simpleCancelSum.Visible = false;
this.btn_simpleCancelSum.Click += new System.EventHandler(this.btn_simpleCancelSum_Click);
//
// btn_显示隐藏分组面板
//
this.btn_显示隐藏分组面板.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btn_显示隐藏分组面板.Image = ((System.Drawing.Image)(resources.GetObject("btn_显示隐藏分组面板.Image")));
this.btn_显示隐藏分组面板.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
this.btn_显示隐藏分组面板.Location = new System.Drawing.Point(587, 3);
this.btn_显示隐藏分组面板.Name = "btn_显示隐藏分组面板";
this.btn_显示隐藏分组面板.Size = new System.Drawing.Size(80, 27);
this.btn_显示隐藏分组面板.TabIndex = 2;
this.btn_显示隐藏分组面板.Text = "分组面板";
//.........这里部分代码省略.........
开发者ID:jyorin,项目名称:yinghe,代码行数:101,代码来源:Grid.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.btnSave = new DevExpress.XtraEditors.SimpleButton();
this.btnClose = new DevExpress.XtraEditors.SimpleButton();
this.btnXemTruoc = new DevExpress.XtraEditors.SimpleButton();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.groupControlConfig = new DevExpress.XtraEditors.GroupControl();
this.xtraScrollableControlConfig = new DevExpress.XtraEditors.XtraScrollableControl();
this.flowLayoutPanelLabel = new System.Windows.Forms.FlowLayoutPanel();
this.flowLayoutPanelPattern = new System.Windows.Forms.FlowLayoutPanel();
this.groupControlExample = new DevExpress.XtraEditors.GroupControl();
this.xtraScrollable
|
请发表评论