namespace Dongke.WinForm.Controls
{
partial class ChkFlagCheckBox
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;
///
/// 清理所有正在使用的资源。
///
/// 如果应释放托管资源,为 true;否则为 false。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
///
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
///
private void InitializeComponent()
{
this.chkYes = new ChkCheckBox();
this.chkNo = new ChkCheckBox();
this.SuspendLayout();
//
// chkYes
//
this.chkYes.Location = new System.Drawing.Point(0, 0);
this.chkYes.Name = "chkYes";
this.chkYes.Size = new System.Drawing.Size(36, 16);
this.chkYes.TabIndex = 0;
this.chkYes.Text = "是";
this.chkYes.UseVisualStyleBackColor = false;
this.chkYes.CheckedChanged += new System.EventHandler(this.chkYes_CheckedChanged);
this.chkYes.SizeChanged += new System.EventHandler(this.chkYes_SizeChanged);
//
// chkNo
//
this.chkNo.Location = new System.Drawing.Point(36, 0);
this.chkNo.Name = "chkNo";
this.chkNo.Size = new System.Drawing.Size(36, 16);
this.chkNo.TabIndex = 1;
this.chkNo.Text = "否";
this.chkNo.UseVisualStyleBackColor = false;
this.chkNo.CheckedChanged += new System.EventHandler(this.chkNo_CheckedChanged);
this.chkNo.SizeChanged += new System.EventHandler(this.chkNo_SizeChanged);
//
// ChkFlagCheckBox
//
this.Controls.Add(this.chkNo);
this.Controls.Add(this.chkYes);
this.Name = "ChkFlagCheckBox";
this.Size = new System.Drawing.Size(72, 16);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private ChkCheckBox chkYes;
private ChkCheckBox chkNo;
}
}