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