我正在尝试将按钮的背景图像更改为其他图像,但遇到了一些错误。这是我在我的 xaml 上的代码:
<Button x:Name="Button1" Width="200" Height="200" Content="Button1" Margin="0,0,0,400">
<Button.Background>
<ImageBrush **ImageSource ="Images/AERO.png"** ></ImageBrush>
</Button.Background>
</Button>
和我的cs:
private void Button1_Click_1(object sender, RoutedEventArgs e)
{
var brush = new ImageBrush();
brush.ImageSource = new BitmapImage(new Uri("Images/AERO.png"));
Button1.Background = brush;
}
我在我的 xaml 上遇到的错误是“文件 'Images\logo.png' 不是项目的一部分,或者它的 'Build Action' 属性未设置为 'Resource'。谁能帮我解释一下,谢谢