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
Larry Smith - 30 Oct 2007 19:14 GMT
> 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).
Nicholas Paldino [.NET/C# MVP] - 30 Oct 2007 19:18 GMT
Ryan,
You will have to implement the IComponent interface. There is a base
implementation in the System.ComponentModel namespace named Component.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> Does any one know how to create a control(like the timer) that when
> dragged
[quoted text clipped - 3 lines]
> Thanks
> Ryan