/// <summary> /// Create a new TextFormStep /// </summary> public TextFormStep() : base(new TextFormStepUI()) { questions = new List<Question>(); this.lineUpQuestions = true; this.ui = (TextFormStepUI)this.UI; this.ui.StateChangeEvent = (object sender, EventArgs args) => { this.StateUpdated(); }; }
/// <summary> /// Create a new TextFormStep /// </summary> public TextFormStep() : base(new TextFormStepUI()) { questions = new List <Question>(); this.lineUpQuestions = true; this.ui = (TextFormStepUI)this.UI; this.ui.StateChangeEvent = (object sender, EventArgs args) => { this.StateUpdated(); }; }