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

Register() public method

Registers the specified view model and the window type. This way, Catel knowns what window to show when a specific view model window is requested.
The is null or whitespace. The is not of the right type.
public Register ( string name, Type windowType, bool throwExceptionIfExists = true ) : void
name string Name of the registered window.
windowType System.Type Type of the window.
throwExceptionIfExists bool /// if set to true, this method will throw an exception when already /// registered. ///
return void
        public void Register(string name, Type windowType, bool throwExceptionIfExists = true)
        {
            throw new MustBeImplementedException();
        }