我想要做的事情很简单,但我很难让它发挥作用。我在同一行看到了一些帖子,但我仍有疑问。
我有一个名为mnuA的MenuItem对象。我想要的只是在C#中以编程方式设置icon属性。我试过以下
a)mnuA.Icon = new BitmapImage{UriSource = new Uri(@"c:\icons\A.png")};
结果:我没有显示实际图标,而是获得了班级名称(System.Windows.Media.Imaging.BitmapImage
)
b)mnuA.Icon = new BitmapImage(new Uri(@"c:\icons\A.png"));
结果:我没有显示实际图标,而是获得图像的路径(file:///c:/icons/A.png
)
我做错了什么?我真的需要一个像这样简单的转换器类吗?
答案 0 :(得分:6)
试试这个:
Image img = new Image();
img.Source = new BitmapImage(new Uri(@"c:\icons\A.png"));
mnuA.Icon = img;
答案 1 :(得分:0)
可能是一个长镜头,但尝试类似的事情:
Uri u = new Uri(...); mnuA.Icon = new 的BitmapImage(U);
它看起来似乎是你的图标被转换为字符串。