Exemplo n.º 1
0
        /// <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));
        }
Exemplo n.º 2
0
        /// <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));
        }
Exemplo n.º 3
0
 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;
     }
 }
Exemplo n.º 5
0
        protected override void RegisterViews(ViewRegistrar registrar)
        {
            base.RegisterViews(registrar);

            registrar.Register(typeof(Form), typeof(TestToolSettings), typeof(ToolSettingsDialog));
        }
Exemplo n.º 6
0
        protected override void RegisterViews(ViewRegistrar registrar)
        {
            base.RegisterViews(registrar);

            registrar.Register(typeof(Form), typeof(Models.PDRenderSettings), typeof(Views.PDRendererSettingsDialog));
        }
Exemplo n.º 7
0
        protected override void RegisterViews(ViewRegistrar registrar)
        {
            base.RegisterViews(registrar);

            registrar.Register(typeof(CustomVisualView), typeof(AttivioSearchVisual), typeof(AttivioSearchVisualView));
        }