Inheritance: ContentViewDesignerView
        protected override void AddViews(Dictionary<string, ControlDesignerView> views)
        {
            base.AddViews(views);

            ConditionalLogicView customLogicView = new ConditionalLogicView();
            views.Add(customLogicView.ViewName, customLogicView);
        }
 protected override void AddViews(Dictionary<string, ControlDesignerView> views)
 {
     InstructionalTextView instructionalTextView = new InstructionalTextView();
     views.Add(instructionalTextView.ViewName, instructionalTextView);
     ConditionalLogicView customLogicView = new ConditionalLogicView();
     views.Add(customLogicView.ViewName, customLogicView);
 }