System.Windows.Forms.Control.DoDefaultAction C# (CSharp) Method

DoDefaultAction() private method

private DoDefaultAction ( ) : void
return void
		internal virtual void DoDefaultAction() {
			// Only here to be overriden by our actual controls; this is needed by the accessibility class
		}

Usage Example

Example #1
0
 // Perform the default action associated with this object.
 public virtual void DoDefaultAction()
 {
     if (control != null)
     {
         control.DoDefaultAction();
     }
 }
All Usage Examples Of System.Windows.Forms.Control::DoDefaultAction
Control