From ff2ead6e1dcb806cf034790e4da4f7ccce2026c1 Mon Sep 17 00:00:00 2001 From: Megalon Date: Wed, 12 May 2021 21:20:37 -0700 Subject: [PATCH 1/2] Add ScrollViewer for non Mod pages This just wraps the Grid objects with a ScrollViewer. All other changes are just formatting. --- ModAssistant/Pages/About.xaml | 188 ++++++++++++++++---------------- ModAssistant/Pages/Intro.xaml | 84 +++++++------- ModAssistant/Pages/Invalid.xaml | 70 ++++++------ ModAssistant/Pages/Options.xaml | 188 ++++++++++++++++---------------- 4 files changed, 269 insertions(+), 261 deletions(-) diff --git a/ModAssistant/Pages/About.xaml b/ModAssistant/Pages/About.xaml index ed5c05b..0d0361b 100644 --- a/ModAssistant/Pages/About.xaml +++ b/ModAssistant/Pages/About.xaml @@ -12,57 +12,58 @@ d:DesignWidth="1182" mc:Ignorable="d"> - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + - - - - - - @@ -70,27 +71,27 @@ - - + - - - - + Umbranox - - + Inspiration - - + Creating the Mod Manager - - + - - + + - - + lolPants - - + Inspiration - - + Creating ModSaber - - + The first Mod repository - - + - - + + - - + Caeden117 - - + Theme Support - - + - - + + - - + Interz - - + Logos and icon design - - + - - + + - - + Megalon2D - - + BSMG Theme - - + Lots of fixes - - + - - + + - - + - - - - + + + + diff --git a/ModAssistant/Pages/Invalid.xaml b/ModAssistant/Pages/Invalid.xaml index c65f505..5a06d99 100644 --- a/ModAssistant/Pages/Invalid.xaml +++ b/ModAssistant/Pages/Invalid.xaml @@ -10,40 +10,41 @@ d:DesignWidth="1182" mc:Ignorable="d"> - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - + + + + - - - - - + - - + - - + - - : - - - - - + + + - + + From d5c5e23e29216c70fe34f3147e8f753a3ebd0ff0 Mon Sep 17 00:00:00 2001 From: Megalon Date: Sat, 15 May 2021 18:31:40 -0700 Subject: [PATCH 2/2] Set min size of main window --- ModAssistant/MainWindow.xaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ModAssistant/MainWindow.xaml b/ModAssistant/MainWindow.xaml index 017fa92..0ad5c7e 100644 --- a/ModAssistant/MainWindow.xaml +++ b/ModAssistant/MainWindow.xaml @@ -9,7 +9,8 @@ Icon="Resources/icon.ico" SizeChanged="Window_SizeChanged" UIElement.PreviewMouseDown="Window_PreviewMouseDown" - mc:Ignorable="d"> + mc:Ignorable="d" + MinWidth="800" MinHeight="430">