图像按钮更改源属性

发布于 2024-11-03 06:09:21 字数 345 浏览 0 评论 0原文

我正在开发一个 Windows Phone 应用程序。

我有一个自定义按钮,里面有图像。这是它的 XAML 代码:

<ControlTemplate x:Key="ImageButton" TargetType="Button">
    <Grid>
        <Image Margin="45,8,35,8" Source="Images/Delete.png"/>
    </Grid>
</ControlTemplate>

How can I change Image Source property以编程方式?

I'm developing a Windows Phone app.

I have a custom button with an image inside. This is its XAML code:

<ControlTemplate x:Key="ImageButton" TargetType="Button">
    <Grid>
        <Image Margin="45,8,35,8" Source="Images/Delete.png"/>
    </Grid>
</ControlTemplate>

How can I change Image Source property programmatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一袭白衣梦中忆 2024-11-10 06:09:21

要更改图像的来源,您需要为您的资源创建一个新的位图并将其设置为来源

BitmapImage myBitmapImage = new BitmapImage(new Uri("/Images/foo.png", UriKind.Relative));

imageButton.Source = myBitmapImage;

但是我想您希望有一个按钮可以在单击时更改其背景。您需要重新定义按钮的视觉状态。以下是一个示例:

Windows Phone 7 (WP7 ) 单击时更改按钮的背景颜色

To change the source of an image you need to make a new bitmap of your asset and set it as a souce

BitmapImage myBitmapImage = new BitmapImage(new Uri("/Images/foo.png", UriKind.Relative));

imageButton.Source = myBitmapImage;

but I guess you would like to have a button that change its background if is clicked. You need to redefine Visual States of the button. Here is an example:

Windows Phone 7 (WP7) Change a button's background color on click

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文