I've looked all over for this, and tried a ton of methods, but I can not make an image that I assign with blend actually show up using blend. Maybe I'm just doing it wrong.
I can directly edit the XAML file and put in code like:
<MenuItem.Icon>
<Image Source="{DynamicResource MyImage}"/>
</MenuItem.Icon>
this will show the image, but the idea is to not just get the goal done, but use Blend to do it.
Thanks,
Jim
A:
Howdy,
At the moment, the ICON property of the MenuItem is not correctly defined in order for you to be able to add an image as such. The ICON is of type "object" which isnt what I would expect, but it is because of this reason that the property is also disabled.
So to answer your question, you must manually add the XAML as you have.