public static Task <bool?> ShowDialogAsync(IDialogModel model) { return(GO.Dispatch(delegate { var dialog = new GenericDialog { }; dialog.NotifyWindowManager(); return dialog.ShowDialogWithModelAsync(model); })); }
public UICollection() { View = GO.Dispatch(delegate { return(CollectionViewSource.GetDefaultView(this)); }); }