UCPanelTitle.Designer.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-17-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCPanelTitle.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 UCPanelTitle.
  20. /// Implements the <see cref="HZH_Controls.Controls.UCControlBase" />
  21. /// </summary>
  22. /// <seealso cref="HZH_Controls.Controls.UCControlBase" />
  23. partial class UCPanelTitle
  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.lblTitle = new System.Windows.Forms.Label();
  49. this.SuspendLayout();
  50. //
  51. // lblTitle
  52. //
  53. this.lblTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(59)))));
  54. this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
  55. this.lblTitle.ForeColor = System.Drawing.Color.White;
  56. this.lblTitle.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
  57. this.lblTitle.Location = new System.Drawing.Point(1, 1);
  58. this.lblTitle.Name = "lblTitle";
  59. this.lblTitle.Size = new System.Drawing.Size(392, 34);
  60. this.lblTitle.TabIndex = 0;
  61. this.lblTitle.Text = "面板";
  62. this.lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  63. this.lblTitle.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lblTitle_MouseDown);
  64. //
  65. // UCPanelTitle
  66. //
  67. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  68. this.BackColor = System.Drawing.Color.Transparent;
  69. this.ConerRadius = 10;
  70. this.Controls.Add(this.lblTitle);
  71. this.FillColor = System.Drawing.Color.White;
  72. this.IsRadius = true;
  73. this.IsShowRect = true;
  74. this.Name = "UCPanelTitle";
  75. this.Padding = new System.Windows.Forms.Padding(1);
  76. this.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(59)))));
  77. this.Size = new System.Drawing.Size(394, 199);
  78. this.SizeChanged += new System.EventHandler(this.UCPanelTitle_SizeChanged);
  79. this.ResumeLayout(false);
  80. }
  81. #endregion
  82. /// <summary>
  83. /// The label title
  84. /// </summary>
  85. private System.Windows.Forms.Label lblTitle;
  86. }
  87. }