UCProcessLineExt.Designer.cs 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-21-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCProcessLineExt.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 UCProcessLineExt.
  20. /// Implements the <see cref="System.Windows.Forms.UserControl" />
  21. /// </summary>
  22. /// <seealso cref="System.Windows.Forms.UserControl" />
  23. partial class UCProcessLineExt
  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.ucProcessLine1 = new HZH_Controls.Controls.UCProcessLine();
  49. this.SuspendLayout();
  50. //
  51. // ucProcessLine1
  52. //
  53. this.ucProcessLine1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  54. | System.Windows.Forms.AnchorStyles.Left)
  55. | System.Windows.Forms.AnchorStyles.Right)));
  56. this.ucProcessLine1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(231)))), ((int)(((byte)(237)))));
  57. this.ucProcessLine1.Font = new System.Drawing.Font("Arial Unicode MS", 10F);
  58. this.ucProcessLine1.ForeColor = System.Drawing.Color.White;
  59. this.ucProcessLine1.Location = new System.Drawing.Point(18, 33);
  60. this.ucProcessLine1.MaxValue = 100;
  61. this.ucProcessLine1.Name = "ucProcessLine1";
  62. this.ucProcessLine1.Size = new System.Drawing.Size(399, 16);
  63. this.ucProcessLine1.TabIndex = 0;
  64. this.ucProcessLine1.Text = "ucProcessLine1";
  65. this.ucProcessLine1.Value = 0;
  66. this.ucProcessLine1.ValueBGColor = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(231)))), ((int)(((byte)(237)))));
  67. this.ucProcessLine1.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(59)))));
  68. this.ucProcessLine1.ValueTextType = HZH_Controls.Controls.ValueTextType.None;
  69. //
  70. // UCProcessLineExt
  71. //
  72. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  73. this.BackColor = System.Drawing.Color.Transparent;
  74. this.Controls.Add(this.ucProcessLine1);
  75. this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(59)))));
  76. this.Name = "UCProcessLineExt";
  77. this.Size = new System.Drawing.Size(434, 50);
  78. this.ResumeLayout(false);
  79. }
  80. #endregion
  81. /// <summary>
  82. /// The uc process line1
  83. /// </summary>
  84. private UCProcessLine ucProcessLine1;
  85. }
  86. }