修复拖动

This commit is contained in:
wangbin 2021-02-05 21:30:10 +08:00
parent 12b0581d35
commit 4c9a358e07
1 changed files with 4 additions and 1 deletions

View File

@ -77,7 +77,10 @@ namespace JianGongYun.TRTC.Windows
private void Window_MouseDown(object sender, MouseButtonEventArgs e) private void Window_MouseDown(object sender, MouseButtonEventArgs e)
{ {
this.DragMove(); if (e.ChangedButton == MouseButton.Left)
{
this.DragMove();
}
} }
} }
} }