WPF核心图片仅在设计器中或在运行时显示

时间:2019-11-29 11:13:52

标签: c# .net-core-3.0 wpf-core-3.0

我目前正在将VS Studio 2019和WPF Core与.NET Core 3.0结合使用。

我的解决方案包含2个项目

  1. MyApp
  2. MyApp.AppResources

    a)图片

    • image.png

,我尝试在MyApp Project的MyApp.AppResources项目中存储的按钮中显示image.png。 我发现几乎没有什么解决方案像

//image displayed in designer. disappear after run the app
<Button>
    <Image Source="pack://application:,,,/MyApp.AppResources;component/Images/image.png" Stretch="Fill"/>
</Button> 

//it's work nice when app is runing but control in designer is empty.
<Button>
    <Image Source="pack://siteoforigin:,,,/Images/image.png" Stretch="Fill"/>
</Button>

我正在寻找一个既可以在设计器中运行又可以在运行该应用程序后使用的解决方案。 我尝试更改图像的构建操作,但找不到这两种情况的解决方案。

我看到了许多类似this的页面  和解决方案,但不幸的是没有一个解决我的问题。

0 个答案:

没有答案