WPF在代码中设置MenuItem.Icon

时间:2008-08-27 14:16:08

标签: c# wpf icons menuitem

我有一个带有png的图像文件夹。我想将一个MenuItem的图标设置为该png。我如何在程序代码中写这个?

8 个答案:

答案 0 :(得分:55)

menutItem.Icon = new System.Windows.Controls.Image 
       { 
           Source = new BitmapImage(new Uri("images/sample.png", UriKind.Relative)) 
       };

答案 1 :(得分:21)

<MenuItem>
  <MenuItem.Icon>
    <Image>
      <Image.Source>
        <BitmapImage UriSource="/your_assembly;component/your_path_here/Image.png" />
      </Image.Source>
    </Image>
  </MenuItem.Icon>
</MenuItem>

只需确保您的图片也包含在项目文件中并标记为资源,您就可以了:)

答案 2 :(得分:15)

Arcturus的答案很好,因为这意味着您在项目中拥有图像文件而不是独立文件夹。

所以,在代码变成......

menutItem.Icon = new Image
        {
        Source = new BitmapImage(new Uri("pack://application:,,,/your_assembly;component/yourpath/Image.png"))
        }

答案 3 :(得分:1)

这就是我使用它的方式(这种方式它不需要构建到程序集中):

MenuItem item = new MenuItem();
string imagePath = "D:\\Images\\Icon.png");
Image icon = new Image();
icon.Source= new BitmapImage(new Uri(imagePath, UriKind.Absolute));
item.Icon = icon;

答案 4 :(得分:1)

这有点短:D

<MenuItem Header="Example">
   <MenuItem.Icon>
      <Image Source="pack://siteoforigin:,,,/Resources/Example.png"/>
   </MenuItem.Icon>
</MenuItem>

答案 5 :(得分:0)

对于那些使用vb.net的人来说,要做到这一点,你需要使用这个: menuItem.Icon = New Image() With {.Source = New BitmapImage(New Uri("pack://application:,,,/your_assembly;component/yourpath/Image.png"))}

答案 6 :(得分:0)

这对我有用

<MenuItem Header="delete   ctrl-d" Click="cmiDelete_Click">
    <MenuItem.Icon>
        <Image>
            <Image.Source>
                <ImageSource>Resources/Images/delete.png</ImageSource>
            </Image.Source>
        </Image>
    </MenuItem.Icon>
</MenuItem>

答案 7 :(得分:-5)

您还可以使用Visual Studio插入图标。这是最简单的方法

  • 右键单击解决方案资源管理器中的项目
  • 选择了属性
  • 确保您在申请页面中。
  • @ recources你看:Icon和Manifest
  • @ Icon:点击浏览并选择你的图标。

问题解决了。