Exemplo n.º 1
0
 public LabelledBackButton(string Label) : base(new BackButton(), Label)
 {
     if (ControlView.GetType() == typeof(BackButton))
     {
         Control = ControlView as BackButton;
     }
 }
Exemplo n.º 2
0
 public LabelledCheckbox(string Label) : base(new Checkbox(), Label)
 {
     if (ControlView.GetType() == typeof(Checkbox))
     {
         Control = ControlView as Checkbox;
     }
 }