diff --git a/DesktopClock/Properties/Settings.cs b/DesktopClock/Properties/Settings.cs index 96b1b74..c6b2e4e 100644 --- a/DesktopClock/Properties/Settings.cs +++ b/DesktopClock/Properties/Settings.cs @@ -347,7 +347,7 @@ private Settings() /// /// This remembers how wide you last made the settings window so it feels familiar the next time you open it. /// - public double SettingsWindowWidth { get; set; } = 720; + public double SettingsWindowWidth { get; set; } = 1200; /// /// Persisted height of the settings window. @@ -355,7 +355,7 @@ private Settings() /// /// This remembers how tall you last made the settings window so you do not have to resize it every time. /// - public double SettingsWindowHeight { get; set; } = 600; + public double SettingsWindowHeight { get; set; } = 900; /// /// Persisted vertical scroll offset of the settings window. diff --git a/DesktopClock/SettingsWindow.xaml b/DesktopClock/SettingsWindow.xaml index 1adeebf..a71a312 100644 --- a/DesktopClock/SettingsWindow.xaml +++ b/DesktopClock/SettingsWindow.xaml @@ -10,8 +10,8 @@ Title="DesktopClock Settings" Width="{Binding Source={x:Static p:Settings.Default}, Path=SettingsWindowWidth, Mode=TwoWay}" Height="{Binding Source={x:Static p:Settings.Default}, Path=SettingsWindowHeight, Mode=TwoWay}" - MinWidth="720" - MinHeight="520" + MinWidth="800" + MinHeight="600" ResizeMode="CanResize" WindowStartupLocation="CenterScreen"> @@ -22,6 +22,38 @@ + + + + + +