UCListItemExt.Designer.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-08-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCListItemExt.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 UCListItemExt.
  20. /// Implements the <see cref="System.Windows.Forms.UserControl" />
  21. /// </summary>
  22. /// <seealso cref="System.Windows.Forms.UserControl" />
  23. partial class UCListItemExt
  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.label1 = new System.Windows.Forms.Label();
  49. this.label3 = new System.Windows.Forms.Label();
  50. this.splitLine_H1 = new HZH_Controls.Controls.UCSplitLine_H();
  51. this.label2 = new System.Windows.Forms.Label();
  52. this.SuspendLayout();
  53. //
  54. // label1
  55. //
  56. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  57. this.label1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  58. this.label1.Location = new System.Drawing.Point(0, 0);
  59. this.label1.Name = "label1";
  60. this.label1.Padding = new System.Windows.Forms.Padding(15, 0, 0, 0);
  61. this.label1.Size = new System.Drawing.Size(173, 48);
  62. this.label1.TabIndex = 0;
  63. this.label1.Text = "label1";
  64. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  65. this.label1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.item_MouseDown);
  66. //
  67. // label3
  68. //
  69. this.label3.Dock = System.Windows.Forms.DockStyle.Right;
  70. this.label3.Font = new System.Drawing.Font("微软雅黑", 14F);
  71. this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(73)))), ((int)(((byte)(119)))), ((int)(((byte)(232)))));
  72. this.label3.Location = new System.Drawing.Point(173, 0);
  73. this.label3.Name = "label3";
  74. this.label3.Size = new System.Drawing.Size(139, 48);
  75. this.label3.TabIndex = 2;
  76. this.label3.Text = "label3";
  77. this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  78. this.label3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.item_MouseDown);
  79. //
  80. // splitLine_H1
  81. //
  82. this.splitLine_H1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(238)))));
  83. this.splitLine_H1.Dock = System.Windows.Forms.DockStyle.Bottom;
  84. this.splitLine_H1.Location = new System.Drawing.Point(0, 48);
  85. this.splitLine_H1.MaximumSize = new System.Drawing.Size(0, 1);
  86. this.splitLine_H1.Name = "splitLine_H1";
  87. this.splitLine_H1.Size = new System.Drawing.Size(355, 1);
  88. this.splitLine_H1.TabIndex = 3;
  89. this.splitLine_H1.TabStop = false;
  90. //
  91. // label2
  92. //
  93. this.label2.Dock = System.Windows.Forms.DockStyle.Right;
  94. this.label2.Image = global::HZH_Controls.Properties.Resources.more1;
  95. this.label2.Location = new System.Drawing.Point(312, 0);
  96. this.label2.Name = "label2";
  97. this.label2.Size = new System.Drawing.Size(43, 48);
  98. this.label2.TabIndex = 1;
  99. this.label2.Visible = false;
  100. this.label2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.item_MouseDown);
  101. //
  102. // UCListItemExt
  103. //
  104. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  105. this.BackColor = System.Drawing.Color.White;
  106. this.Controls.Add(this.label1);
  107. this.Controls.Add(this.label3);
  108. this.Controls.Add(this.label2);
  109. this.Controls.Add(this.splitLine_H1);
  110. this.Name = "UCListItemExt";
  111. this.Size = new System.Drawing.Size(355, 49);
  112. this.ResumeLayout(false);
  113. }
  114. #endregion
  115. /// <summary>
  116. /// The label1
  117. /// </summary>
  118. private System.Windows.Forms.Label label1;
  119. /// <summary>
  120. /// The label2
  121. /// </summary>
  122. private System.Windows.Forms.Label label2;
  123. /// <summary>
  124. /// The label3
  125. /// </summary>
  126. private System.Windows.Forms.Label label3;
  127. /// <summary>
  128. /// The split line h1
  129. /// </summary>
  130. private UCSplitLine_H splitLine_H1;
  131. }
  132. }