UCBtnFillet.Designer.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-08-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCBtnFillet.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 UCBtnFillet.
  20. /// Implements the <see cref="HZH_Controls.Controls.UCControlBase" />
  21. /// </summary>
  22. /// <seealso cref="HZH_Controls.Controls.UCControlBase" />
  23. partial class UCBtnFillet
  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.lbl = new System.Windows.Forms.Label();
  49. this.SuspendLayout();
  50. //
  51. // lbl
  52. //
  53. this.lbl.Dock = System.Windows.Forms.DockStyle.Fill;
  54. this.lbl.Font = new System.Drawing.Font("微软雅黑", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  55. this.lbl.Image = global::HZH_Controls.Properties.Resources.alarm;
  56. this.lbl.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  57. this.lbl.Location = new System.Drawing.Point(0, 0);
  58. this.lbl.Name = "lbl";
  59. this.lbl.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
  60. this.lbl.Size = new System.Drawing.Size(120, 76);
  61. this.lbl.TabIndex = 0;
  62. this.lbl.Text = "按钮1 ";
  63. this.lbl.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  64. this.lbl.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lbl_MouseDown);
  65. //
  66. // UCBtnFillet
  67. //
  68. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  69. this.BackColor = System.Drawing.Color.Transparent;
  70. this.ConerRadius = 5;
  71. this.Controls.Add(this.lbl);
  72. this.IsShowRect = true;
  73. this.IsRadius = true;
  74. this.Name = "UCBtnFillet";
  75. this.Size = new System.Drawing.Size(120, 76);
  76. this.ResumeLayout(false);
  77. }
  78. #endregion
  79. /// <summary>
  80. /// The label
  81. /// </summary>
  82. private System.Windows.Forms.Label lbl;
  83. }
  84. }