UCMenuChildrenItem.Designer.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-15-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCMenuChildrenItem.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 UCMenuChildrenItem.
  20. /// Implements the <see cref="System.Windows.Forms.UserControl" />
  21. /// </summary>
  22. /// <seealso cref="System.Windows.Forms.UserControl" />
  23. partial class UCMenuChildrenItem
  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.ucSplitLine_H1 = new HZH_Controls.Controls.UCSplitLine_H();
  49. this.lblTitle = new System.Windows.Forms.Label();
  50. this.SuspendLayout();
  51. //
  52. // ucSplitLine_H1
  53. //
  54. this.ucSplitLine_H1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(29)))), ((int)(((byte)(43)))), ((int)(((byte)(54)))));
  55. this.ucSplitLine_H1.Dock = System.Windows.Forms.DockStyle.Bottom;
  56. this.ucSplitLine_H1.Location = new System.Drawing.Point(0, 59);
  57. this.ucSplitLine_H1.Name = "ucSplitLine_H1";
  58. this.ucSplitLine_H1.Size = new System.Drawing.Size(200, 1);
  59. this.ucSplitLine_H1.TabIndex = 0;
  60. this.ucSplitLine_H1.TabStop = false;
  61. //
  62. // lblTitle
  63. //
  64. this.lblTitle.Dock = System.Windows.Forms.DockStyle.Fill;
  65. this.lblTitle.Font = new System.Drawing.Font("微软雅黑", 12F);
  66. this.lblTitle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(145)))), ((int)(((byte)(152)))), ((int)(((byte)(170)))));
  67. this.lblTitle.Location = new System.Drawing.Point(0, 0);
  68. this.lblTitle.Name = "lblTitle";
  69. this.lblTitle.Size = new System.Drawing.Size(200, 59);
  70. this.lblTitle.TabIndex = 1;
  71. this.lblTitle.Text = "子项";
  72. this.lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  73. //
  74. // UCMenuChildrenItem
  75. //
  76. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  77. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(30)))), ((int)(((byte)(39)))));
  78. this.Controls.Add(this.lblTitle);
  79. this.Controls.Add(this.ucSplitLine_H1);
  80. this.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  81. this.Name = "UCMenuChildrenItem";
  82. this.Size = new System.Drawing.Size(200, 60);
  83. this.ResumeLayout(false);
  84. }
  85. #endregion
  86. /// <summary>
  87. /// The uc split line h1
  88. /// </summary>
  89. private UCSplitLine_H ucSplitLine_H1;
  90. /// <summary>
  91. /// The label title
  92. /// </summary>
  93. private System.Windows.Forms.Label lblTitle;
  94. }
  95. }