///
/// 清理所有正在使用的资源。
///
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
///
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
///
private void InitializeComponent()
{
this.txtCmd = new System.Windows.Forms.TextBox();
this.btnOK = new System.Windows.Forms.Button();
this.rtbResult = new System.Windows.Forms.RichTextBox();
this.SuspendLayout();
//
// txtCmd
//
this.txtCmd.Location = new System.Drawing.Point(0, 0);
this.txtCmd.Name = "txtCmd";
this.txtCmd.Size = new System.Drawing.Size(448, 21);
this.txtCmd.TabIndex = 0;
this.txtCmd.Text = "";
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(456, 0);
this.btnOK.Name = "btnOK";
this.btnOK.TabIndex = 1;
this.btnOK.Text = "确认";
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// rtbResult
//
this.rtbResult.Location = new System.Drawing.Point(0, 24);
this.rtbResult.Name = "rtbResult";
this.rtbResult.Size = new System.Drawing.Size(536, 424);
this.rtbResult.TabIndex = 2;
this.rtbResult.Text = "";
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(536, 445);
this.Controls.Add(this.rtbResult);
this.Controls.Add(this.btnOK);
|