silverlight   发布时间:2022-05-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了SilverLight:在MVVM中实现多事件大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_675_1@

概述

转载于 http://www.cnblogs.com/888h/archive/2010/12/08/1900621.html 在开发Silverlight项目时,如果使用了MVVM架构时,可以实现业务逻辑与界面的完全分离。事件可以通过实现接口ICommand达到效果,比如:Button控件,如果要实现单击效果时,可以通过绑定Command即可。   但是如果需要实现鼠标离开Button事件怎么实

转载于 http://www.cnblogs.com/888h/archive/2010/12/08/1900621.html

在开发Silverlight项目时,如果使用了MVVM架构时,可以实现业务逻辑与界面的完全分离。事件可以通过实现接口ICommand达到效果,比如:Button控件,如果要实现单击效果时,可以通过绑定Command即可。

  但是如果需要实现鼠标离开Button事件怎么实现呢,就这是今天需要讨论的问题=》多事件实现

  项目架构如下图:

  

SilverLight:在MVVM中实现多事件

  我今天主要用Button做实验,来实现Button控件的单击事件和鼠标离开事件。这在非MVVM架构下非常容易实现。但是在MVVM架构,我们需要引用System.Windows.Interactivity.dll,此动态库存放的位置为C:\Program Files\Microsoft SDKs\Expression\Blend 3\Interactivity\Libraries\Silverlight\System.Windows.Interactivity.dll

  关于System.Windows.Interactivity.dll的介绍,请查看http://msdn.microsoft.com/zh-cn/library/system.windows.interactivity(v=Expression.40).aspx

  通过引用动态库,然后在MainPage.xaml中实现Button的两个事件。代码如下:

  MainPage.xaml

<UserControl x:Class="@H_593_48@moreEvent.MainPage"
    xmlns
="http://scheR_861_11845@as.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x
="http://scheR_861_11845@as.microsoft.com/winfx/2006/xaml"
    xmlns:d
="http://scheR_861_11845@as.microsoft.com/expression/blend/2008"
    xmlns:mc
="http://scheR_861_11845@as.openxmlformats.org/markup-compatibility/2006"
    
xmlns:i="http://scheR_861_11845@as.microsoft.com/expression/2010/interactivity"
    xmlns:local
="clr-namespace:MoreEventviewmodel;assembly=MoreEventviewmodel"
    mc:Ignorable
="d"
    d:DesignHeight
="300" d:DesignWidth="400">
    
<UserControl.resources>
        
<local:MoreEventsviewmodel x:Key="k"/>
    
</UserControl.resources>
    
<Grid x:Name="LayoutRoot" BACkground="White" DataContext="{Staticresource k}">
        
<Button Content="测试多事件" Width="70" Height="25">
            
<i:Interaction.triggers>
                
i:Eventtrigger EventNameClick">
                    
i:InvokeCommandAction Command{Binding BtnClick}/>
                
</i:Eventtrigger@H_269_103@mouSELEave{Binding MouSELEavE}>
            
>
        
</Button>
    
</Grid>
</UserControl>

那么viewmodel和ICommand的实现非常简单,两个文件代码如下

  @H_414_345@moreEventsviewmodel.cs

using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace MoreEventviewmodel
{
    
public class MoreEventsviewmodel
    {
        
public MoreEventsviewmodel()
        { 
        
        }

        
private void MouSELEaveEvent(object obj)
        {
            messageBox.Show(
"测试鼠标离开事件");
        }
        
private void BtnClickEvent(object obj)
        {
            messageBox.Show(
"测试单击事件");
        }

        
public ICommand MouSELEave
        {
            
get { return new MoreEventCommand(MouSELEaveEvent); }
        }
        
public ICommand BtnClick
        {
            
get { return new MoreEventCommand(BtnClickEvent); }
        }
    }
}
@H_414_345@moreEventCommand.cs

using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace MoreEventviewmodel
{
    
public class MoreEventCommand:ICommand
    {
        Action
<object> _action;
        
public MoreEventCommand(Action<object> aC)
        {
            _action 
= ac;
        }
        
public bool CanExecute(object parameter)
        {
            
return true;
        }

        
public event EventHandler CanExecuteChanged;

        
public void Execute(object parameter)
        {
            
if (_action != null)
                _action(parameter);
        }
    }
}

通过以上方法即可在MVVM实现多事件.通过这个件事,大家可以触类旁通,实现其它控件的多事件。希望对大家有用。

点击下载源程序

大佬总结

以上是大佬教程为你收集整理的SilverLight:在MVVM中实现多事件全部内容,希望文章能够帮你解决SilverLight:在MVVM中实现多事件所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。