首页 > 解决方案 > ASP.NET Core MVC 的 BitmapImage 参考

问题描述

我将 C# WPF 应用程序转换为 ASP.Net 核心 MVC。在我的模型中,我有这个:

private BitmapImage picture;

[NotMapped]
public BitmapImage Picture
{
    get { return picture; }
    set
    {
        picture = value;
        NotifyPropertyChange();
        NotifyPropertyChange(nameof(CanViewPicture));
    }
}

BitmapImage不被认可,我找不到对PresentationCore.dllWPF 项目(框架 4.6.1)的等效参考,使用BitmapImage. ( using System.Windows.Media.Imaging;)

请问有人知道吗?

标签: c#asp.netwpfmodel-view-controllerreference

解决方案


推荐阅读