vote up 0 vote down star

I have a ToolStripMenuItem in my program. I also have an icon on my computer, for simplicities sake lets say its path is

c:\myicon.ico

How can i make the ToolStripMenuItem use this icon?

flag

2 Answers

vote up 1 vote down check
SomeToolStripMenuItem.Image = Image.FromFile("c:\myicon.ico")
link|flag
Just what i needed thx – Steve Oct 8 at 10:27
vote up 0 vote down

ImageSource="c:\myicon.ico"

link|flag
the ToolStripMenuItem doesnt have an ImageSource property :S – Steve Oct 8 at 10:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.