FrmWithTitle.Designer.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-08-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="FrmWithTitle.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.Forms
  17. {
  18. /// <summary>
  19. /// Class FrmWithTitle.
  20. /// Implements the <see cref="HZH_Controls.Forms.FrmBase" />
  21. /// </summary>
  22. /// <seealso cref="HZH_Controls.Forms.FrmBase" />
  23. partial class FrmWithTitle
  24. {
  25. /// <summary>
  26. /// Required designer variable.
  27. /// </summary>
  28. private System.ComponentModel.IContainer components = null;
  29. /// <summary>
  30. /// Clean up any resources being used.
  31. /// </summary>
  32. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Windows Form Designer generated code
  42. /// <summary>
  43. /// Required method for Designer support - do not modify
  44. /// the contents of this method with the code editor.
  45. /// </summary>
  46. private void InitializeComponent()
  47. {
  48. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmWithTitle));
  49. this.lblTitle = new System.Windows.Forms.Label();
  50. this.ucSplitLine_H1 = new HZH_Controls.Controls.UCSplitLine_H();
  51. this.btnClose = new System.Windows.Forms.Panel();
  52. this.SuspendLayout();
  53. //
  54. // lblTitle
  55. //
  56. this.lblTitle.BackColor = System.Drawing.Color.Transparent;
  57. this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
  58. this.lblTitle.Font = new System.Drawing.Font("微软雅黑", 17F);
  59. this.lblTitle.Location = new System.Drawing.Point(0, 0);
  60. this.lblTitle.Name = "lblTitle";
  61. this.lblTitle.Size = new System.Drawing.Size(427, 60);
  62. this.lblTitle.TabIndex = 5;
  63. this.lblTitle.Text = "标题";
  64. this.lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  65. //
  66. // ucSplitLine_H1
  67. //
  68. this.ucSplitLine_H1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(238)))));
  69. this.ucSplitLine_H1.Dock = System.Windows.Forms.DockStyle.Top;
  70. this.ucSplitLine_H1.Location = new System.Drawing.Point(0, 60);
  71. this.ucSplitLine_H1.Name = "ucSplitLine_H1";
  72. this.ucSplitLine_H1.Size = new System.Drawing.Size(427, 1);
  73. this.ucSplitLine_H1.TabIndex = 0;
  74. this.ucSplitLine_H1.TabStop = false;
  75. //
  76. // btnClose
  77. //
  78. this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  79. this.btnClose.BackgroundImage = global::HZH_Controls.Properties.Resources.dialog_close;
  80. this.btnClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  81. this.btnClose.Location = new System.Drawing.Point(399, 0);
  82. this.btnClose.Name = "btnClose";
  83. this.btnClose.Size = new System.Drawing.Size(28, 60);
  84. this.btnClose.TabIndex = 6;
  85. this.btnClose.Visible = false;
  86. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  87. //
  88. // FrmWithTitle
  89. //
  90. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  91. this.BackColor = System.Drawing.Color.White;
  92. this.ClientSize = new System.Drawing.Size(427, 310);
  93. this.Controls.Add(this.btnClose);
  94. this.Controls.Add(this.ucSplitLine_H1);
  95. this.Controls.Add(this.lblTitle);
  96. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  97. this.IsFullSize = false;
  98. this.IsShowMaskDialog = true;
  99. this.IsShowRegion = true;
  100. this.Name = "FrmWithTitle";
  101. this.Redraw = true;
  102. this.ShowIcon = false;
  103. this.ShowInTaskbar = false;
  104. this.Text = "FrmWithTitle";
  105. this.Shown += new System.EventHandler(this.FrmWithTitle_Shown);
  106. this.SizeChanged += new System.EventHandler(this.FrmWithTitle_SizeChanged);
  107. this.VisibleChanged += new System.EventHandler(this.FrmWithTitle_VisibleChanged);
  108. this.ResumeLayout(false);
  109. }
  110. #endregion
  111. /// <summary>
  112. /// The label title
  113. /// </summary>
  114. private System.Windows.Forms.Label lblTitle;
  115. /// <summary>
  116. /// The uc split line h1
  117. /// </summary>
  118. private Controls.UCSplitLine_H ucSplitLine_H1;
  119. /// <summary>
  120. /// The BTN close
  121. /// </summary>
  122. private System.Windows.Forms.Panel btnClose;
  123. }
  124. }