Inheritance: System.Windows.Forms.UserControl
 public override Control CreateControl(IRuleControlOwner owner, Control.ControlCollection collection, System.Drawing.Point pos)
 {
     InTemplateRuleControl rc = new InTemplateRuleControl(owner) {Location = pos};
     rc.RestoreFromRule(this);
     DisposeControl();
     ruleControl_ = rc;
     collection.Add(rc);
     return rc;
 }
Exemple #2
0
        public override Control CreateControl(IRuleControlOwner owner, Control.ControlCollection collection, System.Drawing.Point pos)
        {
            InTemplateRuleControl rc = new InTemplateRuleControl(owner);

            rc.Location = pos;
            rc.RestoreFromRule(this);
            DisposeControl();
            ruleControl_ = rc;
            collection.Add(rc);
            return(rc);
        }
 public override void ForgetControl()
 {
     ruleControl_ = null;
 }
 public override void ForgetControl()
 {
     ruleControl_ = null;
 }