namespace Emergent.Gamebryo.SceneDesigner.StdPluginsCs.Panels
{
partial class InputForm
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;
///
/// 清理所有正在使用的资源。
///
/// 如果应释放托管资源,为 true;否则为 false。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
///
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
///
private void InitializeComponent()
{
this.m_textBoxInput = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.m_btnOk = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// m_textBoxInput
//
this.m_textBoxInput.Location = new System.Drawing.Point(12, 29);
this.m_textBoxInput.Name = "m_textBoxInput";
this.m_textBoxInput.Size = new System.Drawing.Size(277, 21);
this.m_textBoxInput.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(13, 14);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 1;
this.label1.Text = "请输入值:";
//
// m_btnOk
//
this.m_btnOk.Location = new System.Drawing.Point(116, 56);
this.m_btnOk.Name = "m_btnOk";
this.m_btnOk.Size = new System.Drawing.Size(70, 23);
this.m_btnOk.TabIndex = 2;
this.m_btnOk.Text = "Ok";
this.m_btnOk.UseVisualStyleBackColor = true;
this.m_btnOk.Click += new System.EventHandler(this.m_btnOk_Click);
//
// InputForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(309, 87);
this.Controls.Add(this.m_btnOk);
this.Controls.Add(this.label1);
this.Controls.Add(this.m_textBoxInput);
this.Name = "InputForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "输入框";
this.TopMost = true;
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox m_textBoxInput;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button m_btnOk;
}
}