diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index 262cb80..ff0b24d 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -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();