教你WPF中button按鈕同時點擊多次觸發click的執行個體方法

來源:互聯網
上載者:User
這篇文章主要為大家詳細介紹了WPF中button按鈕同時點擊多次觸發click的解決方案,具有一定的參考價值,感興趣的小夥伴們可以參考一下

解決WPF中button按鈕同時點擊多次觸發click的方法,供大家參考,具體內容如下

  DateTime lastClick = DateTime.Now;  object obj = new object();  int i = 0;  private void Button_Click(object sender, RoutedEventArgs e)  {   this.IsEnabled = false;     var t = (DateTime.Now - lastClick).TotalMilliseconds;   i++;   lastClick = DateTime.Now;   System.Diagnostics.Debug.Print(t + "," + i + ";" + DateTime.Now);   Thread.Sleep(2000);      this.IsEnabled = true;  }

以上代碼並沒法解決使用者點擊兩次按鈕觸發兩次的問題,因為ui線程是單線程的,所以這個這樣會導致使用者連續點擊兩次,會兩秒後又調用Button_Click一次,輸出如下:

1207.069,1;2017年4月19日 13:58:22
2055.1176,2;2017年4月19日 13:58:24

所以要在this.IsEnabled = false;後面強制介面重新整理,代碼如下:

private void Button_Click(object sender, RoutedEventArgs e)  {   this.IsEnabled = false;   DispatcherHelper.DoEvents();   var t = (DateTime.Now - lastClick).TotalMilliseconds;   i++;   lastClick = DateTime.Now;   System.Diagnostics.Debug.Print(t + "," + i + ";" + DateTime.Now);   Thread.Sleep(2000);      this.IsEnabled = true;  }  public static class DispatcherHelper  {   [SecurityPermissionAttribute(SecurityAction.Demand, Flags = SecurityPermissionFlag.UnmanagedCode)]   public static void DoEvents()   {    DispatcherFrame frame = new DispatcherFrame();    Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.Background, new DispatcherOperationCallback(ExitFrames), frame);    try { Dispatcher.PushFrame(frame); }    catch (InvalidOperationException) { }   }   private static object ExitFrames(object frame)   {    ((DispatcherFrame)frame).Continue = false;    return null;   }  }

DispatcherHelper.DoEvents();這個方法會強制介面重新整理,問題就解決了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.