[chore:] better info view (was maximized)

This commit is contained in:
2026-02-18 14:12:57 +01:00
parent e9c7b61ced
commit f8f5140d47

View File

@@ -57,9 +57,15 @@ public partial class MainWindow : Window
private void MnuAbout_OnClick(object? sender, RoutedEventArgs e)
{
Window w = new();
w.WindowState = WindowState.Normal;
w.WindowStartupLocation = WindowStartupLocation.CenterScreen;
w.Width = 300;
w.Height = 120;
Grid g = new();
TextBlock tb = new();
tb.Text = "Spplus v1.0.0\n(c)2026 MyPapertown, Elias Fierke";
TextBlock tb = new()
{
Text = "spplus v1.0.0\n(c)2026 MyPapertown, Elias Fierke"
};
g.Children.Add(tb);
w.Content = g;
w.Show();