Click here to Skip to main content
15,894,017 members
Articles / Programming Languages / C#

Using OpenTK/OpenAL to Develop Cross Platform DIS VOIP Application

Rate me:
Please Sign up or sign in to vote.
4.79/5 (8 votes)
15 Mar 2010BSD10 min read 45.1K   1.7K   24  
Application allows voice communications (VOIP) utilizing the Distributed Interactive Simulation protocol (IEEE 1278.1)
namespace RadioFeatureSelection
{
    partial class RadioInterfaceOptions
    {
        /// <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 Component 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.groupBox_EarSelection = new System.Windows.Forms.GroupBox();
            this.radioButton_BothEars = new System.Windows.Forms.RadioButton();
            this.radioButton_RightEar = new System.Windows.Forms.RadioButton();
            this.radioButton_LeftEar = new System.Windows.Forms.RadioButton();
            this.textBox_Frequency = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.button_Apply = new System.Windows.Forms.Button();
            this.button_Cancel = new System.Windows.Forms.Button();
            this.groupBox_EarSelection.SuspendLayout();
            this.SuspendLayout();
            // 
            // groupBox_EarSelection
            // 
            this.groupBox_EarSelection.Controls.Add(this.radioButton_BothEars);
            this.groupBox_EarSelection.Controls.Add(this.radioButton_RightEar);
            this.groupBox_EarSelection.Controls.Add(this.radioButton_LeftEar);
            this.groupBox_EarSelection.Location = new System.Drawing.Point(4, 3);
            this.groupBox_EarSelection.Name = "groupBox_EarSelection";
            this.groupBox_EarSelection.Size = new System.Drawing.Size(132, 89);
            this.groupBox_EarSelection.TabIndex = 3;
            this.groupBox_EarSelection.TabStop = false;
            this.groupBox_EarSelection.Text = "Ear Selection";
            // 
            // radioButton_BothEars
            // 
            this.radioButton_BothEars.AutoSize = true;
            this.radioButton_BothEars.Checked = true;
            this.radioButton_BothEars.Location = new System.Drawing.Point(15, 66);
            this.radioButton_BothEars.Name = "radioButton_BothEars";
            this.radioButton_BothEars.Size = new System.Drawing.Size(111, 17);
            this.radioButton_BothEars.TabIndex = 0;
            this.radioButton_BothEars.TabStop = true;
            this.radioButton_BothEars.Text = "Left and Right Ear";
            this.radioButton_BothEars.UseVisualStyleBackColor = true;
            // 
            // radioButton_RightEar
            // 
            this.radioButton_RightEar.AutoSize = true;
            this.radioButton_RightEar.Location = new System.Drawing.Point(15, 43);
            this.radioButton_RightEar.Name = "radioButton_RightEar";
            this.radioButton_RightEar.Size = new System.Drawing.Size(69, 17);
            this.radioButton_RightEar.TabIndex = 0;
            this.radioButton_RightEar.Text = "Right Ear";
            this.radioButton_RightEar.UseVisualStyleBackColor = true;
            // 
            // radioButton_LeftEar
            // 
            this.radioButton_LeftEar.AutoSize = true;
            this.radioButton_LeftEar.Location = new System.Drawing.Point(15, 20);
            this.radioButton_LeftEar.Name = "radioButton_LeftEar";
            this.radioButton_LeftEar.Size = new System.Drawing.Size(62, 17);
            this.radioButton_LeftEar.TabIndex = 0;
            this.radioButton_LeftEar.Text = "Left Ear";
            this.radioButton_LeftEar.UseVisualStyleBackColor = true;
            // 
            // textBox_Frequency
            // 
            this.textBox_Frequency.Location = new System.Drawing.Point(4, 118);
            this.textBox_Frequency.Name = "textBox_Frequency";
            this.textBox_Frequency.Size = new System.Drawing.Size(132, 20);
            this.textBox_Frequency.TabIndex = 4;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(42, 102);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(57, 13);
            this.label1.TabIndex = 5;
            this.label1.Text = "Frequency";
            // 
            // button_Apply
            // 
            this.button_Apply.Location = new System.Drawing.Point(4, 159);
            this.button_Apply.Name = "button_Apply";
            this.button_Apply.Size = new System.Drawing.Size(63, 23);
            this.button_Apply.TabIndex = 6;
            this.button_Apply.Text = "APPLY";
            this.button_Apply.UseVisualStyleBackColor = true;
            this.button_Apply.Click += new System.EventHandler(this.button_Apply_Click);
            // 
            // button_Cancel
            // 
            this.button_Cancel.Location = new System.Drawing.Point(73, 159);
            this.button_Cancel.Name = "button_Cancel";
            this.button_Cancel.Size = new System.Drawing.Size(63, 23);
            this.button_Cancel.TabIndex = 6;
            this.button_Cancel.Text = "CANCEL";
            this.button_Cancel.UseVisualStyleBackColor = true;
            // 
            // UserControl1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.button_Cancel);
            this.Controls.Add(this.button_Apply);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.textBox_Frequency);
            this.Controls.Add(this.groupBox_EarSelection);
            this.Name = "UserControl1";
            this.Size = new System.Drawing.Size(140, 187);
            this.groupBox_EarSelection.ResumeLayout(false);
            this.groupBox_EarSelection.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.GroupBox groupBox_EarSelection;
        private System.Windows.Forms.RadioButton radioButton_BothEars;
        private System.Windows.Forms.RadioButton radioButton_RightEar;
        private System.Windows.Forms.RadioButton radioButton_LeftEar;
        private System.Windows.Forms.TextBox textBox_Frequency;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Button button_Apply;
        private System.Windows.Forms.Button button_Cancel;
    }
}

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 BSD License


Written By
Software Developer
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