赞
踩
如果采用 MVVM 模式来设计 WPF 应用,通常,我们可以使用行为(如 InvokeCommandAction)并结合命令来实现对该事件的响应;
如果我们要实现对 ListViewItem 双击事件的响应——也就是说,双击 ListView 中的某一项时应该怎么做呢?
首先, ListView 并没有提供相关的事件;
其次,ListViewItem 虽然有 PreviewMouseDoubleClick(隧道事件),然而在 UI 中,我们却没有适合的方法来调用。
那么究竟有没有办法来解决这个问题呢?
答案肯定是有,以下便是两种解决方案。
在 DataTemplate 中使用 MouseBinding;
- <ListView.ItemTemplate>
- <DataTemplate>
- <TextBlock Text="{Binding Name}">
- <TextBlock.InputBindings>
- <MouseBinding Command="{Binding DataContext.ShowInfoCommand, ElementName=window}" MouseAction="LeftDoubleClick" />
- </TextBlock.InputBindings>
- </TextBlock>
- </DataTemplate>
- </ListView.ItemTemplate>
可以看到,在上述代码中,我们添加了 MouseBinding,指定属性 MouseAction 为 LeftDoubleClick,并将其 Command 属性与 ViewModel 中的命令绑定;
这样,就可以实现对左键双击当前元素(TextBlock)的响应,也正好可以理解为双击当前的 ListViewItem。不过有一点需要注意的是, ListViewItem 的 HorizontalContentAlignment 属性值默认是 Left,所以在上述 DataTemplate 中 TextBlock 并不会充满 ListViewItem,所以还需要添加以下样式:
- <ListView.ItemContainerStyle>
- <Style TargetType="ListViewItem">
- <Setter Property="HorizontalContentAlignment" Value="Stretch" />
- </Style>
- </ListView.ItemContainerStyle>
通过附加属性,相比第一种略为复杂一些。新建一个类,并在其中定义一个附加属性,代码如下:
- public class ControlDoubleClick : DependencyObject
- {
- public static readonly DependencyProperty CommandProperty =
- DependencyProperty.RegisterAttached("Command", typeof(ICommand), typeof(ControlDoubleClick), new PropertyMetadata(OnCommandChanged));
-
- public static ICommand GetCommand(Control target)
- {
- return (ICommand)target.GetValue(CommandProperty);
- }
-
- public static void SetCommand(Control target, ICommand value)
- {
- target.SetValue(CommandProperty, value);
- }
-
- private static void Element_PreviewMouseDoubleClick(object sender, MouseButtonEventArgs e)
- {
- Control control = sender as Control;
- ICommand command = GetCommand(control);
- if (command.CanExecute(null))
- {
- command.Execute(null);
- e.Handled = true;
- }
- }
-
- private static void OnCommandChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
- {
- Control control = d as Control;
- control.PreviewMouseDoubleClick += new MouseButtonEventHandler(Element_PreviewMouseDoubleClick);
- }
- }
通过代码可以看出,这种方法是名副其实地对 ListViewItem 的 PreviewMouseDoubleClick 事件的响应;接下来,在 XAML 中为 ListViewItem 设置如下样式:
- <Window xmlns:behavior="clr-namespace:ListViewItemDoubleClickTest.Behavior"
- ...>
- <ListView.ItemContainerStyle>
- <Style TargetType="ListViewItem">
- <Setter Property="HorizontalContentAlignment" Value="Stretch" />
- <Setter Property="behavior:ControlDoubleClick.Command" Value="{Binding DataContext.ShowInfoCommand, ElementName=window}" />
- </Style>
- </ListView.ItemContainerStyle>
在WPF的MVVM(Model-View-ViewModel)设计模式下,处理ListViewItem双击事件时,通常避免直接在视图(View)中写入事件处理代码以保持清晰的职责分离。
System.Windows.Interactivity
库和InvokeCommandAction
首先,确保你已经安装了Microsoft Expression Blend SDK(包含System.Windows.Interactivity.dll),或者使用第三方如MVVM Light Toolkit或Prism Library提供的类似功能。
步骤如下:
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
- <ListView x:Name="myListView">
- <ListView.ItemContainerStyle>
- <Style TargetType="{x:Type ListViewItem}">
- <EventSetter Event="MouseDoubleClick" Handler="OnListViewItemDoubleClick"/>
- <!-- 或者使用Interactivity的行为 -->
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="MouseDoubleClick">
- <i:InvokeCommandAction Command="{Binding DataContext.ItemDoubleClickedCommand, RelativeSource={RelativeSource AncestorType=ListView}}"/>
- <!-- 使用CommandParameter传递当前项到命令 -->
- <i:InvokeCommandAction.CommandParameter>
- <MultiBinding Converter="{StaticResource YourConverter}">
- <Binding />
- </MultiBinding>
- </i:InvokeCommandAction.CommandParameter>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Style>
- </ListView.ItemContainerStyle>
- <ListView.ItemTemplate>
- <!-- DataTemplate定义省略... -->
- </ListView.ItemTemplate>
- </ListView>
这里,我们通过InvokeCommandAction
将ListViewItem的双击事件绑定到ViewModel中的命令ItemDoubleClickedCommand
上,并且可以通过CommandParameter传递当前选中项的数据上下文。
创建一个自定义的附加行为类,该类会监听ListViewItem的双击事件,并在其内部触发一个命令。
- public static class DoubleClickBehavior
- {
- public static readonly DependencyProperty CommandProperty = DependencyProperty.RegisterAttached(
- "Command",
- typeof(ICommand),
- typeof(DoubleClickBehavior),
- new FrameworkPropertyMetadata(null, OnCommandChanged));
-
- public static void SetCommand(DependencyObject element, ICommand value)
- {
- element.SetValue(CommandProperty, value);
- }
-
- public static ICommand GetCommand(DependencyObject element)
- {
- return (ICommand)element.GetValue(CommandProperty);
- }
-
- private static void OnCommandChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
- {
- var listViewItem = d as ListViewItem;
- if (listViewItem != null)
- {
- listViewItem.MouseDoubleClick += ListView_MouseDoubleClick;
- }
- }
-
- private static void ListView_MouseDoubleClick(object sender, MouseButtonEventArgs e)
- {
- var item = (sender as ListViewItem)?.Content;
- var command = GetCommand(sender as DependencyObject);
- if (command != null && command.CanExecute(item))
- {
- command.Execute(item);
- }
- }
- }
然后在XAML中应用这个附加行为:
- <ListView x:Name="myListView">
- <ListView.ItemContainerStyle>
- <Style TargetType="{x:Type ListViewItem}">
- <Setter Property="local:DoubleClickBehavior.Command"
- Value="{Binding DataContext.ItemDoubleClickedCommand, RelativeSource={RelativeSource AncestorType=ListView}}"/>
- </Style>
- </ListView.ItemContainerStyle>
- <!-- ...其余部分... -->
- </ListView>
这两种方法都可以有效地在不违反MVVM原则的情况下,将ListViewItem的双击事件通知给ViewModel进行处理。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。