Windows 11 design compatibility

This commit is contained in:
2025-06-08 01:29:22 +02:00
parent f7df25372d
commit 2082072532
7 changed files with 40 additions and 19 deletions

View File

@ -432,5 +432,12 @@ namespace unison
WindowInteropHelper helper = new(this);
helper.EnsureHandle();
}
private void Window_LocationChanged(object sender, EventArgs e)
{
Properties.Settings.Default.ShuffleWindowTop = Top;
Properties.Settings.Default.ShuffleWindowLeft = Left;
Properties.Settings.Default.Save();
}
}
}