Spring

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ HEAD  →  ?path2? @ 1
/Spring/Settings/SettingsForm.Designer.cs
@@ -371,7 +371,7 @@
this.tabControl1.Multiline = true;
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(506, 295);
this.tabControl1.Size = new System.Drawing.Size(492, 277);
this.tabControl1.TabIndex = 6;
this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.TabControl1_SelectedIndexChanged);
//
@@ -381,7 +381,7 @@
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(498, 269);
this.tabPage1.Size = new System.Drawing.Size(484, 251);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Spring";
this.tabPage1.UseVisualStyleBackColor = true;
@@ -396,7 +396,7 @@
this.flowLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutPanel3.Location = new System.Drawing.Point(3, 3);
this.flowLayoutPanel3.Name = "flowLayoutPanel3";
this.flowLayoutPanel3.Size = new System.Drawing.Size(492, 263);
this.flowLayoutPanel3.Size = new System.Drawing.Size(478, 245);
this.flowLayoutPanel3.TabIndex = 0;
//
// groupBox1
@@ -495,7 +495,7 @@
this.tabPage2.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(484, 251);
this.tabPage2.Size = new System.Drawing.Size(488, 255);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "OSD";
this.tabPage2.UseVisualStyleBackColor = true;
@@ -509,7 +509,7 @@
this.flowLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutPanel4.Location = new System.Drawing.Point(3, 3);
this.flowLayoutPanel4.Name = "flowLayoutPanel4";
this.flowLayoutPanel4.Size = new System.Drawing.Size(478, 245);
this.flowLayoutPanel4.Size = new System.Drawing.Size(482, 249);
this.flowLayoutPanel4.TabIndex = 0;
//
// groupBox10
@@ -551,7 +551,7 @@
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(506, 295);
this.ClientSize = new System.Drawing.Size(496, 281);
this.Controls.Add(this.tabControl1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
@@ -561,7 +561,6 @@
this.Name = "SettingsForm";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Text = "Settings";
this.Load += new System.EventHandler(this.SettingsForm_Load);
this.Shown += new System.EventHandler(this.SpringSettingsForm_Shown);
this.groupBox2.ResumeLayout(false);
this.tableLayoutPanel4.ResumeLayout(false);
/Spring/Settings/SettingsForm.cs
@@ -131,6 +131,7 @@
private SettingsForm()
{
InitializeComponent();
Utilities.WindowState.FormTracker.Track(this);
 
PanelGraphics = hudPostionPanel.CreateGraphics();
PanelBounds = PanelGraphics.VisibleClipBounds;
@@ -138,13 +139,10 @@
PanelRegion = new Region(PanelBounds);
}
 
#endregion
#endregion
 
#region Event Handlers
private void SettingsForm_Load(object sender, EventArgs e)
{
Utilities.WindowState.FormTracker.Track(this);
}
#region Event Handlers
 
private void ListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
var listBox = (ListBox) sender;
@@ -328,8 +326,6 @@
maximumRepeatsTrackBar.Value = value;
}
 
#endregion
 
 
#endregion
}
}