you should use some attributes for your control
look in MSDN for CategoryAttribute and DescriptionAttribute
Code:
private Font _font;
[Category("Appearance")]
[Description("The Font used to diplayed the text")]
public Font TheFont
{
get{return _font;}
set{_font=value;}
}
_____________
Mehdi.
software student.