61 lines
2.4 KiB
C#
61 lines
2.4 KiB
C#
namespace CPM
|
|
{
|
|
partial class LV_TEXTBOX1
|
|
{
|
|
private System.ComponentModel.IContainer components = null;
|
|
private System.Windows.Forms.TextBox txt;
|
|
private System.Windows.Forms.PictureBox picIcon;
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && components != null)
|
|
components.Dispose();
|
|
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
this.txt = new System.Windows.Forms.TextBox();
|
|
this.picIcon = new System.Windows.Forms.PictureBox();
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.picIcon)).BeginInit();
|
|
this.SuspendLayout();
|
|
|
|
// txt
|
|
this.txt.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.txt.Location = new System.Drawing.Point(5, 5);
|
|
this.txt.Name = "txt";
|
|
this.txt.Size = new System.Drawing.Size(150, 16);
|
|
this.txt.TabIndex = 0;
|
|
this.txt.Enter += new System.EventHandler(this.txt_Enter);
|
|
this.txt.Leave += new System.EventHandler(this.txt_Leave);
|
|
this.txt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txt_KeyPress);
|
|
this.txt.TextChanged += new System.EventHandler(this.txt_TextChanged);
|
|
|
|
// picIcon
|
|
this.picIcon.Location = new System.Drawing.Point(5, 5);
|
|
this.picIcon.Name = "picIcon";
|
|
this.picIcon.Size = new System.Drawing.Size(20, 20);
|
|
this.picIcon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
|
this.picIcon.TabStop = false;
|
|
this.picIcon.Visible = false;
|
|
this.picIcon.Click += new System.EventHandler(this.picIcon_Click);
|
|
|
|
// LvlTextbox
|
|
this.BackColor = System.Drawing.Color.White;
|
|
this.Controls.Add(this.picIcon);
|
|
this.Controls.Add(this.txt);
|
|
this.Name = "LvlTextbox";
|
|
this.Size = new System.Drawing.Size(200, 30);
|
|
this.Resize += new System.EventHandler(this.LvlTextbox_Resize);
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.picIcon)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
this.txt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txt_KeyPress);
|
|
}
|
|
}
|
|
}
|