且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

不显示以编程方式添加的菜单项图标

更新时间:2023-10-03 09:42:04

与XAML相比,有必要指定完整的

In contrast to XAML, it is necessary to specify the full Resource File Pack URI in code behind:

mDiag.Icon = new System.Windows.Controls.Image
{
    Source = new BitmapImage(new Uri(
        "pack://application:,,,/assets/checked-32-context.png"))
};

还请注意,这不是相对URI.

Note also that this is not a relative URI.