WPF菜单和标题图像

时间:2013-11-25 07:05:08

标签: wpf menu

我需要在菜单标题中添加图像而不是文本。我写了一段代码,但没有显示图像。

以下是我的xaml部分。

<Menu Height="50" Width="50" VerticalAlignment="Top" IsMainMenu="True">                
            <MenuItem Height="50" Width="50">
                <MenuItem.Header>
                    <Image HorizontalAlignment="Left" Height="50" VerticalAlignment="Top" Width="50" Source="Images/pulsesi_icon_black.PNG"/>
                </MenuItem.Header>

            </MenuItem>

        </Menu>

帮助我摆脱它,我不需要一个Icon。

1 个答案:

答案 0 :(得分:0)

您可以在标题中使用Menuitem.Icon作为图像。

 <MenuItem >
   <MenuItem.Icon>
     <Image Width="20" Height="20" Source="/Resources/Images/Key.jpg" />
   </MenuItem.Icon>
 </MenuItem>