UCRadioButton.Designer.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-08-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCRadioButton.Designer.cs">
  7. // Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
  8. // </copyright>
  9. //
  10. // Blog: https://www.cnblogs.com/bfyx
  11. // GitHub:https://github.com/kwwwvagaa/NetWinformControl
  12. // gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
  13. //
  14. // If you use this code, please keep this note.
  15. // ***********************************************************************
  16. namespace HZH_Controls.Controls
  17. {
  18. /// <summary>
  19. /// Class UCRadioButton.
  20. /// Implements the <see cref="System.Windows.Forms.UserControl" />
  21. /// </summary>
  22. /// <seealso cref="System.Windows.Forms.UserControl" />
  23. partial class UCRadioButton
  24. {
  25. /// <summary>
  26. /// 必需的设计器变量。
  27. /// </summary>
  28. private System.ComponentModel.IContainer components = null;
  29. /// <summary>
  30. /// 清理所有正在使用的资源。
  31. /// </summary>
  32. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  33. protected override void Dispose(bool disposing)
  34. {
  35. if (disposing && (components != null))
  36. {
  37. components.Dispose();
  38. }
  39. base.Dispose(disposing);
  40. }
  41. #region 组件设计器生成的代码
  42. /// <summary>
  43. /// 设计器支持所需的方法 - 不要
  44. /// 使用代码编辑器修改此方法的内容。
  45. /// </summary>
  46. private void InitializeComponent()
  47. {
  48. this.label1 = new System.Windows.Forms.Label();
  49. this.panel1 = new System.Windows.Forms.Panel();
  50. this.SuspendLayout();
  51. //
  52. // label1
  53. //
  54. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  55. this.label1.Font = new System.Drawing.Font("微软雅黑", 12F);
  56. this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(62)))), ((int)(((byte)(62)))));
  57. this.label1.Location = new System.Drawing.Point(18, 0);
  58. this.label1.Name = "label1";
  59. this.label1.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
  60. this.label1.Size = new System.Drawing.Size(215, 30);
  61. this.label1.TabIndex = 3;
  62. this.label1.Text = "单选按钮";
  63. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  64. this.label1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Radio_MouseDown);
  65. //
  66. // panel1
  67. //
  68. this.panel1.BackgroundImage = global::HZH_Controls.Properties.Resources.radioButton0;
  69. this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  70. this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
  71. this.panel1.Location = new System.Drawing.Point(0, 0);
  72. this.panel1.Name = "panel1";
  73. this.panel1.Size = new System.Drawing.Size(18, 30);
  74. this.panel1.TabIndex = 2;
  75. this.panel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Radio_MouseDown);
  76. //
  77. // UCRadioButton
  78. //
  79. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  80. this.Controls.Add(this.label1);
  81. this.Controls.Add(this.panel1);
  82. this.Name = "UCRadioButton";
  83. this.Size = new System.Drawing.Size(233, 30);
  84. this.Load += new System.EventHandler(this.UCRadioButton_Load);
  85. this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Radio_MouseDown);
  86. this.ResumeLayout(false);
  87. }
  88. #endregion
  89. /// <summary>
  90. /// The label1
  91. /// </summary>
  92. private System.Windows.Forms.Label label1;
  93. /// <summary>
  94. /// The panel1
  95. /// </summary>
  96. private System.Windows.Forms.Panel panel1;
  97. }
  98. }