using System.ComponentModel; using System.Windows.Forms; namespace Cyberpipe.PATM_Forms { partial class F_PATMProjedit { /// <summary> /// Required designer variable. /// </summary> private 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.LB_ProjName = new System.Windows.Forms.Label(); this.TB_ProjName = new System.Windows.Forms.TextBox(); this.OK = new System.Windows.Forms.Button(); this.Cancel = new System.Windows.Forms.Button(); this.SuspendLayout(); // // LB_ProjName // this.LB_ProjName.AutoSize = true; this.LB_ProjName.Location = new System.Drawing.Point(57, 44); this.LB_ProjName.Name = "LB_ProjName"; this.LB_ProjName.Size = new System.Drawing.Size(65, 12); this.LB_ProjName.TabIndex = 0; this.LB_ProjName.Text = "项目名称:"; // // TB_ProjName // this.TB_ProjName.Location = new System.Drawing.Point(167, 41); this.TB_ProjName.Name = "TB_ProjName"; this.TB_ProjName.Size = new System.Drawing.Size(118, 21); this.TB_ProjName.TabIndex = 1; this.TB_ProjName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TB_ProjName_KeyPress); // // OK // this.OK.Location = new System.Drawing.Point(47, 101); this.OK.Name = "OK"; this.OK.Size = new System.Drawing.Size(75, 23); this.OK.TabIndex = 2; this.OK.Text = "确定"; this.OK.UseVisualStyleBackColor = true; this.OK.Click += new System.EventHandler(this.OK_Click); // // Cancel // this.Cancel.Location = new System.Drawing.Point(210, 101); this.Cancel.Name = "Cancel"; this.Cancel.Size = new System.Drawing.Size(75, 23); this.Cancel.TabIndex = 3; this.Cancel.Text = "取消"; this.Cancel.UseVisualStyleBackColor = true; this.Cancel.Click += new System.EventHandler(this.Cancel_Click); // // F_PATMProjedit // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(348, 142); this.Controls.Add(this.Cancel); this.Controls.Add(this.OK); this.Controls.Add(this.TB_ProjName); this.Controls.Add(this.LB_ProjName); this.DoubleBuffered = true; this.Name = "F_PATMProjedit"; this.Text = "添加项目"; this.Load += new System.EventHandler(this.F_Projedit_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label LB_ProjName; private TextBox TB_ProjName; private Button OK; private Button Cancel; } }