Click here to Skip to main content
15,894,740 members
Articles / Multimedia / DirectX

LED Style Volume Meter Using DirectX

Rate me:
Please Sign up or sign in to vote.
3.59/5 (14 votes)
21 Sep 2007CPOL5 min read 127K   9.7K   53  
A DirectX based Audio Volume Meter, emulates LED panel on sound board.
using BuckSoft.DirectSound;

namespace AnalogSignalMeterDemo
{
    partial class AnalogSignalMeterDemoForm
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolbarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
            this.mainPanelSet = new System.Windows.Forms.SplitContainer();
            this.sampleFrequency = new System.Windows.Forms.TextBox();
            this.label20 = new System.Windows.Forms.Label();
            this.audioModeChooser = new System.Windows.Forms.ComboBox();
            this.label19 = new System.Windows.Forms.Label();
            this.displayModeChooser = new System.Windows.Forms.ComboBox();
            this.label17 = new System.Windows.Forms.Label();
            this.bottomMargin = new System.Windows.Forms.TextBox();
            this.topMargin = new System.Windows.Forms.TextBox();
            this.rightMargin = new System.Windows.Forms.TextBox();
            this.leftMargin = new System.Windows.Forms.TextBox();
            this.upDownSeperation = new System.Windows.Forms.TextBox();
            this.leftRightSeperation = new System.Windows.Forms.TextBox();
            this.ledWidth = new System.Windows.Forms.TextBox();
            this.ledHeight = new System.Windows.Forms.TextBox();
            this.label16 = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.highLedColorDisplay = new System.Windows.Forms.PictureBox();
            this.midLedColorDisplay = new System.Windows.Forms.PictureBox();
            this.highLedColorButton = new System.Windows.Forms.Button();
            this.highLedCount = new System.Windows.Forms.NumericUpDown();
            this.midLedColorButton = new System.Windows.Forms.Button();
            this.lowLedColorDisplay = new System.Windows.Forms.PictureBox();
            this.midLedCount = new System.Windows.Forms.NumericUpDown();
            this.backgroundColorDisplay = new System.Windows.Forms.PictureBox();
            this.lowLedColorButton = new System.Windows.Forms.Button();
            this.backgroundColorButton = new System.Windows.Forms.Button();
            this.lowLedCount = new System.Windows.Forms.NumericUpDown();
            this.label14 = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.label24 = new System.Windows.Forms.Label();
            this.label23 = new System.Windows.Forms.Label();
            this.label22 = new System.Windows.Forms.Label();
            this.progressBar2 = new System.Windows.Forms.ProgressBar();
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
            this.clearPeakLogButton = new System.Windows.Forms.Button();
            this.peakLogPanel = new System.Windows.Forms.Panel();
            this.signalPeakLog = new System.Windows.Forms.DataGridView();
            this.peak = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.rightLevelValueLabel = new System.Windows.Forms.Label();
            this.leftLevelValueLabel = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.randomSettingsPanel = new System.Windows.Forms.Panel();
            this.randomRightLevel = new System.Windows.Forms.NumericUpDown();
            this.randomLeftLevel = new System.Windows.Forms.NumericUpDown();
            this.randomRightLabel = new System.Windows.Forms.Label();
            this.randomLeftLabel = new System.Windows.Forms.Label();
            this.specifyRadioButton = new System.Windows.Forms.RadioButton();
            this.randomRadioButton = new System.Windows.Forms.RadioButton();
            this.label18 = new System.Windows.Forms.Label();
            this.rightLevelLabel = new System.Windows.Forms.Label();
            this.leftLevelLabel = new System.Windows.Forms.Label();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.startMeterButton = new System.Windows.Forms.ToolStripDropDownButton();
            this.randomMeterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.audioSignalMeterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.stopRecordingButton = new System.Windows.Forms.ToolStripDropDownButton();
            this.stopAndClearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.stopAndPauseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.analogSignalMeter1 = new BuckSoft.DirectSound.AnalogSignalMeter();
            this.menuStrip1.SuspendLayout();
            this.toolStripContainer1.ContentPanel.SuspendLayout();
            this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
            this.toolStripContainer1.SuspendLayout();
            this.mainPanelSet.Panel1.SuspendLayout();
            this.mainPanelSet.Panel2.SuspendLayout();
            this.mainPanelSet.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.highLedColorDisplay)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.midLedColorDisplay)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.highLedCount)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lowLedColorDisplay)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.midLedCount)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.backgroundColorDisplay)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lowLedCount)).BeginInit();
            this.peakLogPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.signalPeakLog)).BeginInit();
            this.randomSettingsPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.randomRightLevel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.randomLeftLevel)).BeginInit();
            this.toolStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.viewToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(910, 24);
            this.menuStrip1.TabIndex = 0;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // fileToolStripMenuItem
            // 
            this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.exitToolStripMenuItem});
            this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
            this.fileToolStripMenuItem.Text = "&File";
            // 
            // exitToolStripMenuItem
            // 
            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            this.exitToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
            this.exitToolStripMenuItem.Text = "E&xit";
            this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
            // 
            // viewToolStripMenuItem
            // 
            this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolbarToolStripMenuItem});
            this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
            this.viewToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
            this.viewToolStripMenuItem.Text = "&View";
            // 
            // toolbarToolStripMenuItem
            // 
            this.toolbarToolStripMenuItem.Checked = true;
            this.toolbarToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.toolbarToolStripMenuItem.Name = "toolbarToolStripMenuItem";
            this.toolbarToolStripMenuItem.Size = new System.Drawing.Size(121, 22);
            this.toolbarToolStripMenuItem.Text = "&Toolbar";
            // 
            // statusStrip1
            // 
            this.statusStrip1.Location = new System.Drawing.Point(0, 621);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(910, 22);
            this.statusStrip1.TabIndex = 1;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // toolStripContainer1
            // 
            this.toolStripContainer1.BottomToolStripPanelVisible = false;
            // 
            // toolStripContainer1.ContentPanel
            // 
            this.toolStripContainer1.ContentPanel.Controls.Add(this.mainPanelSet);
            this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(910, 572);
            this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.toolStripContainer1.LeftToolStripPanelVisible = false;
            this.toolStripContainer1.Location = new System.Drawing.Point(0, 24);
            this.toolStripContainer1.Name = "toolStripContainer1";
            this.toolStripContainer1.RightToolStripPanelVisible = false;
            this.toolStripContainer1.Size = new System.Drawing.Size(910, 597);
            this.toolStripContainer1.TabIndex = 2;
            this.toolStripContainer1.Text = "toolStripContainer1";
            // 
            // toolStripContainer1.TopToolStripPanel
            // 
            this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip1);
            // 
            // mainPanelSet
            // 
            this.mainPanelSet.Dock = System.Windows.Forms.DockStyle.Fill;
            this.mainPanelSet.Location = new System.Drawing.Point(0, 0);
            this.mainPanelSet.Name = "mainPanelSet";
            // 
            // mainPanelSet.Panel1
            // 
            this.mainPanelSet.Panel1.AutoScroll = true;
            this.mainPanelSet.Panel1.Controls.Add(this.sampleFrequency);
            this.mainPanelSet.Panel1.Controls.Add(this.label20);
            this.mainPanelSet.Panel1.Controls.Add(this.audioModeChooser);
            this.mainPanelSet.Panel1.Controls.Add(this.label19);
            this.mainPanelSet.Panel1.Controls.Add(this.displayModeChooser);
            this.mainPanelSet.Panel1.Controls.Add(this.label17);
            this.mainPanelSet.Panel1.Controls.Add(this.bottomMargin);
            this.mainPanelSet.Panel1.Controls.Add(this.topMargin);
            this.mainPanelSet.Panel1.Controls.Add(this.rightMargin);
            this.mainPanelSet.Panel1.Controls.Add(this.leftMargin);
            this.mainPanelSet.Panel1.Controls.Add(this.upDownSeperation);
            this.mainPanelSet.Panel1.Controls.Add(this.leftRightSeperation);
            this.mainPanelSet.Panel1.Controls.Add(this.ledWidth);
            this.mainPanelSet.Panel1.Controls.Add(this.ledHeight);
            this.mainPanelSet.Panel1.Controls.Add(this.label16);
            this.mainPanelSet.Panel1.Controls.Add(this.label15);
            this.mainPanelSet.Panel1.Controls.Add(this.highLedColorDisplay);
            this.mainPanelSet.Panel1.Controls.Add(this.midLedColorDisplay);
            this.mainPanelSet.Panel1.Controls.Add(this.highLedColorButton);
            this.mainPanelSet.Panel1.Controls.Add(this.highLedCount);
            this.mainPanelSet.Panel1.Controls.Add(this.midLedColorButton);
            this.mainPanelSet.Panel1.Controls.Add(this.lowLedColorDisplay);
            this.mainPanelSet.Panel1.Controls.Add(this.midLedCount);
            this.mainPanelSet.Panel1.Controls.Add(this.backgroundColorDisplay);
            this.mainPanelSet.Panel1.Controls.Add(this.lowLedColorButton);
            this.mainPanelSet.Panel1.Controls.Add(this.backgroundColorButton);
            this.mainPanelSet.Panel1.Controls.Add(this.lowLedCount);
            this.mainPanelSet.Panel1.Controls.Add(this.label14);
            this.mainPanelSet.Panel1.Controls.Add(this.label13);
            this.mainPanelSet.Panel1.Controls.Add(this.label12);
            this.mainPanelSet.Panel1.Controls.Add(this.label11);
            this.mainPanelSet.Panel1.Controls.Add(this.label10);
            this.mainPanelSet.Panel1.Controls.Add(this.label9);
            this.mainPanelSet.Panel1.Controls.Add(this.label8);
            this.mainPanelSet.Panel1.Controls.Add(this.label7);
            this.mainPanelSet.Panel1.Controls.Add(this.label6);
            this.mainPanelSet.Panel1.Controls.Add(this.label5);
            this.mainPanelSet.Panel1.Controls.Add(this.label4);
            this.mainPanelSet.Panel1.Controls.Add(this.label3);
            this.mainPanelSet.Panel1.Controls.Add(this.label2);
            this.mainPanelSet.Panel1.Controls.Add(this.label1);
            // 
            // mainPanelSet.Panel2
            // 
            this.mainPanelSet.Panel2.AutoScroll = true;
            this.mainPanelSet.Panel2.Controls.Add(this.analogSignalMeter1);
            this.mainPanelSet.Panel2.Controls.Add(this.label24);
            this.mainPanelSet.Panel2.Controls.Add(this.label23);
            this.mainPanelSet.Panel2.Controls.Add(this.label22);
            this.mainPanelSet.Panel2.Controls.Add(this.progressBar2);
            this.mainPanelSet.Panel2.Controls.Add(this.progressBar1);
            this.mainPanelSet.Panel2.Controls.Add(this.clearPeakLogButton);
            this.mainPanelSet.Panel2.Controls.Add(this.peakLogPanel);
            this.mainPanelSet.Panel2.Controls.Add(this.rightLevelValueLabel);
            this.mainPanelSet.Panel2.Controls.Add(this.leftLevelValueLabel);
            this.mainPanelSet.Panel2.Controls.Add(this.label21);
            this.mainPanelSet.Panel2.Controls.Add(this.randomSettingsPanel);
            this.mainPanelSet.Panel2.Controls.Add(this.rightLevelLabel);
            this.mainPanelSet.Panel2.Controls.Add(this.leftLevelLabel);
            this.mainPanelSet.Size = new System.Drawing.Size(910, 572);
            this.mainPanelSet.SplitterDistance = 215;
            this.mainPanelSet.TabIndex = 0;
            // 
            // sampleFrequency
            // 
            this.sampleFrequency.Location = new System.Drawing.Point(105, 62);
            this.sampleFrequency.Name = "sampleFrequency";
            this.sampleFrequency.Size = new System.Drawing.Size(100, 20);
            this.sampleFrequency.TabIndex = 40;
            // 
            // label20
            // 
            this.label20.AutoSize = true;
            this.label20.Location = new System.Drawing.Point(10, 65);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(72, 13);
            this.label20.TabIndex = 39;
            this.label20.Text = "Sample Freq.:";
            // 
            // audioModeChooser
            // 
            this.audioModeChooser.FormattingEnabled = true;
            this.audioModeChooser.Items.AddRange(new object[] {
            "Mono",
            "Stereo"});
            this.audioModeChooser.Location = new System.Drawing.Point(105, 35);
            this.audioModeChooser.Name = "audioModeChooser";
            this.audioModeChooser.Size = new System.Drawing.Size(104, 21);
            this.audioModeChooser.TabIndex = 38;
            this.audioModeChooser.SelectedIndexChanged += new System.EventHandler(this.audioModeChooser_SelectedIndexChanged);
            // 
            // label19
            // 
            this.label19.AutoSize = true;
            this.label19.Location = new System.Drawing.Point(10, 38);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(67, 13);
            this.label19.TabIndex = 37;
            this.label19.Text = "Audio Mode:";
            // 
            // displayModeChooser
            // 
            this.displayModeChooser.FormattingEnabled = true;
            this.displayModeChooser.Items.AddRange(new object[] {
            "Horizontal",
            "HorizontalReverse",
            "Vertical",
            "VerticalReverse"});
            this.displayModeChooser.Location = new System.Drawing.Point(105, 10);
            this.displayModeChooser.Name = "displayModeChooser";
            this.displayModeChooser.Size = new System.Drawing.Size(104, 21);
            this.displayModeChooser.TabIndex = 36;
            this.displayModeChooser.SelectedIndexChanged += new System.EventHandler(this.displayModeChooser_SelectedIndexChanged);
            // 
            // label17
            // 
            this.label17.AutoSize = true;
            this.label17.Location = new System.Drawing.Point(10, 13);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(74, 13);
            this.label17.TabIndex = 35;
            this.label17.Text = "Display Mode:";
            // 
            // bottomMargin
            // 
            this.bottomMargin.Location = new System.Drawing.Point(105, 540);
            this.bottomMargin.Name = "bottomMargin";
            this.bottomMargin.Size = new System.Drawing.Size(75, 20);
            this.bottomMargin.TabIndex = 34;
            // 
            // topMargin
            // 
            this.topMargin.Location = new System.Drawing.Point(105, 509);
            this.topMargin.Name = "topMargin";
            this.topMargin.Size = new System.Drawing.Size(75, 20);
            this.topMargin.TabIndex = 33;
            // 
            // rightMargin
            // 
            this.rightMargin.Location = new System.Drawing.Point(105, 478);
            this.rightMargin.Name = "rightMargin";
            this.rightMargin.Size = new System.Drawing.Size(75, 20);
            this.rightMargin.TabIndex = 32;
            // 
            // leftMargin
            // 
            this.leftMargin.Location = new System.Drawing.Point(105, 447);
            this.leftMargin.Name = "leftMargin";
            this.leftMargin.Size = new System.Drawing.Size(75, 20);
            this.leftMargin.TabIndex = 31;
            // 
            // upDownSeperation
            // 
            this.upDownSeperation.Location = new System.Drawing.Point(105, 390);
            this.upDownSeperation.Name = "upDownSeperation";
            this.upDownSeperation.Size = new System.Drawing.Size(75, 20);
            this.upDownSeperation.TabIndex = 30;
            // 
            // leftRightSeperation
            // 
            this.leftRightSeperation.Location = new System.Drawing.Point(105, 361);
            this.leftRightSeperation.Name = "leftRightSeperation";
            this.leftRightSeperation.Size = new System.Drawing.Size(75, 20);
            this.leftRightSeperation.TabIndex = 29;
            // 
            // ledWidth
            // 
            this.ledWidth.Location = new System.Drawing.Point(105, 332);
            this.ledWidth.Name = "ledWidth";
            this.ledWidth.Size = new System.Drawing.Size(75, 20);
            this.ledWidth.TabIndex = 28;
            // 
            // ledHeight
            // 
            this.ledHeight.Location = new System.Drawing.Point(105, 303);
            this.ledHeight.Name = "ledHeight";
            this.ledHeight.Size = new System.Drawing.Size(75, 20);
            this.ledHeight.TabIndex = 27;
            // 
            // label16
            // 
            this.label16.AutoSize = true;
            this.label16.Location = new System.Drawing.Point(10, 423);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(92, 13);
            this.label16.TabIndex = 26;
            this.label16.Text = "Margins (Relative)";
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.Location = new System.Drawing.Point(10, 543);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(43, 13);
            this.label15.TabIndex = 25;
            this.label15.Text = "Bottom:";
            // 
            // highLedColorDisplay
            // 
            this.highLedColorDisplay.Location = new System.Drawing.Point(186, 271);
            this.highLedColorDisplay.Name = "highLedColorDisplay";
            this.highLedColorDisplay.Size = new System.Drawing.Size(23, 23);
            this.highLedColorDisplay.TabIndex = 24;
            this.highLedColorDisplay.TabStop = false;
            // 
            // midLedColorDisplay
            // 
            this.midLedColorDisplay.Location = new System.Drawing.Point(186, 210);
            this.midLedColorDisplay.Name = "midLedColorDisplay";
            this.midLedColorDisplay.Size = new System.Drawing.Size(23, 23);
            this.midLedColorDisplay.TabIndex = 23;
            this.midLedColorDisplay.TabStop = false;
            // 
            // highLedColorButton
            // 
            this.highLedColorButton.Location = new System.Drawing.Point(105, 271);
            this.highLedColorButton.Name = "highLedColorButton";
            this.highLedColorButton.Size = new System.Drawing.Size(75, 23);
            this.highLedColorButton.TabIndex = 22;
            this.highLedColorButton.Text = "Choose";
            this.highLedColorButton.UseVisualStyleBackColor = true;
            this.highLedColorButton.Click += new System.EventHandler(this.highLedColorButton_Click);
            // 
            // highLedCount
            // 
            this.highLedCount.Location = new System.Drawing.Point(105, 242);
            this.highLedCount.Name = "highLedCount";
            this.highLedCount.Size = new System.Drawing.Size(43, 20);
            this.highLedCount.TabIndex = 21;
            this.highLedCount.ValueChanged += new System.EventHandler(this.highLedCount_ValueChanged);
            // 
            // midLedColorButton
            // 
            this.midLedColorButton.Location = new System.Drawing.Point(105, 210);
            this.midLedColorButton.Name = "midLedColorButton";
            this.midLedColorButton.Size = new System.Drawing.Size(75, 23);
            this.midLedColorButton.TabIndex = 20;
            this.midLedColorButton.Text = "Choose";
            this.midLedColorButton.UseVisualStyleBackColor = true;
            this.midLedColorButton.Click += new System.EventHandler(this.midLedColorButton_Click);
            // 
            // lowLedColorDisplay
            // 
            this.lowLedColorDisplay.Location = new System.Drawing.Point(186, 149);
            this.lowLedColorDisplay.Name = "lowLedColorDisplay";
            this.lowLedColorDisplay.Size = new System.Drawing.Size(23, 23);
            this.lowLedColorDisplay.TabIndex = 19;
            this.lowLedColorDisplay.TabStop = false;
            // 
            // midLedCount
            // 
            this.midLedCount.Location = new System.Drawing.Point(105, 181);
            this.midLedCount.Name = "midLedCount";
            this.midLedCount.Size = new System.Drawing.Size(43, 20);
            this.midLedCount.TabIndex = 18;
            this.midLedCount.ValueChanged += new System.EventHandler(this.midLedCount_ValueChanged);
            // 
            // backgroundColorDisplay
            // 
            this.backgroundColorDisplay.Location = new System.Drawing.Point(186, 88);
            this.backgroundColorDisplay.Name = "backgroundColorDisplay";
            this.backgroundColorDisplay.Size = new System.Drawing.Size(23, 23);
            this.backgroundColorDisplay.TabIndex = 17;
            this.backgroundColorDisplay.TabStop = false;
            // 
            // lowLedColorButton
            // 
            this.lowLedColorButton.Location = new System.Drawing.Point(105, 149);
            this.lowLedColorButton.Name = "lowLedColorButton";
            this.lowLedColorButton.Size = new System.Drawing.Size(75, 23);
            this.lowLedColorButton.TabIndex = 16;
            this.lowLedColorButton.Text = "Choose";
            this.lowLedColorButton.UseVisualStyleBackColor = true;
            this.lowLedColorButton.Click += new System.EventHandler(this.lowLedColorButton_Click);
            // 
            // backgroundColorButton
            // 
            this.backgroundColorButton.Location = new System.Drawing.Point(105, 88);
            this.backgroundColorButton.Name = "backgroundColorButton";
            this.backgroundColorButton.Size = new System.Drawing.Size(75, 23);
            this.backgroundColorButton.TabIndex = 15;
            this.backgroundColorButton.Text = "Choose";
            this.backgroundColorButton.UseVisualStyleBackColor = true;
            this.backgroundColorButton.Click += new System.EventHandler(this.backgroundColorButton_Click);
            // 
            // lowLedCount
            // 
            this.lowLedCount.Location = new System.Drawing.Point(105, 120);
            this.lowLedCount.Name = "lowLedCount";
            this.lowLedCount.Size = new System.Drawing.Size(43, 20);
            this.lowLedCount.TabIndex = 14;
            this.lowLedCount.ValueChanged += new System.EventHandler(this.lowLedCount_ValueChanged);
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.Location = new System.Drawing.Point(10, 512);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(29, 13);
            this.label14.TabIndex = 13;
            this.label14.Text = "Top:";
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.Location = new System.Drawing.Point(10, 481);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(35, 13);
            this.label13.TabIndex = 12;
            this.label13.Text = "Right:";
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(10, 450);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(28, 13);
            this.label12.TabIndex = 11;
            this.label12.Text = "Left:";
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(10, 393);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(80, 13);
            this.label11.TabIndex = 10;
            this.label11.Text = "Up Down Sep.:";
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(10, 364);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(81, 13);
            this.label10.TabIndex = 9;
            this.label10.Text = "Left Right Sep.:";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Location = new System.Drawing.Point(10, 335);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(59, 13);
            this.label9.TabIndex = 8;
            this.label9.Text = "Led Width:";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(10, 306);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(62, 13);
            this.label8.TabIndex = 7;
            this.label8.Text = "Led Height:";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(10, 276);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(80, 13);
            this.label7.TabIndex = 6;
            this.label7.Text = "High Led Color:";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(10, 93);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(95, 13);
            this.label6.TabIndex = 5;
            this.label6.Text = "Background Color:";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(10, 244);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(84, 13);
            this.label5.TabIndex = 4;
            this.label5.Text = "High Led Count:";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(10, 215);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(75, 13);
            this.label4.TabIndex = 3;
            this.label4.Text = "Mid Led Color:";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(10, 183);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(79, 13);
            this.label3.TabIndex = 2;
            this.label3.Text = "Mid Led Count:";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(10, 154);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(78, 13);
            this.label2.TabIndex = 1;
            this.label2.Text = "Low Led Color:";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(10, 122);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(82, 13);
            this.label1.TabIndex = 0;
            this.label1.Text = "Low Led Count:";
            // 
            // label24
            // 
            this.label24.AutoSize = true;
            this.label24.Location = new System.Drawing.Point(326, 257);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(0, 13);
            this.label24.TabIndex = 16;
            // 
            // label23
            // 
            this.label23.AutoSize = true;
            this.label23.Location = new System.Drawing.Point(326, 380);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(15, 13);
            this.label23.TabIndex = 15;
            this.label23.Text = "R";
            // 
            // label22
            // 
            this.label22.AutoSize = true;
            this.label22.Location = new System.Drawing.Point(326, 358);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(13, 13);
            this.label22.TabIndex = 14;
            this.label22.Text = "L";
            // 
            // progressBar2
            // 
            this.progressBar2.Location = new System.Drawing.Point(373, 375);
            this.progressBar2.Name = "progressBar2";
            this.progressBar2.Size = new System.Drawing.Size(181, 18);
            this.progressBar2.TabIndex = 13;
            // 
            // progressBar1
            // 
            this.progressBar1.Location = new System.Drawing.Point(373, 353);
            this.progressBar1.Name = "progressBar1";
            this.progressBar1.Size = new System.Drawing.Size(181, 18);
            this.progressBar1.TabIndex = 12;
            // 
            // clearPeakLogButton
            // 
            this.clearPeakLogButton.Location = new System.Drawing.Point(587, 392);
            this.clearPeakLogButton.Name = "clearPeakLogButton";
            this.clearPeakLogButton.Size = new System.Drawing.Size(97, 23);
            this.clearPeakLogButton.TabIndex = 10;
            this.clearPeakLogButton.Text = "Clear Peak Log";
            this.clearPeakLogButton.UseVisualStyleBackColor = true;
            this.clearPeakLogButton.Click += new System.EventHandler(this.clearPeakLogButton_Click);
            // 
            // peakLogPanel
            // 
            this.peakLogPanel.Controls.Add(this.signalPeakLog);
            this.peakLogPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.peakLogPanel.Location = new System.Drawing.Point(0, 423);
            this.peakLogPanel.Name = "peakLogPanel";
            this.peakLogPanel.Size = new System.Drawing.Size(691, 149);
            this.peakLogPanel.TabIndex = 9;
            // 
            // signalPeakLog
            // 
            this.signalPeakLog.AllowUserToAddRows = false;
            this.signalPeakLog.BackgroundColor = System.Drawing.SystemColors.Window;
            this.signalPeakLog.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.signalPeakLog.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.peak});
            this.signalPeakLog.Dock = System.Windows.Forms.DockStyle.Fill;
            this.signalPeakLog.Location = new System.Drawing.Point(0, 0);
            this.signalPeakLog.Name = "signalPeakLog";
            this.signalPeakLog.RowHeadersVisible = false;
            this.signalPeakLog.Size = new System.Drawing.Size(691, 149);
            this.signalPeakLog.TabIndex = 0;
            // 
            // peak
            // 
            this.peak.HeaderText = "Peak Log";
            this.peak.Name = "peak";
            this.peak.Width = 300;
            // 
            // rightLevelValueLabel
            // 
            this.rightLevelValueLabel.AutoSize = true;
            this.rightLevelValueLabel.Location = new System.Drawing.Point(61, 127);
            this.rightLevelValueLabel.Name = "rightLevelValueLabel";
            this.rightLevelValueLabel.Size = new System.Drawing.Size(0, 13);
            this.rightLevelValueLabel.TabIndex = 8;
            // 
            // leftLevelValueLabel
            // 
            this.leftLevelValueLabel.AutoSize = true;
            this.leftLevelValueLabel.Location = new System.Drawing.Point(61, 100);
            this.leftLevelValueLabel.Name = "leftLevelValueLabel";
            this.leftLevelValueLabel.Size = new System.Drawing.Size(0, 13);
            this.leftLevelValueLabel.TabIndex = 7;
            // 
            // label21
            // 
            this.label21.AutoSize = true;
            this.label21.Location = new System.Drawing.Point(25, 75);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(41, 65);
            this.label21.TabIndex = 6;
            this.label21.Text = "Levels:\r\n\r\nL\r\n\r\nR";
            // 
            // randomSettingsPanel
            // 
            this.randomSettingsPanel.Controls.Add(this.randomRightLevel);
            this.randomSettingsPanel.Controls.Add(this.randomLeftLevel);
            this.randomSettingsPanel.Controls.Add(this.randomRightLabel);
            this.randomSettingsPanel.Controls.Add(this.randomLeftLabel);
            this.randomSettingsPanel.Controls.Add(this.specifyRadioButton);
            this.randomSettingsPanel.Controls.Add(this.randomRadioButton);
            this.randomSettingsPanel.Controls.Add(this.label18);
            this.randomSettingsPanel.Dock = System.Windows.Forms.DockStyle.Top;
            this.randomSettingsPanel.Location = new System.Drawing.Point(0, 0);
            this.randomSettingsPanel.Name = "randomSettingsPanel";
            this.randomSettingsPanel.Size = new System.Drawing.Size(691, 42);
            this.randomSettingsPanel.TabIndex = 5;
            // 
            // randomRightLevel
            // 
            this.randomRightLevel.Location = new System.Drawing.Point(488, 11);
            this.randomRightLevel.Name = "randomRightLevel";
            this.randomRightLevel.Size = new System.Drawing.Size(66, 20);
            this.randomRightLevel.TabIndex = 6;
            this.randomRightLevel.ValueChanged += new System.EventHandler(this.randomRightLevel_ValueChanged);
            // 
            // randomLeftLevel
            // 
            this.randomLeftLevel.Location = new System.Drawing.Point(376, 11);
            this.randomLeftLevel.Name = "randomLeftLevel";
            this.randomLeftLevel.Size = new System.Drawing.Size(65, 20);
            this.randomLeftLevel.TabIndex = 5;
            this.randomLeftLevel.ValueChanged += new System.EventHandler(this.randomLeftLevel_ValueChanged);
            // 
            // randomRightLabel
            // 
            this.randomRightLabel.AutoSize = true;
            this.randomRightLabel.Location = new System.Drawing.Point(447, 13);
            this.randomRightLabel.Name = "randomRightLabel";
            this.randomRightLabel.Size = new System.Drawing.Size(35, 13);
            this.randomRightLabel.TabIndex = 4;
            this.randomRightLabel.Text = "Right:";
            // 
            // randomLeftLabel
            // 
            this.randomLeftLabel.AutoSize = true;
            this.randomLeftLabel.Location = new System.Drawing.Point(342, 13);
            this.randomLeftLabel.Name = "randomLeftLabel";
            this.randomLeftLabel.Size = new System.Drawing.Size(28, 13);
            this.randomLeftLabel.TabIndex = 3;
            this.randomLeftLabel.Text = "Left:";
            // 
            // specifyRadioButton
            // 
            this.specifyRadioButton.AutoSize = true;
            this.specifyRadioButton.Location = new System.Drawing.Point(242, 11);
            this.specifyRadioButton.Name = "specifyRadioButton";
            this.specifyRadioButton.Size = new System.Drawing.Size(97, 17);
            this.specifyRadioButton.TabIndex = 2;
            this.specifyRadioButton.TabStop = true;
            this.specifyRadioButton.Text = "Specify Levels:";
            this.specifyRadioButton.UseVisualStyleBackColor = true;
            // 
            // randomRadioButton
            // 
            this.randomRadioButton.AutoSize = true;
            this.randomRadioButton.Location = new System.Drawing.Point(106, 11);
            this.randomRadioButton.Name = "randomRadioButton";
            this.randomRadioButton.Size = new System.Drawing.Size(130, 17);
            this.randomRadioButton.TabIndex = 1;
            this.randomRadioButton.TabStop = true;
            this.randomRadioButton.Text = "Send Random Signals";
            this.randomRadioButton.UseVisualStyleBackColor = true;
            // 
            // label18
            // 
            this.label18.AutoSize = true;
            this.label18.Location = new System.Drawing.Point(9, 13);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(91, 13);
            this.label18.TabIndex = 0;
            this.label18.Text = "Random Settings:";
            // 
            // rightLevelLabel
            // 
            this.rightLevelLabel.AutoSize = true;
            this.rightLevelLabel.Location = new System.Drawing.Point(298, 171);
            this.rightLevelLabel.Name = "rightLevelLabel";
            this.rightLevelLabel.Size = new System.Drawing.Size(0, 13);
            this.rightLevelLabel.TabIndex = 2;
            // 
            // leftLevelLabel
            // 
            this.leftLevelLabel.AutoSize = true;
            this.leftLevelLabel.Location = new System.Drawing.Point(207, 171);
            this.leftLevelLabel.Name = "leftLevelLabel";
            this.leftLevelLabel.Size = new System.Drawing.Size(0, 13);
            this.leftLevelLabel.TabIndex = 1;
            // 
            // toolStrip1
            // 
            this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.startMeterButton,
            this.stopRecordingButton});
            this.toolStrip1.Location = new System.Drawing.Point(3, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(160, 25);
            this.toolStrip1.TabIndex = 0;
            // 
            // startMeterButton
            // 
            this.startMeterButton.BackColor = System.Drawing.SystemColors.Control;
            this.startMeterButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.startMeterButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.randomMeterToolStripMenuItem,
            this.audioSignalMeterToolStripMenuItem});
            this.startMeterButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.startMeterButton.Name = "startMeterButton";
            this.startMeterButton.Size = new System.Drawing.Size(75, 22);
            this.startMeterButton.Text = "Start Meter";
            // 
            // randomMeterToolStripMenuItem
            // 
            this.randomMeterToolStripMenuItem.Name = "randomMeterToolStripMenuItem";
            this.randomMeterToolStripMenuItem.Size = new System.Drawing.Size(174, 22);
            this.randomMeterToolStripMenuItem.Text = "Random Meter";
            this.randomMeterToolStripMenuItem.Click += new System.EventHandler(this.randomMeterToolStripMenuItem_Click);
            // 
            // audioSignalMeterToolStripMenuItem
            // 
            this.audioSignalMeterToolStripMenuItem.Name = "audioSignalMeterToolStripMenuItem";
            this.audioSignalMeterToolStripMenuItem.Size = new System.Drawing.Size(174, 22);
            this.audioSignalMeterToolStripMenuItem.Text = "Audio Signal Meter";
            this.audioSignalMeterToolStripMenuItem.Click += new System.EventHandler(this.audioSignalMeterToolStripMenuItem_Click);
            // 
            // stopRecordingButton
            // 
            this.stopRecordingButton.BackColor = System.Drawing.SystemColors.Control;
            this.stopRecordingButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.stopRecordingButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.stopAndClearToolStripMenuItem,
            this.stopAndPauseToolStripMenuItem});
            this.stopRecordingButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.stopRecordingButton.Name = "stopRecordingButton";
            this.stopRecordingButton.Size = new System.Drawing.Size(73, 22);
            this.stopRecordingButton.Text = "Stop Meter";
            // 
            // stopAndClearToolStripMenuItem
            // 
            this.stopAndClearToolStripMenuItem.Name = "stopAndClearToolStripMenuItem";
            this.stopAndClearToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.stopAndClearToolStripMenuItem.Text = "Stop and Clear";
            this.stopAndClearToolStripMenuItem.Click += new System.EventHandler(this.stopAndClearToolStripMenuItem_Click);
            // 
            // stopAndPauseToolStripMenuItem
            // 
            this.stopAndPauseToolStripMenuItem.Name = "stopAndPauseToolStripMenuItem";
            this.stopAndPauseToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.stopAndPauseToolStripMenuItem.Text = "Stop and Pause";
            this.stopAndPauseToolStripMenuItem.Click += new System.EventHandler(this.stopAndPauseToolStripMenuItem_Click);
            // 
            // analogSignalMeter1
            // 
            this.analogSignalMeter1.AudioDisplayMode = BuckSoft.DirectSound.AnalogSignalMeter.AudioMode.Stereo;
            this.analogSignalMeter1.AutoStart = false;
            this.analogSignalMeter1.BackgroundColor = System.Drawing.Color.Black;
            this.analogSignalMeter1.BottomMargin = 3F;
            this.analogSignalMeter1.ClearMeterOnStop = true;
            this.analogSignalMeter1.DisplayOrientation = BuckSoft.DirectSound.AnalogSignalMeter.Orientation.Horizontal;
            this.analogSignalMeter1.HighLedColor = System.Drawing.Color.Red;
            this.analogSignalMeter1.HighLedCount = 5;
            this.analogSignalMeter1.LedHeight = 6F;
            this.analogSignalMeter1.LedWidth = 14F;
            this.analogSignalMeter1.LeftMargin = 3F;
            this.analogSignalMeter1.LeftRightSeperation = 2F;
            this.analogSignalMeter1.Location = new System.Drawing.Point(86, 100);
            this.analogSignalMeter1.LowLedColor = System.Drawing.Color.Green;
            this.analogSignalMeter1.LowLedCount = 12;
            this.analogSignalMeter1.MidLedColor = System.Drawing.Color.Yellow;
            this.analogSignalMeter1.MidLedCount = 3;
            this.analogSignalMeter1.Name = "analogSignalMeter1";
            this.analogSignalMeter1.RightMargin = 3F;
            this.analogSignalMeter1.SampleFrequencyMilliseconds = 100;
            this.analogSignalMeter1.Size = new System.Drawing.Size(164, 36);
            this.analogSignalMeter1.TabIndex = 17;
            this.analogSignalMeter1.TopMargin = 3F;
            this.analogSignalMeter1.UpDownSeperation = 2F;
            // 
            // AnalogSignalMeterDemoForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(910, 643);
            this.Controls.Add(this.toolStripContainer1);
            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.menuStrip1);
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "AnalogSignalMeterDemoForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "BuckSoft.AnalogSignalMeter Demo";
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.toolStripContainer1.ContentPanel.ResumeLayout(false);
            this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
            this.toolStripContainer1.TopToolStripPanel.PerformLayout();
            this.toolStripContainer1.ResumeLayout(false);
            this.toolStripContainer1.PerformLayout();
            this.mainPanelSet.Panel1.ResumeLayout(false);
            this.mainPanelSet.Panel1.PerformLayout();
            this.mainPanelSet.Panel2.ResumeLayout(false);
            this.mainPanelSet.Panel2.PerformLayout();
            this.mainPanelSet.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.highLedColorDisplay)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.midLedColorDisplay)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.highLedCount)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lowLedColorDisplay)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.midLedCount)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.backgroundColorDisplay)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lowLedCount)).EndInit();
            this.peakLogPanel.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.signalPeakLog)).EndInit();
            this.randomSettingsPanel.ResumeLayout(false);
            this.randomSettingsPanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.randomRightLevel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.randomLeftLevel)).EndInit();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        #region Private Properties

        private System.Windows.Forms.MenuStrip menuStrip1;
        private System.Windows.Forms.StatusStrip statusStrip1;
        private System.Windows.Forms.ToolStripContainer toolStripContainer1;
        private System.Windows.Forms.ToolStrip toolStrip1;
        private System.Windows.Forms.SplitContainer mainPanelSet;
        private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem toolbarToolStripMenuItem;
        public System.Windows.Forms.Label rightLevelLabel;
        public System.Windows.Forms.Label leftLevelLabel;
        private System.Windows.Forms.Label label7;
        private System.Windows.Forms.Label label6;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Button lowLedColorButton;
        private System.Windows.Forms.Button backgroundColorButton;
        private System.Windows.Forms.NumericUpDown lowLedCount;
        private System.Windows.Forms.Label label14;
        private System.Windows.Forms.Label label13;
        private System.Windows.Forms.Label label12;
        private System.Windows.Forms.Label label11;
        private System.Windows.Forms.Label label10;
        private System.Windows.Forms.Label label9;
        private System.Windows.Forms.Label label8;
        private System.Windows.Forms.PictureBox backgroundColorDisplay;
        private System.Windows.Forms.NumericUpDown midLedCount;
        private System.Windows.Forms.Label label16;
        private System.Windows.Forms.Label label15;
        private System.Windows.Forms.PictureBox highLedColorDisplay;
        private System.Windows.Forms.PictureBox midLedColorDisplay;
        private System.Windows.Forms.Button highLedColorButton;
        private System.Windows.Forms.NumericUpDown highLedCount;
        private System.Windows.Forms.Button midLedColorButton;
        private System.Windows.Forms.PictureBox lowLedColorDisplay;
        private System.Windows.Forms.TextBox ledHeight;
        private System.Windows.Forms.TextBox bottomMargin;
        private System.Windows.Forms.TextBox topMargin;
        private System.Windows.Forms.TextBox rightMargin;
        private System.Windows.Forms.TextBox leftMargin;
        private System.Windows.Forms.TextBox upDownSeperation;
        private System.Windows.Forms.TextBox leftRightSeperation;
        private System.Windows.Forms.TextBox ledWidth;
        private System.Windows.Forms.ComboBox displayModeChooser;
        private System.Windows.Forms.Label label17;
        private System.Windows.Forms.ToolStripDropDownButton startMeterButton;
        private System.Windows.Forms.ToolStripMenuItem randomMeterToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem audioSignalMeterToolStripMenuItem;
        private System.Windows.Forms.Panel randomSettingsPanel;
        private System.Windows.Forms.RadioButton randomRadioButton;
        private System.Windows.Forms.Label label18;
        private System.Windows.Forms.NumericUpDown randomRightLevel;
        private System.Windows.Forms.NumericUpDown randomLeftLevel;
        private System.Windows.Forms.Label randomRightLabel;
        private System.Windows.Forms.Label randomLeftLabel;
        private System.Windows.Forms.RadioButton specifyRadioButton;
        private System.Windows.Forms.ComboBox audioModeChooser;
        private System.Windows.Forms.Label label19;
        private System.Windows.Forms.TextBox sampleFrequency;
        private System.Windows.Forms.Label label20;
        private System.Windows.Forms.Label rightLevelValueLabel;
        private System.Windows.Forms.Label leftLevelValueLabel;
        private System.Windows.Forms.Label label21;
        private System.Windows.Forms.Panel peakLogPanel;
        private System.Windows.Forms.DataGridView signalPeakLog;
        private System.Windows.Forms.DataGridViewTextBoxColumn peak;
        private System.Windows.Forms.Button clearPeakLogButton;
        private System.Windows.Forms.ProgressBar progressBar1;
        private System.Windows.Forms.ProgressBar progressBar2;
        private System.Windows.Forms.Label label24;
        private System.Windows.Forms.Label label23;
        private System.Windows.Forms.Label label22;
        private System.Windows.Forms.ToolStripDropDownButton stopRecordingButton;
        private System.Windows.Forms.ToolStripMenuItem stopAndClearToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem stopAndPauseToolStripMenuItem;
        private AnalogSignalMeter analogSignalMeter1;

        #endregion

    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions