s

wpf equivalent of doevents edit button Edit

author
Pooran Prasad Rajanna | calendar 09 September 2020 | 2430

private void DoEvents()
{
  Application.Current.Dispatcher.Invoke(DispatcherPriority.Background, new ThreadStart(delegate { }));
}

Simple isn't it ??