mirror of
https://github.com/Stone-Red-Code/SimpleWinformsAudioVisualizer.git
synced 2026-09-04 00:56:20 +02:00
212 lines
11 KiB
C#
212 lines
11 KiB
C#
namespace AudioVisualizer
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <summary>
|
|
/// Erforderliche Designervariable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Verwendete Ressourcen bereinigen.
|
|
/// </summary>
|
|
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Vom Windows Form-Designer generierter Code
|
|
|
|
/// <summary>
|
|
/// Erforderliche Methode für die Designerunterstützung.
|
|
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
|
|
System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
|
|
System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
|
|
this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
|
|
this.barCountNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
|
this.flattenValueNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.volumeTrackBar = new System.Windows.Forms.TrackBar();
|
|
this.volumeLabel = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.bufferValueNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
|
((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.barCountNumericUpDown)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.flattenValueNumericUpDown)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.volumeTrackBar)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.bufferValueNumericUpDown)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// chart1
|
|
//
|
|
this.chart1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
chartArea2.Name = "ChartArea1";
|
|
this.chart1.ChartAreas.Add(chartArea2);
|
|
legend2.Name = "Legend1";
|
|
this.chart1.Legends.Add(legend2);
|
|
this.chart1.Location = new System.Drawing.Point(0, 0);
|
|
this.chart1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.chart1.Name = "chart1";
|
|
series2.ChartArea = "ChartArea1";
|
|
series2.Legend = "Legend1";
|
|
series2.Name = "Series1";
|
|
this.chart1.Series.Add(series2);
|
|
this.chart1.Size = new System.Drawing.Size(996, 462);
|
|
this.chart1.TabIndex = 0;
|
|
this.chart1.Text = "chart1";
|
|
//
|
|
// barCountNumericUpDown
|
|
//
|
|
this.barCountNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.barCountNumericUpDown.Location = new System.Drawing.Point(21, 498);
|
|
this.barCountNumericUpDown.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.barCountNumericUpDown.Name = "barCountNumericUpDown";
|
|
this.barCountNumericUpDown.Size = new System.Drawing.Size(180, 26);
|
|
this.barCountNumericUpDown.TabIndex = 1;
|
|
//
|
|
// flattenValueNumericUpDown
|
|
//
|
|
this.flattenValueNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.flattenValueNumericUpDown.Location = new System.Drawing.Point(210, 498);
|
|
this.flattenValueNumericUpDown.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.flattenValueNumericUpDown.Name = "flattenValueNumericUpDown";
|
|
this.flattenValueNumericUpDown.Size = new System.Drawing.Size(180, 26);
|
|
this.flattenValueNumericUpDown.TabIndex = 2;
|
|
this.flattenValueNumericUpDown.Value = new decimal(new int[] {
|
|
4,
|
|
0,
|
|
0,
|
|
0});
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(21, 465);
|
|
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(85, 20);
|
|
this.label1.TabIndex = 3;
|
|
this.label1.Text = "Bar Count:";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(210, 465);
|
|
this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(108, 20);
|
|
this.label2.TabIndex = 4;
|
|
this.label2.Text = "Flatten Value:";
|
|
//
|
|
// volumeTrackBar
|
|
//
|
|
this.volumeTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.volumeTrackBar.Location = new System.Drawing.Point(588, 498);
|
|
this.volumeTrackBar.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.volumeTrackBar.Maximum = 199;
|
|
this.volumeTrackBar.Name = "volumeTrackBar";
|
|
this.volumeTrackBar.Size = new System.Drawing.Size(390, 69);
|
|
this.volumeTrackBar.TabIndex = 5;
|
|
this.volumeTrackBar.Value = 100;
|
|
//
|
|
// volumeLabel
|
|
//
|
|
this.volumeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.volumeLabel.AutoSize = true;
|
|
this.volumeLabel.Location = new System.Drawing.Point(584, 474);
|
|
this.volumeLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.volumeLabel.Name = "volumeLabel";
|
|
this.volumeLabel.Size = new System.Drawing.Size(74, 20);
|
|
this.volumeLabel.TabIndex = 6;
|
|
this.volumeLabel.Text = "Amplifier:";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(399, 465);
|
|
this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(102, 20);
|
|
this.label3.TabIndex = 8;
|
|
this.label3.Text = "Buffer Value:";
|
|
//
|
|
// bufferValueNumericUpDown
|
|
//
|
|
this.bufferValueNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.bufferValueNumericUpDown.DecimalPlaces = 1;
|
|
this.bufferValueNumericUpDown.Increment = new decimal(new int[] {
|
|
1,
|
|
0,
|
|
0,
|
|
65536});
|
|
this.bufferValueNumericUpDown.Location = new System.Drawing.Point(399, 498);
|
|
this.bufferValueNumericUpDown.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.bufferValueNumericUpDown.Maximum = new decimal(new int[] {
|
|
1,
|
|
0,
|
|
0,
|
|
0});
|
|
this.bufferValueNumericUpDown.Name = "bufferValueNumericUpDown";
|
|
this.bufferValueNumericUpDown.Size = new System.Drawing.Size(180, 26);
|
|
this.bufferValueNumericUpDown.TabIndex = 7;
|
|
//
|
|
// MainForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(996, 548);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.bufferValueNumericUpDown);
|
|
this.Controls.Add(this.volumeLabel);
|
|
this.Controls.Add(this.volumeTrackBar);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.flattenValueNumericUpDown);
|
|
this.Controls.Add(this.barCountNumericUpDown);
|
|
this.Controls.Add(this.chart1);
|
|
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.Name = "MainForm";
|
|
this.Text = "MainForm";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
|
|
this.Load += new System.EventHandler(this.MainForm_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.barCountNumericUpDown)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.flattenValueNumericUpDown)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.volumeTrackBar)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.bufferValueNumericUpDown)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
|
|
private System.Windows.Forms.NumericUpDown barCountNumericUpDown;
|
|
private System.Windows.Forms.NumericUpDown flattenValueNumericUpDown;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.TrackBar volumeTrackBar;
|
|
private System.Windows.Forms.Label volumeLabel;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.NumericUpDown bufferValueNumericUpDown;
|
|
}
|
|
}
|
|
|