From 749c9353b5eab6dc50ddaaa8dd4df008a0f4be11 Mon Sep 17 00:00:00 2001 From: Laurence Luo Date: Mon, 14 Aug 2023 16:15:15 +0800 Subject: [PATCH] Update FormShow.cs --- MikuWeather_CS/FormShow.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MikuWeather_CS/FormShow.cs b/MikuWeather_CS/FormShow.cs index 12bec5e..d8634ef 100644 --- a/MikuWeather_CS/FormShow.cs +++ b/MikuWeather_CS/FormShow.cs @@ -19,13 +19,13 @@ public FormShow() { private void FormShow_Load(object sender, EventArgs e) { AddPrivateFont(); - lnkTodayWeather.Font = new Font(PFCAwe.Families[0], 12, System.Drawing.FontStyle.Bold); + lnkTodayWeather.Font = new Font(PFCAwe.Families[0], 12, FontStyle.Bold); lnkTodayWeather.UseCompatibleTextRendering = true; - lnkTodayTemp.Font = new Font(PFCAwe.Families[0], 12, System.Drawing.FontStyle.Bold); + lnkTodayTemp.Font = new Font(PFCAwe.Families[0], 12, FontStyle.Bold); lnkTodayTemp.UseCompatibleTextRendering = true; - lnkTomorrowWeather.Font = new Font(PFCAwe.Families[0], 12, System.Drawing.FontStyle.Bold); + lnkTomorrowWeather.Font = new Font(PFCAwe.Families[0], 12, FontStyle.Bold); lnkTomorrowWeather.UseCompatibleTextRendering = true; - lnkTomorrowTemp.Font = new Font(PFCAwe.Families[0], 12, System.Drawing.FontStyle.Bold); + lnkTomorrowTemp.Font = new Font(PFCAwe.Families[0], 12, FontStyle.Bold); lnkTomorrowTemp.UseCompatibleTextRendering = true; }