6 /// Required designer variable.
8 private System
.ComponentModel
.IContainer components
= null;
11 /// Clean up any resources being used.
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing
)
16 if (disposing
&& (components
!= null))
20 base.Dispose(disposing
);
23 #region Windows Form Designer generated code
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
29 private void InitializeComponent()
31 System
.ComponentModel
.ComponentResourceManager resources
= new System
.ComponentModel
.ComponentResourceManager(typeof(InputBox
));
32 this.text
= new System
.Windows
.Forms
.TextBox();
33 this.lblMessage
= new System
.Windows
.Forms
.Label();
34 this.btnOk
= new ControlExs
.QQButton();
35 this.btnCancel
= new ControlExs
.QQButton();
40 this.text
.Location
= new System
.Drawing
.Point(12, 80);
41 this.text
.Name
= "text";
42 this.text
.Size
= new System
.Drawing
.Size(326, 21);
43 this.text
.TabIndex
= 4;
44 this.text
.KeyPress
+= new System
.Windows
.Forms
.KeyPressEventHandler(this.text_KeyPress
);
48 this.lblMessage
.AutoSize
= true;
49 this.lblMessage
.Location
= new System
.Drawing
.Point(10, 9);
50 this.lblMessage
.Name
= "lblMessage";
51 this.lblMessage
.Size
= new System
.Drawing
.Size(35, 12);
52 this.lblMessage
.TabIndex
= 5;
53 this.lblMessage
.Text
= "标签1";
57 this.btnOk
.Font
= new System
.Drawing
.Font("微软雅黑", 9F
);
58 this.btnOk
.Location
= new System
.Drawing
.Point(270, 12);
59 this.btnOk
.Name
= "btnOk";
60 this.btnOk
.Size
= new System
.Drawing
.Size(68, 23);
61 this.btnOk
.TabIndex
= 6;
62 this.btnOk
.Text
= "确定";
63 this.btnOk
.UseVisualStyleBackColor
= true;
64 this.btnOk
.Click
+= new System
.EventHandler(this.qqButton1_Click
);
68 this.btnCancel
.Font
= new System
.Drawing
.Font("微软雅黑", 9F
);
69 this.btnCancel
.Location
= new System
.Drawing
.Point(270, 41);
70 this.btnCancel
.Name
= "btnCancel";
71 this.btnCancel
.Size
= new System
.Drawing
.Size(68, 23);
72 this.btnCancel
.TabIndex
= 7;
73 this.btnCancel
.Text
= "取消";
74 this.btnCancel
.UseVisualStyleBackColor
= true;
75 this.btnCancel
.Click
+= new System
.EventHandler(this.btnCancel_Click
);
79 this.AutoScaleDimensions
= new System
.Drawing
.SizeF(6F
, 12F
);
80 this.AutoScaleMode
= System
.Windows
.Forms
.AutoScaleMode
.Font
;
81 this.ClientSize
= new System
.Drawing
.Size(350, 112);
82 this.Controls
.Add(this.btnCancel
);
83 this.Controls
.Add(this.btnOk
);
84 this.Controls
.Add(this.lblMessage
);
85 this.Controls
.Add(this.text
);
86 this.FormBorderStyle
= System
.Windows
.Forms
.FormBorderStyle
.FixedSingle
;
87 this.Icon
= ((System
.Drawing
.Icon
)(resources
.GetObject("$this.Icon")));
88 this.MaximizeBox
= false;
89 this.Name
= "InputBox";
90 this.StartPosition
= System
.Windows
.Forms
.FormStartPosition
.CenterScreen
;
92 this.ResumeLayout(false);
99 private System
.Windows
.Forms
.TextBox text
;
100 private System
.Windows
.Forms
.Label lblMessage
;
101 private ControlExs
.QQButton btnOk
;
102 private ControlExs
.QQButton btnCancel
;