From f9f73b015cfc50f7d78e452491fe3c895173a48a Mon Sep 17 00:00:00 2001 From: CJK_mkp <113243675+CJKmkp@users.noreply.github.com> Date: Sat, 1 Nov 2025 18:31:27 +0800 Subject: [PATCH] =?UTF-8?q?improve:=E5=90=AF=E5=8A=A8=E5=8A=A8=E7=94=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Ink Canvas/Windows/SplashScreen.xaml.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Ink Canvas/Windows/SplashScreen.xaml.cs b/Ink Canvas/Windows/SplashScreen.xaml.cs index 3d68d5ff..506a2b6a 100644 --- a/Ink Canvas/Windows/SplashScreen.xaml.cs +++ b/Ink Canvas/Windows/SplashScreen.xaml.cs @@ -393,10 +393,10 @@ namespace Ink_Canvas.Windows case 1: // 跟随四季 var month = DateTime.Now.Month; - if (month >= 3 && month <= 5) return GetImageNameByStyle(2); // 春季 - if (month >= 6 && month <= 8) return GetImageNameByStyle(3); // 夏季 - if (month >= 9 && month <= 11) return GetImageNameByStyle(4); // 秋季 - return GetImageNameByStyle(5); // 冬季 + if (month >= 2 && month <= 4) return GetImageNameByStyle(2); // 春季 + if (month >= 5 && month <= 7) return GetImageNameByStyle(3); // 夏季 + if (month >= 8 && month <= 10) return GetImageNameByStyle(4); // 秋季 + if (month >= 11 || month <= 1) return GetImageNameByStyle(5); // 冬季 case 2: // 春季 return "ICC Spring.png";