From 88b72ea294aaabb13233ce087ae98d804bbce360 Mon Sep 17 00:00:00 2001 From: "allen.yan" Date: Fri, 1 Aug 2025 16:50:33 +0800 Subject: [PATCH] =?UTF-8?q?vod=E4=BB=8B=E9=9D=A2=E5=AD=97=E9=AB=94?= =?UTF-8?q?=E5=A4=A7=E5=B0=8F=E8=AA=BF=E6=95=B4=2020->22?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PrimaryFormParts/PrimaryForm.MultiPagePanel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PrimaryFormParts/PrimaryForm.MultiPagePanel.cs b/PrimaryFormParts/PrimaryForm.MultiPagePanel.cs index 0451f30..a1928ef 100644 --- a/PrimaryFormParts/PrimaryForm.MultiPagePanel.cs +++ b/PrimaryFormParts/PrimaryForm.MultiPagePanel.cs @@ -267,7 +267,7 @@ namespace DualScreenDemo artistLabel.AutoSize = true; // 計算文字寬度 - artistLabel.Font = new Font("微軟正黑體", 20, FontStyle.Bold); + artistLabel.Font = new Font("微軟正黑體", 22, FontStyle.Bold); Screen screen = Screen.PrimaryScreen; int screenWidth = screen.Bounds.Width; int screenHeight = screen.Bounds.Height; @@ -385,7 +385,7 @@ namespace DualScreenDemo int textLength = fullText.Length; // 計算文字寬度 - songLabel.Font = new Font("微軟正黑體", 20, FontStyle.Bold); + songLabel.Font = new Font("微軟正黑體", 22, FontStyle.Bold); songLabel.Text = fullText; songLabel.Tag = song; songLabel.AutoSize = false;