C_StatusCheckBox.Designer.cs 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. namespace Dongke.IBOSS.PRD.Basics.BaseControls
  2. {
  3. partial class C_StatusCheckBox
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.lblTitle = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  29. this.chkTrue = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  30. this.chkFalse = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  31. this.SuspendLayout();
  32. //
  33. // lblTitle
  34. //
  35. this.lblTitle.AutoSize = true;
  36. this.lblTitle.BackColor = System.Drawing.Color.Transparent;
  37. this.lblTitle.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  38. this.lblTitle.ForeColor = System.Drawing.SystemColors.ControlText;
  39. this.lblTitle.Location = new System.Drawing.Point(3, 2);
  40. this.lblTitle.Name = "lblTitle";
  41. this.lblTitle.Size = new System.Drawing.Size(35, 12);
  42. this.lblTitle.TabIndex = 0;
  43. this.lblTitle.Text = "Title";
  44. //
  45. // chkTrue
  46. //
  47. this.chkTrue.AutoSize = true;
  48. this.chkTrue.BackgroundImage = global::Dongke.IBOSS.PRD.Basics.BaseControls.Resource.bg;
  49. this.chkTrue.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  50. this.chkTrue.Location = new System.Drawing.Point(41, 0);
  51. this.chkTrue.Name = "chkTrue";
  52. this.chkTrue.Size = new System.Drawing.Size(36, 16);
  53. this.chkTrue.TabIndex = 1;
  54. this.chkTrue.Text = "是";
  55. this.chkTrue.UseVisualStyleBackColor = true;
  56. //
  57. // chkFalse
  58. //
  59. this.chkFalse.AutoSize = true;
  60. this.chkFalse.BackgroundImage = global::Dongke.IBOSS.PRD.Basics.BaseControls.Resource.bg;
  61. this.chkFalse.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  62. this.chkFalse.Location = new System.Drawing.Point(86, 0);
  63. this.chkFalse.Name = "chkFalse";
  64. this.chkFalse.Size = new System.Drawing.Size(36, 16);
  65. this.chkFalse.TabIndex = 2;
  66. this.chkFalse.Text = "否";
  67. this.chkFalse.UseVisualStyleBackColor = true;
  68. //
  69. // C_StatusCheckBox
  70. //
  71. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  72. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  73. this.BackColor = System.Drawing.SystemColors.Window;
  74. this.BackgroundImage = global::Dongke.IBOSS.PRD.Basics.BaseControls.Resource.bg;
  75. this.Controls.Add(this.chkFalse);
  76. this.Controls.Add(this.chkTrue);
  77. this.Controls.Add(this.lblTitle);
  78. this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  79. this.Name = "C_StatusCheckBox";
  80. this.Size = new System.Drawing.Size(124, 25);
  81. this.ResumeLayout(false);
  82. this.PerformLayout();
  83. }
  84. #endregion
  85. private C_Label lblTitle;
  86. private C_CheckBox chkTrue;
  87. private C_CheckBox chkFalse;
  88. }
  89. }