UCDropDownBtn.Designer.cs 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-27-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCDropDownBtn.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 UCDropDownBtn.
  20. /// Implements the <see cref="HZH_Controls.Controls.UCBtnImg" />
  21. /// </summary>
  22. /// <seealso cref="HZH_Controls.Controls.UCBtnImg" />
  23. partial class UCDropDownBtn
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UCDropDownBtn));
  49. this.SuspendLayout();
  50. //
  51. // lbl
  52. //
  53. this.lbl.Font = new System.Drawing.Font("微软雅黑", 14F);
  54. this.lbl.ForeColor = System.Drawing.Color.White;
  55. this.lbl.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
  56. this.lbl.ImageList = null;
  57. this.lbl.Text = "自定义按钮";
  58. this.lbl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  59. //
  60. // UCDropDownBtn
  61. //
  62. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  63. this.BtnFont = new System.Drawing.Font("微软雅黑", 14F);
  64. this.BtnForeColor = System.Drawing.Color.White;
  65. this.ForeColor = System.Drawing.Color.White;
  66. this.Image = ((System.Drawing.Image)(resources.GetObject("$this.Image")));
  67. this.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
  68. this.Margin = new System.Windows.Forms.Padding(2);
  69. this.Name = "UCDropDownBtn";
  70. this.ResumeLayout(false);
  71. }
  72. #endregion
  73. }
  74. }