zoukankan      html  css  js  c++  java
  • MVVM模式下,View触发任意事件在ViewModel中响应

       由于使用的是prism框架,所有需要首先引入Prism4\Lib\Desktop下的

    Microsoft.Expression.Interactions.dll

    System.Windows.Interactivity.dll

    XAML文件

    xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"

    绑定事件

    <Button Content="MouseLeave事?件t" Width="70" Height="25">

                <i:Interaction.Triggers>

                    <i:EventTrigger EventName="MouseLeave"  >

                        <i:InvokeCommandAction Command="{Binding MouseLeave}"

                                               CommandParameter="123"/>

                    </i:EventTrigger>

                </i:Interaction.Triggers>

            </Button>

    ViewModel文件

         public ICommand MouseLeave

            {

                get

                {

                    return new DelegateCommand<string>(x =>

                    {

                        MessageBox.Show("MouseLeave" + x);

                    });

                }

            }

    注意事项:

    Microsoft.Expression.Interactions.dll

    System.Windows.Interactivity.dll

    prismC:\Program Files\Microsoft SDKs\Expression\Blend 3\Interactivity\Libraries\WPF都有,并且WPFSilverligter都有这些文件(不能通用),如果引用的是blend中的dll,则需要通过xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"方式引用,但是绑定事件的方式和从prism引用的dll不同,这些问题纠结了我半天,所以建议dllprim文件夹下引用

    Dllhttp://compositewpf.codeplex.com/下载

    MVVM模式下,View触发任意事件在ViewModel中响应

  • 相关阅读:
    WeChat小程序开发(五、前端总结)
    前端实现复制到剪贴板
    vue的自定义指令含大写字母会失效
    如何把网页变成黑白
    原生JS offsetX和offsetY引起抖动
    jQuery中prop方法和attr方法区别
    Js for循环中的闭包 & let和var的混用对比
    html和body标签默认高度为0带来的影响
    JS字符串数组降维
    CSS浮动流脱标的字围现象
  • 原文地址:https://www.cnblogs.com/gossip/p/2096699.html
Copyright © 2011-2022 走看看