Application.cs 269 B

123456789101112
  1. using System.Windows.Threading;
  2. namespace System.Windows.Forms
  3. {
  4. public static class Application
  5. {
  6. public static void DoEvents()
  7. {
  8. Dispatcher.CurrentDispatcher.Invoke(() => { }, DispatcherPriority.ContextIdle);
  9. }
  10. }
  11. }