public abstract override void ControlCheckBox(ControlCheckBox action);
 public abstract override void ControlCheckBox(ControlCheckBox action);
Exemple #3
0
 public void AddControl(ControlCheckBox action)
 {
     AddControl(new CheckBox
     {
         Text = _runner.ParseTemplate(action.Text),
         Checked = true,
         Tag = action,
         FlatStyle = FlatStyle.System,
         Margin = new Padding(6, 5, 3, 5),
         AutoSize = true,
         AutoEllipsis = true
     });
 }
Exemple #4
0
 public virtual void ControlCheckBox(ControlCheckBox action)
 {
     VisitChildren(action);
 }
Exemple #5
0
        public override void ControlCheckBox(ControlCheckBox action)
        {
            VerifyAction(typeof(ControlCheckBox));

            base.ControlCheckBox(action);
        }
 public virtual void ControlCheckBox(ControlCheckBox action)
 {
     VisitChildren(action);
 }
        public override void ControlCheckBox(ControlCheckBox action)
        {
            VerifyAction(typeof(ControlCheckBox));

            base.ControlCheckBox(action);
        }
 public override void ControlCheckBox(ControlCheckBox action)
 {
     _form.AddControlToPage(action);
 }