namespace Stone.WinModule.Standard
{
partial class frmMessageQuestion
{
///
/// 必需的设计器变量。
///
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.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.lblMessage = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// btnOK
//
this.btnOK.BackColor = System.Drawing.Color.Red;
this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnOK.Font = new System.Drawing.Font("宋体", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnOK.Location = new System.Drawing.Point(13, 255);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(144, 53);
this.btnOK.TabIndex = 2;
this.btnOK.Text = "是";
this.btnOK.UseVisualStyleBackColor = false;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnCancel.Font = new System.Drawing.Font("宋体", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnCancel.Location = new System.Drawing.Point(371, 255);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(144, 53);
this.btnCancel.TabIndex = 4;
this.btnCancel.Text = "否";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// lblMessage
//
this.lblMessage.Font = new System.Drawing.Font("宋体", 20F, System.Drawing.FontStyle.Bold);
this.lblMessage.Location = new System.Drawing.Point(13, 13);
this.lblMessage.Multiline = true;
this.lblMessage.Name = "lblMessage";
this.lblMessage.ReadOnly = true;
this.lblMessage.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.lblMessage.Size = new System.Drawing.Size(502, 236);
this.lblMessage.TabIndex = 5;
//
// frmMessageQuestion
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(527, 320);
this.Controls.Add(this.lblMessage);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.Name = "frmMessageQuestion";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "询问";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.TextBox lblMessage;
}
}