views:

17

answers:

1

I need to write a delegate for a worker thread that will handle a wide variety of form controls (buttons, textbox, list...) enable method. I'm thinking they must all be derived from a base class that handles the enable property, but I'm not finding any documentation, nor am I sure how to call the method.

+1  A: 

MSDN is the place to be for this type of info:

System.Windows.Forms.Control.Enabled

bobbymcr