154 lines
6.9 KiB
C#
154 lines
6.9 KiB
C#
|
|
namespace ryControls.TreeXML
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
partial class frmAddTree
|
|
{
|
|
/// <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()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAddTree));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
|
|
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
|
this.txtName = new ryControls.TextBoxEx2();
|
|
this.comboBoxEx1 = new ryControls.ComboBoxEx();
|
|
this.BtnOK = new ryControls.ButtonEx();
|
|
this.BtnCancel = new ryControls.ButtonEx();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(53, 12);
|
|
this.label1.TabIndex = 4;
|
|
this.label1.Text = "分组名称";
|
|
//
|
|
// imageList1
|
|
//
|
|
this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
|
|
this.imageList1.ImageSize = new System.Drawing.Size(24, 24);
|
|
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
|
|
//
|
|
// txtName
|
|
//
|
|
this.txtName.BackColor = System.Drawing.Color.White;
|
|
this.txtName.EmptyText = "";
|
|
this.txtName.Location = new System.Drawing.Point(75, 25);
|
|
this.txtName.MaxLength = 999999999;
|
|
this.txtName.Multiline = false;
|
|
this.txtName.Name = "txtName";
|
|
this.txtName.OnlyNumeric = false;
|
|
this.txtName.PasswordChar = '\0';
|
|
this.txtName.ReadOnly = false;
|
|
this.txtName.SelectedText = "";
|
|
this.txtName.SelectionLength = 0;
|
|
this.txtName.SelectionStart = 0;
|
|
this.txtName.Size = new System.Drawing.Size(224, 26);
|
|
this.txtName.TabIndex = 0;
|
|
this.txtName.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
|
|
this.txtName.ToolTip = "";
|
|
//
|
|
// comboBoxEx1
|
|
//
|
|
this.comboBoxEx1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
|
|
this.comboBoxEx1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBoxEx1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.comboBoxEx1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
this.comboBoxEx1.FormattingEnabled = true;
|
|
this.comboBoxEx1.ItemHeight = 20;
|
|
this.comboBoxEx1.Location = new System.Drawing.Point(14, 25);
|
|
this.comboBoxEx1.Name = "comboBoxEx1";
|
|
this.comboBoxEx1.Size = new System.Drawing.Size(55, 26);
|
|
this.comboBoxEx1.TabIndex = 1;
|
|
//
|
|
// BtnOK
|
|
//
|
|
this.BtnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.BtnOK.ForeColor = System.Drawing.Color.White;
|
|
this.BtnOK.Location = new System.Drawing.Point(135, 104);
|
|
this.BtnOK.Name = "BtnOK";
|
|
this.BtnOK.Size = new System.Drawing.Size(75, 29);
|
|
this.BtnOK.TabIndex = 2;
|
|
this.BtnOK.Text = "确定";
|
|
this.BtnOK.UseVisualStyleBackColor = true;
|
|
this.BtnOK.Click += new System.EventHandler(this.BtnOK_Click);
|
|
//
|
|
// BtnCancel
|
|
//
|
|
this.BtnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.BtnCancel.ForeColor = System.Drawing.Color.White;
|
|
this.BtnCancel.Location = new System.Drawing.Point(218, 104);
|
|
this.BtnCancel.Name = "BtnCancel";
|
|
this.BtnCancel.Size = new System.Drawing.Size(75, 29);
|
|
this.BtnCancel.TabIndex = 3;
|
|
this.BtnCancel.Text = "取消";
|
|
this.BtnCancel.UseVisualStyleBackColor = true;
|
|
this.BtnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
|
|
//
|
|
// frmAddTree
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(305, 145);
|
|
this.Controls.Add(this.BtnCancel);
|
|
this.Controls.Add(this.BtnOK);
|
|
this.Controls.Add(this.txtName);
|
|
this.Controls.Add(this.comboBoxEx1);
|
|
this.Controls.Add(this.label1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "frmAddTree";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "添加分组";
|
|
this.Load += new System.EventHandler(this.FrmAddTree_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.Label label1;
|
|
private ComboBoxEx comboBoxEx1;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public System.Windows.Forms.ImageList imageList1;
|
|
private System.Windows.Forms.ToolTip toolTip1;
|
|
private TextBoxEx2 txtName;
|
|
private ButtonEx BtnOK;
|
|
private ButtonEx BtnCancel;
|
|
}
|
|
} |