private EditQuestionControl CreateControl(Question question)
        {
            List <Answer>       answers = new List <Answer>();
            EditQuestionControl control = ControlsFactory.CreateQuestionControl(question, answers, Width);

            return(control);
        }