namespace Stone.Common.WinModule { 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.lblMsg = new System.Windows.Forms.Label(); this.btnOK = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.SuspendLayout(); // // lblMsg // this.lblMsg.Font = new System.Drawing.Font("宋体", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.lblMsg.ForeColor = System.Drawing.Color.Red; this.lblMsg.Location = new System.Drawing.Point(12, 9); this.lblMsg.Name = "lblMsg"; this.lblMsg.Size = new System.Drawing.Size(400, 143); this.lblMsg.TabIndex = 3; // // 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(40, 178); 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(255, 178); 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); // // frmMessageQuestion // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(432, 243); this.Controls.Add(this.btnCancel); this.Controls.Add(this.lblMsg); 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); } #endregion public System.Windows.Forms.Label lblMsg; private System.Windows.Forms.Button btnOK; private System.Windows.Forms.Button btnCancel; } }