Non visible custom controls

G

Guest

Does any one know how to create a control(like the timer) that when dragged
to a form doesn't show up on the form, but only on the bar in the design
window below the form?

Thanks
Ryan
 
L

Larry Smith

Does any one know how to create a control(like the timer) that when
dragged
to a form doesn't show up on the form, but only on the bar in the design
window below the form?

Just derive your object from "System.ComponentModel.Component". The simplest
way is to right-click your project or some project folder in Solution
Explorer, then click "Add" followed by "Component...". You can subsequently
add this to the "Toolbox" and drag it onto any design surface (usually a
form). It will then appear in the design tray (the "bar" you referred to).
 
N

Nicholas Paldino [.NET/C# MVP]

Ryan,

You will have to implement the IComponent interface. There is a base
implementation in the System.ComponentModel namespace named Component.
 

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