gpt4 book ai didi

c# - WP7 如何更改单击时按钮的图像

转载 作者:行者123 更新时间:2023-12-03 03:46:24 27 4
gpt4 key购买 nike

现在我有一个由六个按钮组成的网格,其中都有不同的图像。我还有另一组六张图像,它们是原始图像,只是带有灰色色调来代表您选择它。当我选择按钮时,如何将按钮的图像更改为新的“所选图像”。

我假设您在方法中执行此操作:

private void button1_click(object sender, RoutedEventArgs e)
{

}

我不知道要在这里放什么。通常我会认为它会是这样的:

button1.image = "image path";

但是,在制作 WP7 应用程序时,您不能使用 image 关键字。关于如何在单击时更改按钮图像有什么建议吗?

最佳答案

写下要更改图像的位置

var brush = new ImageBrush();
brush.ImageSource = new BitmapImage(new Uri("/Images/YourImage.png",
UriKind.Relative));
btn.Background = brush;

关于c# - WP7 如何更改单击时按钮的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5081549/

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