我正在开发一个 Windows 应用商店应用程序,几个月前我已经这样做了,但突然之间,在这个新应用程序中,我无法(正确地)在按钮内显示图像。
<Button x:Name="ShowView" Grid.Column="1" Width="32" Height="32" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,61,20,33">
<StackPanel HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Image x:Name="ShowViewImage" Source="/Assets/ShowView.png" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" />
</StackPanel>
</Button>
正如您所看到的,代码很好(除非事情发生了巨大变化,但看起来并没有)。那么给了什么?这是迄今为止我在 XAML 文件中唯一的代码,除了 VS 生成的默认代码,因为它是一个新项目。
PS 我也试过取出 StackPanel 并只使用 Button > Image,但这会产生相同的结果。
因此,当 BUtton 在运行时显示时,我只能看到一个非常小的 2 像素图像(但图像实际上是32x32pixels。如何正确显示“图像按钮”?