Server/MainForm.Designer.cs
changeset 112 57b1c6507bd7
parent 110 31e63bd07dfa
child 113 0846e5112dd7
     1.1 --- a/Server/MainForm.Designer.cs	Sat Feb 07 21:16:33 2015 +0100
     1.2 +++ b/Server/MainForm.Designer.cs	Sun Feb 08 17:27:02 2015 +0100
     1.3 @@ -90,6 +90,8 @@
     1.4  			this.checkBoxMinimizeToTray = new System.Windows.Forms.CheckBox();
     1.5  			this.checkBoxAutoStart = new System.Windows.Forms.CheckBox();
     1.6  			this.buttonUpdate = new System.Windows.Forms.Button();
     1.7 +			this.tabPageAudio = new System.Windows.Forms.TabPage();
     1.8 +			this.trackBarMasterVolume = new System.Windows.Forms.TrackBar();
     1.9  			this.labelFontWidth = new System.Windows.Forms.Label();
    1.10  			this.labelFontHeight = new System.Windows.Forms.Label();
    1.11  			this.pictureBoxDemo = new System.Windows.Forms.PictureBox();
    1.12 @@ -103,6 +105,8 @@
    1.13  			this.tabControl.SuspendLayout();
    1.14  			this.tabPageDesign.SuspendLayout();
    1.15  			this.tabPageApp.SuspendLayout();
    1.16 +			this.tabPageAudio.SuspendLayout();
    1.17 +			((System.ComponentModel.ISupportInitialize)(this.trackBarMasterVolume)).BeginInit();
    1.18  			((System.ComponentModel.ISupportInitialize)(this.pictureBoxDemo)).BeginInit();
    1.19  			this.SuspendLayout();
    1.20  			// 
    1.21 @@ -504,6 +508,7 @@
    1.22  			this.tabControl.Controls.Add(this.tabPageClients);
    1.23  			this.tabControl.Controls.Add(this.tabPageDesign);
    1.24  			this.tabControl.Controls.Add(this.tabPageApp);
    1.25 +			this.tabControl.Controls.Add(this.tabPageAudio);
    1.26  			this.tabControl.Location = new System.Drawing.Point(12, 139);
    1.27  			this.tabControl.Name = "tabControl";
    1.28  			this.tabControl.SelectedIndex = 0;
    1.29 @@ -683,6 +688,31 @@
    1.30  			this.buttonUpdate.UseVisualStyleBackColor = true;
    1.31  			this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
    1.32  			// 
    1.33 +			// tabPageAudio
    1.34 +			// 
    1.35 +			this.tabPageAudio.Controls.Add(this.trackBarMasterVolume);
    1.36 +			this.tabPageAudio.Location = new System.Drawing.Point(4, 22);
    1.37 +			this.tabPageAudio.Name = "tabPageAudio";
    1.38 +			this.tabPageAudio.Padding = new System.Windows.Forms.Padding(3);
    1.39 +			this.tabPageAudio.Size = new System.Drawing.Size(592, 242);
    1.40 +			this.tabPageAudio.TabIndex = 5;
    1.41 +			this.tabPageAudio.Text = "Audio";
    1.42 +			this.tabPageAudio.UseVisualStyleBackColor = true;
    1.43 +			// 
    1.44 +			// trackBarMasterVolume
    1.45 +			// 
    1.46 +			this.trackBarMasterVolume.BackColor = System.Drawing.SystemColors.Window;
    1.47 +			this.trackBarMasterVolume.Location = new System.Drawing.Point(541, 6);
    1.48 +			this.trackBarMasterVolume.Maximum = 100;
    1.49 +			this.trackBarMasterVolume.Name = "trackBarMasterVolume";
    1.50 +			this.trackBarMasterVolume.Orientation = System.Windows.Forms.Orientation.Vertical;
    1.51 +			this.trackBarMasterVolume.Size = new System.Drawing.Size(45, 230);
    1.52 +			this.trackBarMasterVolume.TabIndex = 0;
    1.53 +			this.trackBarMasterVolume.TickFrequency = 10;
    1.54 +			this.trackBarMasterVolume.TickStyle = System.Windows.Forms.TickStyle.Both;
    1.55 +			this.toolTip.SetToolTip(this.trackBarMasterVolume, "Master Volume");
    1.56 +			this.trackBarMasterVolume.Scroll += new System.EventHandler(this.trackBarMasterVolume_Scroll);
    1.57 +			// 
    1.58  			// labelFontWidth
    1.59  			// 
    1.60  			this.labelFontWidth.AutoSize = true;
    1.61 @@ -743,6 +773,9 @@
    1.62  			this.tabPageDesign.PerformLayout();
    1.63  			this.tabPageApp.ResumeLayout(false);
    1.64  			this.tabPageApp.PerformLayout();
    1.65 +			this.tabPageAudio.ResumeLayout(false);
    1.66 +			this.tabPageAudio.PerformLayout();
    1.67 +			((System.ComponentModel.ISupportInitialize)(this.trackBarMasterVolume)).EndInit();
    1.68  			((System.ComponentModel.ISupportInitialize)(this.pictureBoxDemo)).EndInit();
    1.69  			this.ResumeLayout(false);
    1.70  			this.PerformLayout();
    1.71 @@ -806,6 +839,8 @@
    1.72  		private System.Windows.Forms.Label labelScrollingSpeed;
    1.73  		private System.Windows.Forms.MaskedTextBox maskedTextBoxScrollingSpeed;
    1.74  		private System.Windows.Forms.ToolTip toolTip;
    1.75 +		private System.Windows.Forms.TabPage tabPageAudio;
    1.76 +		private System.Windows.Forms.TrackBar trackBarMasterVolume;
    1.77      }
    1.78  }
    1.79