Question Floating Mini Toolbar

quddusaliquddus

Active member
Joined
Nov 20, 2007
Messages
25
Programming Experience
Beginner
Hi :),
How can I make a floating toolbar (like the font toolbar that appears when highlighting text in Word 2007)?

I would like it to appear at a given point when mouse is clicked.

Thanks

Q
 
Add a regular form and set its FormBorderStyle property to one of the ToolWindow options and set ShowInTaskBar property to False, when you create a new instance (or use default instance) set the Owner property or from owner use the AddOwnedForm method. To show use the Show method, set location with Location property, set StartPosition to Manual. Add any content to the form just like regular forms.
 
Back
Top