Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > Avalon

Vista - Displaying an icon in a menu item

 
 
Old 11-07-2007   #1 (permalink)
Craig Banks


 
 

Displaying an icon in a menu item

Should be simple as pie. Using Expression Blend 2 September Preview the icon
will display properly in the MenuItem in the design mode but when I run the
application the icon disappears. What am I missing?

Thanks.

Here's the code:

<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Window1"
x:Name="wndMain"
Title="Window1"
Width="640" Height="480">

<Grid x:Name="gridRoot">
<Menu HorizontalAlignment="Stretch" VerticalAlignment="Top"
x:Name="menuMain">
<MenuItem x:Name="mnuiFile" Header="_File">
<MenuItem x:Name="mnuiFile_Close" Header="_Close">
<MenuItem.Icon>
<Image Source="graphics/error.ico" Height="15" Width="15"
Stretch="Fill"/>
</MenuItem.Icon>
</MenuItem>
</MenuItem>
</Menu>
</Grid>
</Window>




My System SpecsSystem Spec
 

Thread Tools


Similar Threads
Thread Forum
Wrong Icon For Start Menu Item Vista General
Start menu now displaying new WLM icon Live Mail
Can't Change Start Menu Item Icon Vista General
Problem displaying games explorer as a menu item Vista Games
Menu Item Icon shows in the IDE but does not show when app is runn .NET General


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46