From e269c5b54c8f8c42d68fc4d0bfa5512d34184b0b Mon Sep 17 00:00:00 2001 From: jasonchenwork Date: Fri, 2 May 2025 14:06:12 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9D=9C=E9=9F=B3=E6=9A=AB=E5=81=9C=E6=A8=99?= =?UTF-8?q?=E7=B1=A4=E5=AD=97=E6=A8=A3=E7=B8=AE=E5=B0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OverlayFormObj/OverlayForm.Labels.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/OverlayFormObj/OverlayForm.Labels.cs b/OverlayFormObj/OverlayForm.Labels.cs index 4723fe6..6e85cfb 100644 --- a/OverlayFormObj/OverlayForm.Labels.cs +++ b/OverlayFormObj/OverlayForm.Labels.cs @@ -262,12 +262,12 @@ namespace OverlayFormObj this.Controls.Add(displayLabel); } } - + // 播放暫停,字體大小 private void InitializePauseLabel() { pauseLabel = new Label(); pauseLabel.AutoSize = false; - pauseLabel.Font = new Font("Microsoft JhengHei", 125, FontStyle.Bold); + pauseLabel.Font = new Font("Microsoft JhengHei", 75, FontStyle.Bold); pauseLabel.BackColor = Color.Transparent; pauseLabel.TextAlign = ContentAlignment.MiddleCenter; pauseLabel.Size = new Size(1080, 200); @@ -311,13 +311,13 @@ namespace OverlayFormObj this.Controls.Add(pauseLabel); } - + // 播放靜音,字體大小 private void InitializeMuteLabel() { muteLabel = new Label(); muteLabel.AutoSize = false; muteLabel.Visible = false; - muteLabel.Font = new Font("Microsoft JhengHei", 125, FontStyle.Bold); + muteLabel.Font = new Font("Microsoft JhengHei", 75, FontStyle.Bold); muteLabel.BackColor = Color.Transparent; muteLabel.TextAlign = ContentAlignment.MiddleCenter; muteLabel.Size = new Size(1080, 200);