namespace Stone.WinModule.MyControl { partial class MySelectTextBox { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region 组件设计器生成的代码 /// /// 设计器支持所需的方法 - 不要 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.txtSelect = new System.Windows.Forms.TextBox(); this.btnSelect = new System.Windows.Forms.Button(); this.SuspendLayout(); // // txtSelect // this.txtSelect.Location = new System.Drawing.Point(4, 4); this.txtSelect.Name = "txtSelect"; this.txtSelect.Size = new System.Drawing.Size(206, 21); this.txtSelect.TabIndex = 0; this.txtSelect.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSelect_KeyDown); // // btnSelect // this.btnSelect.Location = new System.Drawing.Point(216, 4); this.btnSelect.Name = "btnSelect"; this.btnSelect.Size = new System.Drawing.Size(36, 23); this.btnSelect.TabIndex = 1; this.btnSelect.Text = "..."; this.btnSelect.UseVisualStyleBackColor = true; this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click); // // MySelectTextBox // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.btnSelect); this.Controls.Add(this.txtSelect); this.Name = "MySelectTextBox"; this.Size = new System.Drawing.Size(263, 42); this.Load += new System.EventHandler(this.MySelectTextBox_Load); this.Resize += new System.EventHandler(this.MySelectTextBox_Resize); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox txtSelect; private System.Windows.Forms.Button btnSelect; } }