其他分享
首页 > 其他分享> > Wpf使用Behaviors包

Wpf使用Behaviors包

作者:互联网

日常开发中必不可少会用到命令,比如button自带了Command和CommandParameter属性。
让我们没有自带这样的command属性的控件,也可以Command,可以使用Behaviors包。

  1. 安装Microsoft.Xaml.Behaviors.Wpf2. 资源引用
 xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
  1. 让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>

标签:Behaviors,控件,Command,使用,Wpf,自带,属性
来源: https://blog.csdn.net/weixin_43482965/article/details/122260192