Sunday, April 26, 2009

c# controls

General types of c# controls are:

User controls are the simplest type of control. They inherit from the System.Windows.Forms.UserControl class. Usually, user controls combine more than one control in a logical unit.

Inherited controls are generally more powerful and flexible. With an inherited control, you can derive a custom class that overrides or adds properties and methods.

Owner-drawn controls generally tend to inherit from a base class like System.Windows.Forms.Control. Owner-drawn controls require the most work and provide the most customizable user interface.

Click here to know more about c# controls.

No comments:

Post a Comment