gpt4 book ai didi

WPF 图像命令绑定(bind)

转载 作者:行者123 更新时间:2023-12-03 13:05:19 25 4
gpt4 key购买 nike

我正在将一个 WPF 应用程序放在一起,其中我有一个图像控件,我想从我的 View 模型中绑定(bind)一个自定义命令对象,该对象将在单击图像时执行。我已经从我的 View 模型中公开了命令对象,只需将其绑定(bind)到图像控件。

是否可以将此命令对象绑定(bind)到图像控件?如果是这样,任何建议将不胜感激。

最佳答案

重置按钮的控制模板并在控制模板中使用图像..

 <Button Width="100" Height="100" Command="{Binding SampleCommand}">
<Button.Template>
<ControlTemplate TargetType="{x:Type Button}">
<Image Stretch="Uniform" Source="Images/tick.png"></Image>
</ControlTemplate>
</Button.Template>
</Button>

关于WPF 图像命令绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3885007/

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