ToolBar in vs2005

matraca

Member
Joined
Sep 20, 2006
Messages
14
Programming Experience
Beginner
I'm having a substantial meltdown trying to get my ( Toolbar ) like the picture below on vista...:confused:

Any pointers, would be appreciated.

PS: Not the menuBar, the Toolbar.
 

Attachments

  • menu.png
    menu.png
    6.5 KB · Views: 40
Use the ToolStrip, not ToolBar (.Net 1 control). Add Button item and set the image, it's DisplayStyle is also "Image" by default.
 
add the toolstrip to the form, add the buttons you need, give the button's names so it's easier to use in code. Now add the appropriate image to each button using it's Image property

Also those images don't come with VS2005 either, you'll need to either re-make them or find them on the web (if they're available)

curse you JohnH, I had this one... :p
 
Thanks guys, but toolstrip does not adapt the theme in vista. I mean it doesn't look blue like the one on the pic. :(
 
Back
Top