CCheckBox.designer.cs 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. namespace Controls
  2. {
  3. partial class CCheckBox
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CCheckBox));
  29. this.pic_image = new System.Windows.Forms.PictureBox();
  30. this.ckb_box = new System.Windows.Forms.CheckBox();
  31. ((System.ComponentModel.ISupportInitialize)(this.pic_image)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // pic_image
  35. //
  36. this.pic_image.Image = ((System.Drawing.Image)(resources.GetObject("pic_image.Image")));
  37. this.pic_image.Location = new System.Drawing.Point(1, 1);
  38. this.pic_image.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  39. this.pic_image.Name = "pic_image";
  40. this.pic_image.Size = new System.Drawing.Size(18, 18);
  41. this.pic_image.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  42. this.pic_image.TabIndex = 0;
  43. this.pic_image.TabStop = false;
  44. this.pic_image.Click += new System.EventHandler(this.pic_image_Click);
  45. //
  46. // ckb_box
  47. //
  48. this.ckb_box.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  49. | System.Windows.Forms.AnchorStyles.Right)));
  50. this.ckb_box.BackColor = System.Drawing.Color.White;
  51. this.ckb_box.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
  52. this.ckb_box.Location = new System.Drawing.Point(5, 1);
  53. this.ckb_box.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  54. this.ckb_box.Name = "ckb_box";
  55. this.ckb_box.Size = new System.Drawing.Size(161, 23);
  56. this.ckb_box.TabIndex = 1;
  57. this.ckb_box.Text = "复选框";
  58. this.ckb_box.UseVisualStyleBackColor = false;
  59. this.ckb_box.CheckedChanged += new System.EventHandler(this.ckb_box_CheckedChanged);
  60. //
  61. // CCheckBox
  62. //
  63. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  64. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  65. this.BackColor = System.Drawing.Color.White;
  66. this.Controls.Add(this.pic_image);
  67. this.Controls.Add(this.ckb_box);
  68. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  69. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  70. this.Name = "CCheckBox";
  71. this.Size = new System.Drawing.Size(167, 20);
  72. ((System.ComponentModel.ISupportInitialize)(this.pic_image)).EndInit();
  73. this.ResumeLayout(false);
  74. }
  75. #endregion
  76. private System.Windows.Forms.PictureBox pic_image;
  77. private System.Windows.Forms.CheckBox ckb_box;
  78. }
  79. }