WPF 绑定Command
2018-06-22 07:29:38来源:未知 阅读 ()
WPF中,我们使用MVVM,在ViewModel中定义Command和其业务逻辑,界面绑定Command。
那么是不是所有的事件都可以定义Command呢,然后将业务全部放在ViewModel中呢?
界面CommandBindings
如果只是交互的处理,可以直接定义RoutedCommand即可
1. 添加Command
1 <RoutedCommand x:Key="SelectAllCommand"/>
2. 添加命令委托处理
1 <UserControl.CommandBindings> 2 <CommandBinding Command="{StaticResource SelectAllCommand}" Executed="SelectAllExecuted"/> 3 </UserControl.CommandBindings>
3. 绑定Command
1 <CheckBox Name="AllSelectCheckBox" Command="{StaticResource SelectAllCommand}" />
InvokeCommandAction
控件不只有Button,还有其它很多TextBox/ListBox等控件甚至自定义控件的KeyDown/MouseUp/LostFocus等事件以及自定义的事件。
我们都知道Buttton有Command属性(对应Click事件),直接绑定相应的Command就可以了,那么除Button.Click事件之外的事件怎么绑定?
CommandAction是Trigger与Command的中间转换器
通过InvokeCommandAction 的使用,WPF任意事件都可以绑定Command,将业务逻辑放在ViewModel中。如:
自定义Command,请参考https://www.cnblogs.com/kybs0/p/7523654.html
1 <TextBlock>
2 <i:Interaction.Triggers>
3 <i:EventTrigger EventName="MouseLeftButtonDown">
4 <i:InvokeCommandAction Command="{Binding MouseLeftButtonDownCommand}"/>
5 </i:EventTrigger>
6 </i:Interaction.Triggers>
7 </TextBlock>
快捷键绑定
通过Key值,绑定ViewModel中相应命令
1 <UserControl.InputBindings> 2 <KeyBinding Key="Delete" Command="{Binding MenuDeleteCommand}" /> 3 </UserControl.InputBindings>
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- ASP.NET MVC中jQuery与angularjs混合应用传参并绑定数据 2020-03-29
- WPF实现带全选复选框的列表控件 2020-03-29
- WPF实现简单的跑马灯效果 2020-03-23
- WPF实现ScrollViewer滚动到指定控件处 2020-03-19
- WPF实现定时刷新UI界面功能 2020-03-14
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash