From 4346a0f009b265a848f1123aedc6f58980561e0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amaro=20Mart=C3=ADnez?= Date: Mon, 21 Mar 2022 17:40:12 -0500 Subject: [PATCH 1/2] Add Windows Vista Classic Theme Fixes #255. Moved styles from Windows XP Classic to System XP. Also added file globbing for the theme resources in the project file. --- RetroBar/Resources/startvistaclassic.png | Bin 0 -> 862 bytes RetroBar/RetroBar.csproj | 31 +++---------------- RetroBar/Themes/System XP.xaml | 29 ++++++++++++++++++ RetroBar/Themes/System.xaml | 20 ++++++++++++- RetroBar/Themes/Windows 2000.xaml | 7 +++++ RetroBar/Themes/Windows 95-98.xaml | 6 ++++ RetroBar/Themes/Windows Me.xaml | 13 ++++++++ RetroBar/Themes/Windows Vista Classic.xaml | 33 +++++++++++++++++++++ RetroBar/Themes/Windows XP Classic.xaml | 33 +-------------------- 9 files changed, 112 insertions(+), 60 deletions(-) create mode 100644 RetroBar/Resources/startvistaclassic.png create mode 100644 RetroBar/Themes/Windows Vista Classic.xaml diff --git a/RetroBar/Resources/startvistaclassic.png b/RetroBar/Resources/startvistaclassic.png new file mode 100644 index 0000000000000000000000000000000000000000..00d679ff3d317ba331a5b4e6fbae2b82068e7766 GIT binary patch literal 862 zcmV-k1EKthP)pI5J^NqR5;6hlWRy*aTvx|bT8;)1r+Lkjxv zob&(ie}C`uKIc6g0GyC~KHt>0m(R35+p!Wv#)AFudc8Bo-uYYM!|3SfI4fi1(HobI zX!k@yw=Wt@b~JjjV*U#W9|D2Eq^{d#1x$7f-W`jBwUCPsC2{z6Eej@-DfW_lH>fT_ z7&b64Fs)2fY6=6~ZucDBnM|4#ek$kT>#cY=?sDN$T?0+iYb#YdabBE?BeiR=_ev6y z3s>W6b45+qzNOp9vlJ%!KMUgFY>LNsIS)VNTu>C1_C$9U4eA_Jx9wsfdAHVLdubAy zTOa3!?RN{ykAJ(623Jic+_fp_S1y6KBN+;XVuPZG59;+v2s^V;q1cK7VKNR>tpA}_ zt5=27Hy8}umX?-{5{V?8NGuj_>+iSC+*NqT8uR;TT9a5=ui$G61GamXV> zprRtmG}vCt;Dp$UN{xes5CB{cfv@-3Fv)1-?NDE&dwY8q4Gj%V;Jmkfh+24>`Z>F_ z6Wp6R*2O8=7m%(bq=2m&{&(jQd~+P=&cLub9%f|`-{Ek~V;4yvQRhxSEJ8$48;Fa9 z8w^MmWcFcGK3fk07*qoM6N<$f}9VD761SM literal 0 HcmV?d00001 diff --git a/RetroBar/RetroBar.csproj b/RetroBar/RetroBar.csproj index 3404c247..1026f2df 100644 --- a/RetroBar/RetroBar.csproj +++ b/RetroBar/RetroBar.csproj @@ -14,6 +14,10 @@ + + PreserveNewest + Designer + PreserveNewest Designer @@ -59,33 +63,6 @@ SettingsSingleFileGenerator Settings.Designer.cs - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - \ No newline at end of file diff --git a/RetroBar/Themes/System XP.xaml b/RetroBar/Themes/System XP.xaml index 9d61da35..8b66ca20 100644 --- a/RetroBar/Themes/System XP.xaml +++ b/RetroBar/Themes/System XP.xaml @@ -1,5 +1,34 @@  + + + + + + + + + + \ No newline at end of file diff --git a/RetroBar/Themes/System.xaml b/RetroBar/Themes/System.xaml index 2d8c5c22..e163d02a 100644 --- a/RetroBar/Themes/System.xaml +++ b/RetroBar/Themes/System.xaml @@ -462,6 +462,18 @@ + + + Tahoma \ No newline at end of file diff --git a/RetroBar/Themes/Windows 95-98.xaml b/RetroBar/Themes/Windows 95-98.xaml index c7aaa3a4..1c3f18b3 100644 --- a/RetroBar/Themes/Windows 95-98.xaml +++ b/RetroBar/Themes/Windows 95-98.xaml @@ -20,5 +20,11 @@ + + Microsoft Sans Serif \ No newline at end of file diff --git a/RetroBar/Themes/Windows Me.xaml b/RetroBar/Themes/Windows Me.xaml index 23420984..5318d73d 100644 --- a/RetroBar/Themes/Windows Me.xaml +++ b/RetroBar/Themes/Windows Me.xaml @@ -4,5 +4,18 @@ + + + + Microsoft Sans Serif \ No newline at end of file diff --git a/RetroBar/Themes/Windows Vista Classic.xaml b/RetroBar/Themes/Windows Vista Classic.xaml new file mode 100644 index 00000000..4fbb300a --- /dev/null +++ b/RetroBar/Themes/Windows Vista Classic.xaml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/RetroBar/Themes/Windows XP Classic.xaml b/RetroBar/Themes/Windows XP Classic.xaml index 5acd18f0..b6a62e07 100644 --- a/RetroBar/Themes/Windows XP Classic.xaml +++ b/RetroBar/Themes/Windows XP Classic.xaml @@ -2,37 +2,6 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> + - - - - - - - - - - - - \ No newline at end of file From 30873b7ae477555fcc348c21589a674c5a00a514 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amaro=20Mart=C3=ADnez?= Date: Mon, 21 Mar 2022 20:16:39 -0500 Subject: [PATCH 2/2] Null FocusVisualStyle for System and XP themes --- RetroBar/Themes/System.xaml | 2 ++ RetroBar/Themes/Windows 95-98.xaml | 3 ++- RetroBar/Themes/Windows Me.xaml | 3 ++- RetroBar/Themes/Windows XP Blue.xaml | 2 ++ 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/RetroBar/Themes/System.xaml b/RetroBar/Themes/System.xaml index e163d02a..ac18fe13 100644 --- a/RetroBar/Themes/System.xaml +++ b/RetroBar/Themes/System.xaml @@ -488,6 +488,8 @@ Value="0,0,2,0" /> + diff --git a/RetroBar/Themes/Windows 95-98.xaml b/RetroBar/Themes/Windows 95-98.xaml index 1c3f18b3..a1e8601a 100644 --- a/RetroBar/Themes/Windows 95-98.xaml +++ b/RetroBar/Themes/Windows 95-98.xaml @@ -23,7 +23,8 @@ Microsoft Sans Serif diff --git a/RetroBar/Themes/Windows Me.xaml b/RetroBar/Themes/Windows Me.xaml index 5318d73d..a114eee0 100644 --- a/RetroBar/Themes/Windows Me.xaml +++ b/RetroBar/Themes/Windows Me.xaml @@ -14,7 +14,8 @@ Microsoft Sans Serif diff --git a/RetroBar/Themes/Windows XP Blue.xaml b/RetroBar/Themes/Windows XP Blue.xaml index 9d9e9925..42d1797c 100644 --- a/RetroBar/Themes/Windows XP Blue.xaml +++ b/RetroBar/Themes/Windows XP Blue.xaml @@ -1167,6 +1167,8 @@ Value="99" /> +