星火微课系统客户端
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

WpfHelper.cs 559B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Windows.Threading;
  3. namespace ComeCapture.Helpers
  4. {
  5. public static class WpfHelper
  6. {
  7. public static Dispatcher MainDispatcher { get; set; }
  8. public static void SafeRun(this Action action)
  9. {
  10. if (MainDispatcher == null)
  11. {
  12. action();
  13. return;
  14. }
  15. if (!MainDispatcher.CheckAccess())
  16. {
  17. MainDispatcher.BeginInvoke(action);
  18. return;
  19. }
  20. action();
  21. }
  22. }
  23. }