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

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