make usercontrol appear in component tray

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

hi,

I am creating a usercontrol in .net that inherits from the panel
control. I want to display it in the component tray -- like the timer
control -- and not on the form.

thanks,
dave
 
Dave said:
I am creating a usercontrol in .net that inherits from the panel
control. I want to display it in the component tray -- like the timer
control -- and not on the form.

Inherit from 'System.ComponentModel.Component' instead of inheriting from
'System.Windows.Forms.UserControl' or 'System.Windows.Forms.Panel'.
 
Back
Top