[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)
|
private void MnuAbout_OnClick(object? sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
Window w = new();
|
Window w = new();
|
||||||
|
w.WindowState = WindowState.Normal;
|
||||||
|
w.WindowStartupLocation = WindowStartupLocation.CenterScreen;
|
||||||
|
w.Width = 300;
|
||||||
|
w.Height = 120;
|
||||||
Grid g = new();
|
Grid g = new();
|
||||||
TextBlock tb = new();
|
TextBlock tb = new()
|
||||||
tb.Text = "Spplus v1.0.0\n(c)2026 MyPapertown, Elias Fierke";
|
{
|
||||||
|
Text = "spplus v1.0.0\n(c)2026 MyPapertown, Elias Fierke"
|
||||||
|
};
|
||||||
g.Children.Add(tb);
|
g.Children.Add(tb);
|
||||||
w.Content = g;
|
w.Content = g;
|
||||||
w.Show();
|
w.Show();
|
||||||
|
|||||||
Reference in New Issue
Block a user