Exemplo n.º 1
0
 /// <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();
     };
 }
Exemplo n.º 2
0
 /// <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();
     };
 }