UCProcessWave.Designer.cs 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-23-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCProcessWave.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 UCProcessWave.
  20. /// Implements the <see cref="HZH_Controls.Controls.UCControlBase" />
  21. /// </summary>
  22. /// <seealso cref="HZH_Controls.Controls.UCControlBase" />
  23. partial class UCProcessWave
  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.ucWave1 = new HZH_Controls.Controls.UCWave();
  49. this.SuspendLayout();
  50. //
  51. // ucWave1
  52. //
  53. this.ucWave1.Dock = System.Windows.Forms.DockStyle.Bottom;
  54. this.ucWave1.Location = new System.Drawing.Point(0, 140);
  55. this.ucWave1.Name = "ucWave1";
  56. this.ucWave1.Size = new System.Drawing.Size(150, 10);
  57. this.ucWave1.TabIndex = 0;
  58. this.ucWave1.Text = "ucWave1";
  59. this.ucWave1.WaveColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(77)))), ((int)(((byte)(59)))));
  60. this.ucWave1.WaveHeight = 15;
  61. this.ucWave1.WaveSleep = 100;
  62. this.ucWave1.WaveWidth = 100;
  63. //
  64. // UCProcessWave
  65. //
  66. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  67. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(231)))), ((int)(((byte)(237)))));
  68. this.Controls.Add(this.ucWave1);
  69. this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
  70. this.Name = "UCProcessWave";
  71. this.Size = new System.Drawing.Size(150, 150);
  72. this.ResumeLayout(false);
  73. }
  74. #endregion
  75. /// <summary>
  76. /// The uc wave1
  77. /// </summary>
  78. private UCWave ucWave1;
  79. }
  80. }