Creating an invisible control (like timer component ) and add it to the toolbox . How ?

  • Thread starter Thread starter Sagaert Johan
  • Start date Start date
S

Sagaert Johan

Hi

Can someone point me to a resource or explain in brief how te create a
component that i can add to the toolbox tab, but that is not positioned on
the form . (like the Timer component )



Johan
 
Johan,

You want to create a class that derives from Component. This will allow
you to work with it in the designer, but doesn't necessarily have a visible
component to it (like a control).

Hope this helps.
 
Thanks

That answered my question.

Nicholas Paldino said:
Johan,

You want to create a class that derives from Component. This will allow
you to work with it in the designer, but doesn't necessarily have a visible
component to it (like a control).

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)


Sagaert Johan said:
Hi

Can someone point me to a resource or explain in brief how te create a
component that i can add to the toolbox tab, but that is not positioned on
the form . (like the Timer component )



Johan
 
Back
Top