mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2025-02-02 18:12:32 +01:00
parent
145ddb01ba
commit
003dbd627e
@ -397,6 +397,7 @@ namespace DS4Windows
|
|||||||
|
|
||||||
instance = this;
|
instance = this;
|
||||||
this.Resize += Form_Resize;
|
this.Resize += Form_Resize;
|
||||||
|
this.LocationChanged += TrackLocationChanged;
|
||||||
Form_Resize(null, null);
|
Form_Resize(null, null);
|
||||||
if (btnStartStop.Enabled && start)
|
if (btnStartStop.Enabled && start)
|
||||||
TaskRunner.Delay(50).ContinueWith((t) => this.BeginInvoke((System.Action)(() => BtnStartStop_Clicked())));
|
TaskRunner.Delay(50).ContinueWith((t) => this.BeginInvoke((System.Action)(() => BtnStartStop_Clicked())));
|
||||||
@ -942,9 +943,24 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question
|
|||||||
FormBorderStyle = FormBorderStyle.Sizable;
|
FormBorderStyle = FormBorderStyle.Sizable;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (WindowState != FormWindowState.Minimized)
|
||||||
|
{
|
||||||
|
FormWidth = Width;
|
||||||
|
FormHeight = Height;
|
||||||
|
}
|
||||||
|
|
||||||
chData.AutoResize(ColumnHeaderAutoResizeStyle.HeaderSize);
|
chData.AutoResize(ColumnHeaderAutoResizeStyle.HeaderSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void TrackLocationChanged(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (WindowState != FormWindowState.Minimized)
|
||||||
|
{
|
||||||
|
FormLocationX = Location.X;
|
||||||
|
FormLocationY = Location.Y;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void BtnStartStop_Click(object sender, EventArgs e)
|
private void BtnStartStop_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
BtnStartStop_Clicked();
|
BtnStartStop_Clicked();
|
||||||
@ -2179,19 +2195,6 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question
|
|||||||
DS4LightBar.shuttingdown = true;
|
DS4LightBar.shuttingdown = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (oldsize == new Size(0, 0))
|
|
||||||
{
|
|
||||||
FormWidth = this.Width;
|
|
||||||
FormHeight = this.Height;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
FormWidth = oldsize.Width;
|
|
||||||
FormHeight = oldsize.Height;
|
|
||||||
}
|
|
||||||
|
|
||||||
FormLocationX = Location.X > 0 ? Location.X : 0;
|
|
||||||
FormLocationY = Location.Y > 0 ? Location.Y : 0;
|
|
||||||
Global.ControllerRemoved -= ControllerRemovedChange;
|
Global.ControllerRemoved -= ControllerRemovedChange;
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(appdatapath))
|
if (!string.IsNullOrEmpty(appdatapath))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user