예제 #1
0
        public CreatorUIControl(string path, List <Question> questions)
        {
            InitializeComponent();
            controller = new CreatorController(this, path, questions);

            controller.Init();

            UIWindowTitle.SetSubtitle(path);
        }
예제 #2
0
        public CreatorUIControl()
        {
            InitializeComponent();
            controller = new CreatorController(this);

            controller.Init();

            UIWindowTitle.SetSubtitle("New ");
        }