[chore:] better info view (was maximized)
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user