WaveDubGraphic.Designer.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. namespace SongVocalIsolateAutomation.UI
  2. {
  3. partial class WaveDubGraphic
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.BottomScrollBar = new System.Windows.Forms.HScrollBar();
  29. this.ScalePot = new NAudio.Gui.Pot();
  30. this.TopScrollBar = new System.Windows.Forms.HScrollBar();
  31. this.GraphControl = new SongVocalIsolateAutomation.UI.DoubleBufferControl();
  32. this.SuspendLayout();
  33. //
  34. // BottomScrollBar
  35. //
  36. this.BottomScrollBar.Dock = System.Windows.Forms.DockStyle.Bottom;
  37. this.BottomScrollBar.Location = new System.Drawing.Point(0, 438);
  38. this.BottomScrollBar.Name = "BottomScrollBar";
  39. this.BottomScrollBar.Size = new System.Drawing.Size(892, 21);
  40. this.BottomScrollBar.TabIndex = 1;
  41. this.BottomScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.BottomScrollBar_Scroll);
  42. //
  43. // ScalePot
  44. //
  45. this.ScalePot.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  46. this.ScalePot.Location = new System.Drawing.Point(4, 307);
  47. this.ScalePot.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  48. this.ScalePot.Maximum = 2D;
  49. this.ScalePot.Minimum = 0.0001D;
  50. this.ScalePot.Name = "ScalePot";
  51. this.ScalePot.Size = new System.Drawing.Size(128, 128);
  52. this.ScalePot.TabIndex = 2;
  53. this.ScalePot.Value = 1D;
  54. this.ScalePot.ValueChanged += new System.EventHandler(this.ScalePot_ValueChanged);
  55. //
  56. // TopScrollBar
  57. //
  58. this.TopScrollBar.Dock = System.Windows.Forms.DockStyle.Top;
  59. this.TopScrollBar.Location = new System.Drawing.Point(0, 0);
  60. this.TopScrollBar.Maximum = 100000;
  61. this.TopScrollBar.Minimum = -100000;
  62. this.TopScrollBar.Name = "TopScrollBar";
  63. this.TopScrollBar.Size = new System.Drawing.Size(892, 21);
  64. this.TopScrollBar.TabIndex = 3;
  65. this.TopScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.TopScrollBar_Scroll);
  66. //
  67. // GraphControl
  68. //
  69. this.GraphControl.Dock = System.Windows.Forms.DockStyle.Fill;
  70. this.GraphControl.Location = new System.Drawing.Point(0, 21);
  71. this.GraphControl.Name = "GraphControl";
  72. this.GraphControl.Size = new System.Drawing.Size(892, 417);
  73. this.GraphControl.TabIndex = 4;
  74. this.GraphControl.Paint += new System.Windows.Forms.PaintEventHandler(this.GraphControl_Paint);
  75. this.GraphControl.MouseMove += new System.Windows.Forms.MouseEventHandler(this.GraphControl_MouseMove);
  76. this.GraphControl.Resize += new System.EventHandler(this.GraphControl_Resize);
  77. //
  78. // WaveDubGraphic
  79. //
  80. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  81. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  82. this.Controls.Add(this.ScalePot);
  83. this.Controls.Add(this.GraphControl);
  84. this.Controls.Add(this.TopScrollBar);
  85. this.Controls.Add(this.BottomScrollBar);
  86. this.DoubleBuffered = true;
  87. this.Name = "WaveDubGraphic";
  88. this.Size = new System.Drawing.Size(892, 459);
  89. this.ResumeLayout(false);
  90. }
  91. #endregion
  92. private System.Windows.Forms.HScrollBar BottomScrollBar;
  93. private NAudio.Gui.Pot ScalePot;
  94. private System.Windows.Forms.HScrollBar TopScrollBar;
  95. private DoubleBufferControl GraphControl;
  96. }
  97. }