I want to update the search screens after adding new data from other screens. I tried to do
foreach (var parentScreen in this.Application.ActiveScreens.OfType<ScreenType>()) { //Invoke the refresh parentScreen.Details.Dispatcher.BeginInvoke(() => parentScreen.Details.Commands.Refresh.Execute()); }
but it does not work in beta 2
source share