public abstract override void ControlLabel(ControlLabel action);
 public abstract override void ControlLabel(ControlLabel action);
Example #3
0
 public void AddControl(ControlLabel action)
 {
     AddControl(new Label
     {
         AutoSize = true,
         Text = _runner.ParseTemplate(action.Value),
         Margin = new Padding(3, 5, 3, 5)
     });
 }
Example #4
0
 public virtual void ControlLabel(ControlLabel action)
 {
 }
Example #5
0
        public override void ControlLabel(ControlLabel action)
        {
            VerifyAction(typeof(ControlLabel));

            base.ControlLabel(action);
        }
Example #6
0
 public virtual void ControlLabel(ControlLabel action)
 {
 }
Example #7
0
        public override void ControlLabel(ControlLabel action)
        {
            VerifyAction(typeof(ControlLabel));

            base.ControlLabel(action);
        }
Example #8
0
 public override void ControlLabel(ControlLabel action)
 {
     _form.AddControlToPage(action);
 }