UI-less user control

M

Michael Debus

Hi
I want to create a ui-less user control which appears in the designers tray
area (like timer-control) using VS2005.

I figured out how to bulid user-controls with ui, but dont know the best
practice for buliding ui-less controlls.

Somebody con help ?

Thanks
Michael
 
N

Nicholas Paldino [.NET/C# MVP]

Michael,

In order to do this, you want to create a class that implements the
IComponent class in the System.ComponentModel namespace. The Component
class implements this, which you can derive from.

You might also want to check out the MSDN topic on the subject, titled
"Component Authoring", located at (watch for line wrap):

http://msdn2.microsoft.com/en-us/library/5dya64wy.aspx

Hope this helps.
 
B

Bob Powell [MVP]

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top