From 4c9a358e0757b4008838c99512bae706febf16b2 Mon Sep 17 00:00:00 2001 From: wangbin <737436093@qq.com> Date: Fri, 5 Feb 2021 21:30:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=8B=96=E5=8A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- JianGongYun/TRTC/Windows/LiveWindowRightBottomBlock.xaml.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/JianGongYun/TRTC/Windows/LiveWindowRightBottomBlock.xaml.cs b/JianGongYun/TRTC/Windows/LiveWindowRightBottomBlock.xaml.cs index 33a3b61..f938b9f 100644 --- a/JianGongYun/TRTC/Windows/LiveWindowRightBottomBlock.xaml.cs +++ b/JianGongYun/TRTC/Windows/LiveWindowRightBottomBlock.xaml.cs @@ -77,7 +77,10 @@ namespace JianGongYun.TRTC.Windows private void Window_MouseDown(object sender, MouseButtonEventArgs e) { - this.DragMove(); + if (e.ChangedButton == MouseButton.Left) + { + this.DragMove(); + } } } }