日常开发中必不可少会用到命令,比如button自带了Command和CommandParameter属性。
让我们没有自带这样的command属性的控件,也可以Command,可以使用Behaviors包。文章来源地址https://www.toymoban.com/news/detail-507408.html
- 安装Microsoft.Xaml.Behaviors.Wpf2. 资源引用
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
- 让Rectangle控件使用Command
<Rectangle Height="38" Width="110" Fill="Red" >
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseUp">
<i:InvokeCommandAction Command="{Binding ResetCommand}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</Rectangle>
文章来源:https://www.toymoban.com/news/detail-507408.html
到了这里,关于Wpf使用Behaviors包的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!