Server/MainForm.Designer.cs
changeset 94 fe939a729030
parent 92 787dee27fc0a
child 100 7e02ac8b13ba
     1.1 --- a/Server/MainForm.Designer.cs	Sun Jan 18 14:18:28 2015 +0100
     1.2 +++ b/Server/MainForm.Designer.cs	Sun Jan 18 18:11:32 2015 +0100
     1.3 @@ -77,6 +77,8 @@
     1.4  			this.buttonRemoveRow = new System.Windows.Forms.Button();
     1.5  			this.buttonAddRow = new System.Windows.Forms.Button();
     1.6  			this.tabPageApp = new System.Windows.Forms.TabPage();
     1.7 +			this.checkBoxStartMinimized = new System.Windows.Forms.CheckBox();
     1.8 +			this.checkBoxMinimizeToTray = new System.Windows.Forms.CheckBox();
     1.9  			this.checkBoxAutoStart = new System.Windows.Forms.CheckBox();
    1.10  			this.buttonUpdate = new System.Windows.Forms.Button();
    1.11  			this.labelFontWidth = new System.Windows.Forms.Label();
    1.12 @@ -614,6 +616,8 @@
    1.13  			// 
    1.14  			// tabPageApp
    1.15  			// 
    1.16 +			this.tabPageApp.Controls.Add(this.checkBoxStartMinimized);
    1.17 +			this.tabPageApp.Controls.Add(this.checkBoxMinimizeToTray);
    1.18  			this.tabPageApp.Controls.Add(this.checkBoxAutoStart);
    1.19  			this.tabPageApp.Controls.Add(this.buttonUpdate);
    1.20  			this.tabPageApp.Location = new System.Drawing.Point(4, 22);
    1.21 @@ -624,15 +628,39 @@
    1.22  			this.tabPageApp.Text = "Application";
    1.23  			this.tabPageApp.UseVisualStyleBackColor = true;
    1.24  			// 
    1.25 +			// checkBoxStartMinimized
    1.26 +			// 
    1.27 +			this.checkBoxStartMinimized.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    1.28 +			this.checkBoxStartMinimized.AutoSize = true;
    1.29 +			this.checkBoxStartMinimized.Location = new System.Drawing.Point(8, 144);
    1.30 +			this.checkBoxStartMinimized.Name = "checkBoxStartMinimized";
    1.31 +			this.checkBoxStartMinimized.Size = new System.Drawing.Size(96, 17);
    1.32 +			this.checkBoxStartMinimized.TabIndex = 16;
    1.33 +			this.checkBoxStartMinimized.Text = "Start minimized";
    1.34 +			this.checkBoxStartMinimized.UseVisualStyleBackColor = true;
    1.35 +			this.checkBoxStartMinimized.CheckedChanged += new System.EventHandler(this.checkBoxStartMinimized_CheckedChanged);
    1.36 +			// 
    1.37 +			// checkBoxMinimizeToTray
    1.38 +			// 
    1.39 +			this.checkBoxMinimizeToTray.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    1.40 +			this.checkBoxMinimizeToTray.AutoSize = true;
    1.41 +			this.checkBoxMinimizeToTray.Location = new System.Drawing.Point(8, 167);
    1.42 +			this.checkBoxMinimizeToTray.Name = "checkBoxMinimizeToTray";
    1.43 +			this.checkBoxMinimizeToTray.Size = new System.Drawing.Size(133, 17);
    1.44 +			this.checkBoxMinimizeToTray.TabIndex = 15;
    1.45 +			this.checkBoxMinimizeToTray.Text = "Minimize to system tray";
    1.46 +			this.checkBoxMinimizeToTray.UseVisualStyleBackColor = true;
    1.47 +			this.checkBoxMinimizeToTray.CheckedChanged += new System.EventHandler(this.checkBoxMinimizeToTray_CheckedChanged);
    1.48 +			// 
    1.49  			// checkBoxAutoStart
    1.50  			// 
    1.51  			this.checkBoxAutoStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    1.52  			this.checkBoxAutoStart.AutoSize = true;
    1.53  			this.checkBoxAutoStart.Location = new System.Drawing.Point(8, 190);
    1.54  			this.checkBoxAutoStart.Name = "checkBoxAutoStart";
    1.55 -			this.checkBoxAutoStart.Size = new System.Drawing.Size(73, 17);
    1.56 +			this.checkBoxAutoStart.Size = new System.Drawing.Size(143, 17);
    1.57  			this.checkBoxAutoStart.TabIndex = 14;
    1.58 -			this.checkBoxAutoStart.Text = "Auto Start";
    1.59 +			this.checkBoxAutoStart.Text = "Run on Windows startup";
    1.60  			this.checkBoxAutoStart.UseVisualStyleBackColor = true;
    1.61  			this.checkBoxAutoStart.CheckedChanged += new System.EventHandler(this.checkBoxAutoStart_CheckedChanged);
    1.62  			// 
    1.63 @@ -690,6 +718,7 @@
    1.64  			this.Text = "Sharp Display Manager";
    1.65  			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
    1.66  			this.Load += new System.EventHandler(this.MainForm_Load);
    1.67 +			this.SizeChanged += new System.EventHandler(this.MainForm_SizeChanged);
    1.68  			this.Resize += new System.EventHandler(this.MainForm_Resize);
    1.69  			this.panelDisplay.ResumeLayout(false);
    1.70  			this.tableLayoutPanel.ResumeLayout(false);
    1.71 @@ -765,6 +794,8 @@
    1.72          private System.Windows.Forms.TabPage tabPageApp;
    1.73          private System.Windows.Forms.Button buttonUpdate;
    1.74  		private System.Windows.Forms.CheckBox checkBoxAutoStart;
    1.75 +		private System.Windows.Forms.CheckBox checkBoxStartMinimized;
    1.76 +		private System.Windows.Forms.CheckBox checkBoxMinimizeToTray;
    1.77      }
    1.78  }
    1.79