DoDefaultAction() private method

private DoDefaultAction ( ) : void
return void
Example #1
0
 // Perform the default action associated with this object.
 public virtual void DoDefaultAction()
 {
     if (control != null)
     {
         control.DoDefaultAction();
     }
 }
Example #2
0
 public virtual void DoDefaultAction()
 {
     if (owner != null)
     {
         owner.DoDefaultAction();
     }
 }