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

            controller.Init();

            UIWindowTitle.SetSubtitle(path);
        }
        public CreatorUIControl()
        {
            InitializeComponent();
            controller = new CreatorController(this);

            controller.Init();

            UIWindowTitle.SetSubtitle("New ");
        }