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