Files
lserp_cs_6.0/其他程序/xNewMyFormDesigner/FrmGroup.Designer.cs
T
cyf ab56a9bcf7 基线 SVN r240
SVN-Revision: r240
2025-02-06 06:46:06 +00:00

173 lines
7.4 KiB
C#

namespace NewMyFormDesigner
{
partial class FrmGroup
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <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(FrmGroup));
this.label1 = new System.Windows.Forms.Label();
this.txt_GroupName = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txt_MaxColumnCount = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txt_layoutMethod = new System.Windows.Forms.ComboBox();
this.btn_ok = new System.Windows.Forms.Button();
this.btn_close = new System.Windows.Forms.Button();
this.label4 = new System.Windows.Forms.Label();
this.check_Bak = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(27, 27);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 1;
this.label1.Text = "分组名称";
//
// txt_GroupName
//
this.txt_GroupName.Location = new System.Drawing.Point(86, 24);
this.txt_GroupName.Name = "txt_GroupName";
this.txt_GroupName.Size = new System.Drawing.Size(205, 21);
this.txt_GroupName.TabIndex = 2;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(27, 86);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 1;
this.label2.Text = "最大列数";
//
// txt_MaxColumnCount
//
this.txt_MaxColumnCount.Location = new System.Drawing.Point(86, 83);
this.txt_MaxColumnCount.Name = "txt_MaxColumnCount";
this.txt_MaxColumnCount.Size = new System.Drawing.Size(205, 21);
this.txt_MaxColumnCount.TabIndex = 2;
this.txt_MaxColumnCount.TextChanged += new System.EventHandler(this.txt_MaxColumnCount_TextChanged);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(26, 146);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 1;
this.label3.Text = "布局方法";
//
// txt_layoutMethod
//
this.txt_layoutMethod.FormattingEnabled = true;
this.txt_layoutMethod.Location = new System.Drawing.Point(86, 143);
this.txt_layoutMethod.Name = "txt_layoutMethod";
this.txt_layoutMethod.Size = new System.Drawing.Size(205, 20);
this.txt_layoutMethod.TabIndex = 3;
this.txt_layoutMethod.SelectedIndexChanged += new System.EventHandler(this.txt_layoutMethod_SelectedIndexChanged);
//
// btn_ok
//
this.btn_ok.Location = new System.Drawing.Point(373, 22);
this.btn_ok.Name = "btn_ok";
this.btn_ok.Size = new System.Drawing.Size(75, 23);
this.btn_ok.TabIndex = 4;
this.btn_ok.Text = "确定";
this.btn_ok.UseVisualStyleBackColor = true;
this.btn_ok.Click += new System.EventHandler(this.OnbtnOkClick);
//
// btn_close
//
this.btn_close.Location = new System.Drawing.Point(373, 56);
this.btn_close.Name = "btn_close";
this.btn_close.Size = new System.Drawing.Size(75, 23);
this.btn_close.TabIndex = 4;
this.btn_close.Text = "取消";
this.btn_close.UseVisualStyleBackColor = true;
this.btn_close.Click += new System.EventHandler(this.btn_close_Click);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(77, 56);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(161, 12);
this.label4.TabIndex = 1;
this.label4.Text = "分组名前需加两位序号,如01";
//
// check_Bak
//
this.check_Bak.AutoSize = true;
this.check_Bak.Location = new System.Drawing.Point(79, 121);
this.check_Bak.Name = "check_Bak";
this.check_Bak.Size = new System.Drawing.Size(96, 16);
this.check_Bak.TabIndex = 5;
this.check_Bak.Text = "备注独占一行";
this.check_Bak.UseVisualStyleBackColor = true;
//
// FrmGroup
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(473, 191);
this.Controls.Add(this.check_Bak);
this.Controls.Add(this.btn_close);
this.Controls.Add(this.btn_ok);
this.Controls.Add(this.txt_layoutMethod);
this.Controls.Add(this.label3);
this.Controls.Add(this.txt_MaxColumnCount);
this.Controls.Add(this.label2);
this.Controls.Add(this.txt_GroupName);
this.Controls.Add(this.label4);
this.Controls.Add(this.label1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "FrmGroup";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "设置分组";
this.Load += new System.EventHandler(this.FrmGroup_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txt_GroupName;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txt_MaxColumnCount;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ComboBox txt_layoutMethod;
private System.Windows.Forms.Button btn_ok;
private System.Windows.Forms.Button btn_close;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.CheckBox check_Bak;
}
}