Catel.Services.UIVisualizerService.Show C# (CSharp) Method

Show() public method

Shows a window that is registered with the specified view model in a non-modal state.
The is null. /// The is not registered by the /// method first. ///
public Show ( 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. ///
return bool?
        public bool? Show(IViewModel viewModel, EventHandler<UICompletedEventArgs> completedProc = null)
        {
            return ShowAsync(viewModel, completedProc).Result;
        }

Same methods

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