我似乎不能让我的WinUI 3 Button展示形象。
我的项目是一揽子C# WinUI 3式应用。
我的XAML代码(几乎直接来自Microsoft docs):
<Button Style="{StaticResource AccentButtonStyle}" AutomationProperties.Name="Pie">
<StackPanel>
<Image Source="/Assets/settings-gear.png" Height="52"/>
<TextBlock Text="Slices" Foreground="Black" HorizontalAlignment="Center"/>
</StackPanel>
</Button>
而且,我不使用任何C#代码,这样就没有问题了。
Yet my button looks like this:
Here s the .png
file I m using as an icon:
在这里会有什么错误?