From 7eb8f395a0ced636da3a5ad42b7d9a89faae0c29 Mon Sep 17 00:00:00 2001 From: jasonchenwork Date: Tue, 24 Jun 2025 10:46:31 +0800 Subject: [PATCH] =?UTF-8?q?=E9=BB=9E=E6=AD=8C=E6=B5=81=E7=A8=8B=E5=8D=A1?= =?UTF-8?q?=E9=A0=93=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PrimaryFormParts/PrimaryForm.VodScreen.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PrimaryFormParts/PrimaryForm.VodScreen.cs b/PrimaryFormParts/PrimaryForm.VodScreen.cs index 397d448..44b80b5 100644 --- a/PrimaryFormParts/PrimaryForm.VodScreen.cs +++ b/PrimaryFormParts/PrimaryForm.VodScreen.cs @@ -116,9 +116,10 @@ namespace DualScreenDemo } - private void VodButton_Click(object sender, EventArgs e) + private async void VodButton_Click(object sender, EventArgs e) { SetVodScreenPictureBoxAndButtonsVisibility(false); + await Task.Delay(1000); OverlayForm.MainForm.AddSongToPlaylist(currentSelectedSong); }