我需要在应用程序的主页上显示我们的应用程序徽标,但无论我做什么,都没有显示。
<Image
Source="{StaticResource 'MystronicsWinder.Resources.AppIcon.appicon.svg'}"
Margin="20"
Aspect="AspectFill"
IsVisible="true"/>
- 更新**:
<Image
Source="{StaticResource 'MystronicsWinder.Resources.AppIcon.appicon.png'}"
Margin="20"
Aspect="AspectFill"
WidthRequest="300"
HeightRequest="300"
IsVisible="true"/>
我有同样的问题与我的png标志!
1条答案
按热度按时间ioekq8ef1#
为了显示SVG图像,我使用我的库,您可以在这里找到:https://github.com/FreakyAli/Maui.FreakyControls
它使用Skia来显示SVG图像:https://github.com/FreakyAli/Maui.FreakyControls/wiki/FreakySvgImageView
要使用的所有SVG图像的生成操作都需要设置为EmbeddedResource。
祝你好运!