how to create a floating toolbar in c#?
C#
2
Posts
2
Posters
0
Views
1
Watching
-
how create a toolbar that is active when the main window is active then deactive when the main is so too? p.s. i want it will be conform to windows xp and vista. tnx
Hrm... I've never done anything like this, but you might look up MDI... or Controled Single Document Interface. Otherwise, you can have one Form be your parent Form... Once that form loads, have another Form pop up, with it's parent the main form. Both methods should be compatable with XP and Vista... You can set all properties on the parent... Or you can have the parent subscribe to a custom event fired by the child...