CRadioBox.designer.cs 3.9 KB

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