Non-visual component

  • Thread starter Thread starter Johnny Jörgensen
  • Start date Start date
J

Johnny Jörgensen

Has anybody got a link for a tutorial on how you develop a component that
doesn't have a visual appearance, i.e. a component that - when dropped on a
form - creates an icon in the frame at the bottom of the form designer (like
e.g. Timer, NotifyIcon etc).???

Cheers,
Johnny J.
 
1. Just add new 'component' to the project, write the code and build.
2. ctrl+alt+x
3. Add new item from the project you just created.
4. Add the component .
5. use it (drag the control).

i.e.

public class Timer : 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

Back
Top