gpt4 book ai didi

c# - UWP App 不显示图片

转载 作者:行者123 更新时间:2023-11-30 16:42:18 26 4
gpt4 key购买 nike

我在显示图片时遇到了一点问题。

图像位于 Assets 文件夹中。这是我的 XAML 代码:

<Page
x:Class="MyApp.WelcomeScreen"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MyApp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" Width="800" Height="480" RequestedTheme="Dark">

<Grid Background="#C4043F">
<Image Name="MyPicture" Source="/Assets/LOGO.png" HorizontalAlignment="Left" VerticalAlignment="Top"/>
</Grid>
</Page>

我也试过像这样以编程方式设置源,但未显示图像。我也试过放置 try-catch block ,但没有抛出异常。

string imagePath = "ms-appx:///Assets/LOGO.png";
BitmapImage bitmapImage = new BitmapImage(new Uri(imagePath));
MyPicture.Source = bitmapImage;

我已经尝试过此处描述的所有内容: UWP - Image Uri in Application Folder

我错过了什么?

最佳答案

执行此步骤:

1) 构建操作设置为内容

2) 并尝试在图像属性中设置总是**复制到输出目录”。

Screenshot

关于c# - UWP App 不显示图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47095187/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com