From f8f5140d471b6f36bb04d430a700496b9db3a07e Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Wed, 18 Feb 2026 14:12:57 +0100 Subject: [PATCH] [chore:] better info view (was maximized) --- MainWindow.axaml.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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();