InteractiveChart.Designer.cs 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. namespace SongVocalSectionAnalyser.UI
  2. {
  3. partial class InteractiveChart
  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.ChartPictureBox = new System.Windows.Forms.PictureBox();
  30. this.ToolBarPanel = new System.Windows.Forms.Panel();
  31. this.SampleRadioButton = new System.Windows.Forms.RadioButton();
  32. this.ChunkRadioButton = new System.Windows.Forms.RadioButton();
  33. this.ScaleByUpDown = new System.Windows.Forms.NumericUpDown();
  34. this.ScaleByLabel = new System.Windows.Forms.Label();
  35. this.ChartPanel = new System.Windows.Forms.Panel();
  36. ((System.ComponentModel.ISupportInitialize)(this.ChartPictureBox)).BeginInit();
  37. this.ToolBarPanel.SuspendLayout();
  38. ((System.ComponentModel.ISupportInitialize)(this.ScaleByUpDown)).BeginInit();
  39. this.ChartPanel.SuspendLayout();
  40. this.SuspendLayout();
  41. //
  42. // BottomScrollBar
  43. //
  44. this.BottomScrollBar.Dock = System.Windows.Forms.DockStyle.Bottom;
  45. this.BottomScrollBar.Location = new System.Drawing.Point(0, 558);
  46. this.BottomScrollBar.Name = "BottomScrollBar";
  47. this.BottomScrollBar.Size = new System.Drawing.Size(920, 21);
  48. this.BottomScrollBar.TabIndex = 1;
  49. this.BottomScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.BottomScrollBar_Scroll);
  50. //
  51. // ChartPictureBox
  52. //
  53. this.ChartPictureBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  54. this.ChartPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
  55. this.ChartPictureBox.Location = new System.Drawing.Point(0, 0);
  56. this.ChartPictureBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  57. this.ChartPictureBox.Name = "ChartPictureBox";
  58. this.ChartPictureBox.Size = new System.Drawing.Size(920, 529);
  59. this.ChartPictureBox.TabIndex = 2;
  60. this.ChartPictureBox.TabStop = false;
  61. this.ChartPictureBox.Paint += new System.Windows.Forms.PaintEventHandler(this.ChartPictureBox_Paint);
  62. this.ChartPictureBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.ChartPictureBox_MouseClick);
  63. this.ChartPictureBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.ChartPictureBox_MouseMove);
  64. this.ChartPictureBox.Resize += new System.EventHandler(this.ChartPictureBox_Resize);
  65. //
  66. // ToolBarPanel
  67. //
  68. this.ToolBarPanel.Controls.Add(this.SampleRadioButton);
  69. this.ToolBarPanel.Controls.Add(this.ChunkRadioButton);
  70. this.ToolBarPanel.Controls.Add(this.ScaleByUpDown);
  71. this.ToolBarPanel.Controls.Add(this.ScaleByLabel);
  72. this.ToolBarPanel.Dock = System.Windows.Forms.DockStyle.Top;
  73. this.ToolBarPanel.Location = new System.Drawing.Point(0, 0);
  74. this.ToolBarPanel.Margin = new System.Windows.Forms.Padding(4);
  75. this.ToolBarPanel.Name = "ToolBarPanel";
  76. this.ToolBarPanel.Size = new System.Drawing.Size(920, 29);
  77. this.ToolBarPanel.TabIndex = 3;
  78. //
  79. // SampleRadioButton
  80. //
  81. this.SampleRadioButton.AutoSize = true;
  82. this.SampleRadioButton.Dock = System.Windows.Forms.DockStyle.Left;
  83. this.SampleRadioButton.Location = new System.Drawing.Point(222, 0);
  84. this.SampleRadioButton.Margin = new System.Windows.Forms.Padding(4);
  85. this.SampleRadioButton.Name = "SampleRadioButton";
  86. this.SampleRadioButton.Size = new System.Drawing.Size(76, 29);
  87. this.SampleRadioButton.TabIndex = 4;
  88. this.SampleRadioButton.Text = "Sample";
  89. this.SampleRadioButton.UseVisualStyleBackColor = true;
  90. this.SampleRadioButton.CheckedChanged += new System.EventHandler(this.SampleRadioButton_CheckedChanged);
  91. //
  92. // ChunkRadioButton
  93. //
  94. this.ChunkRadioButton.AutoSize = true;
  95. this.ChunkRadioButton.Checked = true;
  96. this.ChunkRadioButton.Dock = System.Windows.Forms.DockStyle.Left;
  97. this.ChunkRadioButton.Location = new System.Drawing.Point(154, 0);
  98. this.ChunkRadioButton.Margin = new System.Windows.Forms.Padding(4);
  99. this.ChunkRadioButton.Name = "ChunkRadioButton";
  100. this.ChunkRadioButton.Size = new System.Drawing.Size(68, 29);
  101. this.ChunkRadioButton.TabIndex = 4;
  102. this.ChunkRadioButton.TabStop = true;
  103. this.ChunkRadioButton.Text = "Chunk";
  104. this.ChunkRadioButton.UseVisualStyleBackColor = true;
  105. //
  106. // ScaleByUpDown
  107. //
  108. this.ScaleByUpDown.DecimalPlaces = 2;
  109. this.ScaleByUpDown.Dock = System.Windows.Forms.DockStyle.Left;
  110. this.ScaleByUpDown.Increment = new decimal(new int[] {
  111. 1,
  112. 0,
  113. 0,
  114. 65536});
  115. this.ScaleByUpDown.Location = new System.Drawing.Point(83, 0);
  116. this.ScaleByUpDown.Margin = new System.Windows.Forms.Padding(4);
  117. this.ScaleByUpDown.Minimum = new decimal(new int[] {
  118. 1,
  119. 0,
  120. 0,
  121. 131072});
  122. this.ScaleByUpDown.Name = "ScaleByUpDown";
  123. this.ScaleByUpDown.Size = new System.Drawing.Size(71, 25);
  124. this.ScaleByUpDown.TabIndex = 5;
  125. this.ScaleByUpDown.Value = new decimal(new int[] {
  126. 100,
  127. 0,
  128. 0,
  129. 131072});
  130. this.ScaleByUpDown.ValueChanged += new System.EventHandler(this.ScaleByUpDown_ValueChanged);
  131. //
  132. // ScaleByLabel
  133. //
  134. this.ScaleByLabel.Dock = System.Windows.Forms.DockStyle.Left;
  135. this.ScaleByLabel.Location = new System.Drawing.Point(0, 0);
  136. this.ScaleByLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  137. this.ScaleByLabel.Name = "ScaleByLabel";
  138. this.ScaleByLabel.Size = new System.Drawing.Size(83, 29);
  139. this.ScaleByLabel.TabIndex = 6;
  140. this.ScaleByLabel.Text = "Scale By";
  141. this.ScaleByLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  142. //
  143. // ChartPanel
  144. //
  145. this.ChartPanel.Controls.Add(this.ChartPictureBox);
  146. this.ChartPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  147. this.ChartPanel.Location = new System.Drawing.Point(0, 29);
  148. this.ChartPanel.Margin = new System.Windows.Forms.Padding(4);
  149. this.ChartPanel.Name = "ChartPanel";
  150. this.ChartPanel.Size = new System.Drawing.Size(920, 529);
  151. this.ChartPanel.TabIndex = 4;
  152. //
  153. // InteractiveChart
  154. //
  155. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  156. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  157. this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  158. this.Controls.Add(this.ChartPanel);
  159. this.Controls.Add(this.BottomScrollBar);
  160. this.Controls.Add(this.ToolBarPanel);
  161. this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  162. this.Name = "InteractiveChart";
  163. this.Size = new System.Drawing.Size(920, 579);
  164. ((System.ComponentModel.ISupportInitialize)(this.ChartPictureBox)).EndInit();
  165. this.ToolBarPanel.ResumeLayout(false);
  166. this.ToolBarPanel.PerformLayout();
  167. ((System.ComponentModel.ISupportInitialize)(this.ScaleByUpDown)).EndInit();
  168. this.ChartPanel.ResumeLayout(false);
  169. this.ResumeLayout(false);
  170. }
  171. #endregion
  172. private System.Windows.Forms.HScrollBar BottomScrollBar;
  173. private System.Windows.Forms.PictureBox ChartPictureBox;
  174. private System.Windows.Forms.Panel ToolBarPanel;
  175. private System.Windows.Forms.Panel ChartPanel;
  176. private System.Windows.Forms.RadioButton SampleRadioButton;
  177. private System.Windows.Forms.RadioButton ChunkRadioButton;
  178. private System.Windows.Forms.NumericUpDown ScaleByUpDown;
  179. private System.Windows.Forms.Label ScaleByLabel;
  180. }
  181. }