Catel.Services.UIVisualizerService.ShowDialog C# (CSharp) Метод

ShowDialog() публичный Метод

Shows a window that is registered with the specified view model in a modal state.
The is null. /// The is not registered by the /// method first. ///
public ShowDialog ( IViewModel viewModel, EventHandler completedProc = null ) : bool?
viewModel IViewModel The view model.
completedProc EventHandler /// The callback procedure that will be invoked as soon as the window is closed. This value can /// be null. ///
Результат bool?
        public bool? ShowDialog(IViewModel viewModel, EventHandler<UICompletedEventArgs> completedProc = null)
        {
            return ShowDialogAsync(viewModel, completedProc).Result;
        }

Same methods

UIVisualizerService::ShowDialog ( string name, object data, EventHandler completedProc = null ) : bool?