Removed Form_Resize method for Options

This commit is contained in:
Travis Nickles 2018-07-29 03:16:24 -05:00
parent f076752404
commit 9cc93f8128
4 changed files with 1024 additions and 3602 deletions

View File

@ -1462,6 +1462,7 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question
opt.TopLevel = false; opt.TopLevel = false;
opt.Dock = DockStyle.Fill; opt.Dock = DockStyle.Fill;
opt.FormBorderStyle = FormBorderStyle.None; opt.FormBorderStyle = FormBorderStyle.None;
tabProfiles.Controls.Add(opt); tabProfiles.Controls.Add(opt);
optPop = true; optPop = true;
//opt.Dock = DockStyle.Fill; //opt.Dock = DockStyle.Fill;
@ -1479,9 +1480,12 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question
} }
opt.Reload(devID, profile); opt.Reload(devID, profile);
opt.inputtimer.Start(); opt.inputtimer.Start();
opt.Visible = true; opt.Visible = true;
tabMain.SelectedIndex = 1; tabMain.SelectedIndex = 1;
opt.SetFlowAutoScroll();
} }
public void OptionsClosed() public void OptionsClosed()
@ -1510,7 +1514,6 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question
opt.sixaxisTimer.Stop(); opt.sixaxisTimer.Stop();
opt.Dock = DockStyle.None; opt.Dock = DockStyle.None;
tabProfiles.Controls.Remove(opt); tabProfiles.Controls.Remove(opt);
opt.Dispose();
optPop = false; optPop = false;
lBProfiles.Visible = true; lBProfiles.Visible = true;

View File

@ -4117,7 +4117,6 @@
this.MinimizeBox = false; this.MinimizeBox = false;
this.Name = "Options"; this.Name = "Options";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Options_FormClosing); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Options_FormClosing);
this.Resize += new System.EventHandler(this.Options_Resize);
((System.ComponentModel.ISupportInitialize)(this.nUDRainbow)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDRainbow)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tBBlueBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBBlueBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tBGreenBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBGreenBar)).EndInit();

View File

@ -142,6 +142,12 @@ namespace DS4Windows
populateHoverLabelDict(); populateHoverLabelDict();
} }
public void SetFlowAutoScroll()
{
fLPSettings.AutoScroll = false;
fLPSettings.AutoScroll = true;
}
private void populateHoverIndexDict() private void populateHoverIndexDict()
{ {
hoverIndexDict.Clear(); hoverIndexDict.Clear();
@ -2987,12 +2993,6 @@ namespace DS4Windows
e.Graphics.DrawImage(btnLightBgImg, new Rectangle(0, -1, Convert.ToInt32(btnLightbar.Width), Convert.ToInt32(btnLightbar.Height - 2))); e.Graphics.DrawImage(btnLightBgImg, new Rectangle(0, -1, Convert.ToInt32(btnLightbar.Width), Convert.ToInt32(btnLightbar.Height - 2)));
} }
private void Options_Resize(object sender, EventArgs e)
{
fLPSettings.AutoScroll = false;
fLPSettings.AutoScroll = true;
}
private void lBControls_SelectedIndexChanged(object sender, EventArgs e) private void lBControls_SelectedIndexChanged(object sender, EventArgs e)
{ {
int controlSelectedIndex = lBControls.SelectedIndex; int controlSelectedIndex = lBControls.SelectedIndex;

File diff suppressed because it is too large Load Diff