vod介面字體大小調整 20->22

This commit is contained in:
allen.yan 2025-08-01 16:50:33 +08:00
parent 39b7257db1
commit 88b72ea294

View File

@ -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;