/// <summary>Register the mapping between the prompt model and the dialog to show. /// </summary> /// <param name="registrar">The view registrar.</param> protected override void RegisterViews(ViewRegistrar registrar) { base.RegisterViews(registrar); // This tells the framework to show the HttpDataSourceDialog when // the system is asked to prompt on the HttpDataSourcePromptModel. registrar.Register(typeof(Form), typeof(LmiDataSourcePromptModel), typeof(LmiDataSourceDialog)); }
/// <summary>Register the mapping between the prompt model and the dialog to show. /// </summary> /// <param name="registrar">The view registrar.</param> protected override void RegisterViews(ViewRegistrar registrar) { //System.Diagnostics.Debugger.Launch(); base.RegisterViews(registrar); // This tells the framework to show the HttpDataSourceDialog when // the system is asked to prompt on the HttpDataSourcePromptModel. registrar.Register(typeof(PromptControl), typeof(LmiDataSourcePromptModel), typeof(MyCustomPanelView)); }
protected override void RegisterViews(ViewRegistrar registrar) { base.RegisterViews(registrar); try { registrar.Register(typeof(Form), typeof(JSVisualizationModel), typeof(JSVisulizationPropertyDialog)); } catch (Exception) { ; //throw; } }
protected override void RegisterViews(ViewRegistrar registrar) { base.RegisterViews(registrar); try { registrar.Register(typeof(Form), typeof(JSVisualizationModel), typeof(JSVisualizationPropertyDialog)); } catch (Exception) { //Ignore this if it is already registered //throw; } }
protected override void RegisterViews(ViewRegistrar registrar) { base.RegisterViews(registrar); registrar.Register(typeof(Form), typeof(TestToolSettings), typeof(ToolSettingsDialog)); }
protected override void RegisterViews(ViewRegistrar registrar) { base.RegisterViews(registrar); registrar.Register(typeof(Form), typeof(Models.PDRenderSettings), typeof(Views.PDRendererSettingsDialog)); }
protected override void RegisterViews(ViewRegistrar registrar) { base.RegisterViews(registrar); registrar.Register(typeof(CustomVisualView), typeof(AttivioSearchVisual), typeof(AttivioSearchVisualView)); }