(注-これは再投稿です。私の最初の質問が間違った見出しの下に投稿されました: ここ 申し訳ありません!)
標準のWPFツリービューがあり、モデルクラスを表示するためのバインドされたアイテムがあります。
アイテムがダブルクリックされたときの動作を処理したいと思います(ドキュメントをvisual-studioスタイルで開きます)。
ツリービュー(xamlが表示されています)を格納しているコントロールでイベントハンドラーを起動できますが、ビューモデルクラスの特定の動作にバインドするにはどうすればよいですか。 ProjectViewModel?
これは他の場所で使用されるため、ICommand-implementerにバインドするのが好ましい...
<TreeView ItemsSource="{Binding Projects}" MouseDoubleClick="TreeView_MouseDoubleClick">
<TreeView.ItemContainerStyle>
<!--
This Style binds a TreeViewItem to a TreeViewItemViewModel.
-->
<Style TargetType="{x:Type TreeViewItem}">
<Setter Property="IsExpanded" Value="{Binding IsExpanded, Mode=TwoWay}" />
<Setter Property="IsSelected" Value="{Binding IsSelected, Mode=TwoWay}" />
<Setter Property="FontWeight" Value="Normal" />
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="FontWeight" Value="Bold" />
</Trigger>
</Style.Triggers>
</Style>
</TreeView.ItemContainerStyle>
<TreeView.Resources>
<HierarchicalDataTemplate DataType="{x:Type Implementations:ProjectViewModel}" ItemsSource="{Binding Children}">
<StackPanel Orientation="Horizontal">
<Image Width="16" Height="16" Margin="3,0" Source="Images\Region.png" />
<TextBlock Text="{Binding DisplayName}" />
</StackPanel>
</HierarchicalDataTemplate>
<HierarchicalDataTemplate DataType="{x:Type Implementations:PumpViewModel}" ItemsSource="{Binding Children}">
<StackPanel Orientation="Horizontal">
<Image Width="16" Height="16" Margin="3,0" Source="Images\State.png" />
<TextBlock Text="{Binding Name}" />
</StackPanel>
</HierarchicalDataTemplate>
<DataTemplate DataType="{x:Type Implementations:PumpDesignViewModel}">
<StackPanel Orientation="Horizontal">
<Image Width="16" Height="16" Margin="3,0" Source="Images\City.png" />
<TextBlock Text="{Binding Name}" />
</StackPanel>
</DataTemplate>
</TreeView.Resources>
</TreeView>
私の回答を少し更新しています。
私はこれについてさまざまなアプローチをたくさん試しましたが、それでもAttached Behaviorsが最良の解決策であると感じています。最初はかなりオーバーヘッドのように見えるかもしれませんが、実際はそうではありません。私はICommands
のすべての動作を同じ場所に保持し、別のイベントのサポートが必要なときはいつでも、コピー/貼り付けの問題であり、PropertyChangedCallback
でイベントを変更します。
CommandParameter
のオプションのサポートも追加しました。
デザイナーでは、目的のイベントを選択するだけです
これは、TreeView
、TreeViewItem
、またはその他の任意の場所で設定できます。
例。 TreeView
に設定します
<TreeView commandBehaviors:MouseDoubleClick.Command="{Binding YourCommand}"
commandBehaviors:MouseDoubleClick.CommandParameter="{Binding}"
.../>
例。 TreeViewItem
に設定します
<TreeView ItemsSource="{Binding Projects}">
<TreeView.ItemContainerStyle>
<Style TargetType="{x:Type TreeViewItem}">
<Setter Property="commandBehaviors:MouseDoubleClick.Command"
Value="{Binding YourCommand}"/>
<Setter Property="commandBehaviors:MouseDoubleClick.CommandParameter"
Value="{Binding}"/>
</Style>
</TreeView.ItemContainerStyle>
</TreeView>
そして、これがAttached BehaviorMouseDoubleClick
です。
public class MouseDoubleClick
{
public static DependencyProperty CommandProperty =
DependencyProperty.RegisterAttached("Command",
typeof(ICommand),
typeof(MouseDoubleClick),
new UIPropertyMetadata(CommandChanged));
public static DependencyProperty CommandParameterProperty =
DependencyProperty.RegisterAttached("CommandParameter",
typeof(object),
typeof(MouseDoubleClick),
new UIPropertyMetadata(null));
public static void SetCommand(DependencyObject target, ICommand value)
{
target.SetValue(CommandProperty, value);
}
public static void SetCommandParameter(DependencyObject target, object value)
{
target.SetValue(CommandParameterProperty, value);
}
public static object GetCommandParameter(DependencyObject target)
{
return target.GetValue(CommandParameterProperty);
}
private static void CommandChanged(DependencyObject target, DependencyPropertyChangedEventArgs e)
{
Control control = target as Control;
if (control != null)
{
if ((e.NewValue != null) && (e.OldValue == null))
{
control.MouseDoubleClick += OnMouseDoubleClick;
}
else if ((e.NewValue == null) && (e.OldValue != null))
{
control.MouseDoubleClick -= OnMouseDoubleClick;
}
}
}
private static void OnMouseDoubleClick(object sender, RoutedEventArgs e)
{
Control control = sender as Control;
ICommand command = (ICommand)control.GetValue(CommandProperty);
object commandParameter = control.GetValue(CommandParameterProperty);
command.Execute(commandParameter);
}
}
私はこれに遅れましたが、私は別のソリューションを使用しました。もう一度、それは最高ではないかもしれませんが、これが私がそれをした方法です。
まず第一に、Meleakからの以前の回答はすばらしいですが、MouseDoubleClickのような基本的なものだけにAttachedBehaviorsを追加することを強いられるのは非常に重いように感じます。これにより、アプリで新しいパターンを使用する必要が生じ、すべてがさらに複雑になります。
私の目標は、可能な限りシンプルに保つことです。したがって、私は非常に基本的なことを行いました(私の例はDataGridですが、さまざまなコントロールで使用できます)。
<DataGrid MouseDoubleClick="DataGrid_MouseDoubleClick">
<!-- ... -->
</DataGrid>
コードビハインドで:
private void DataGrid_MouseDoubleClick(object sender, MouseButtonEventArgs e)
{
//Execute the command related to the doubleclick, in my case Edit
(this.DataContext as VmHome).EditAppCommand.Execute(null);
}
MVVMパターンが壊れないのはなぜですか?私の意見では、コードビハインドに配置する必要があるのは、UIに非常に固有の、viewModelへのブリッジのみであるためです。この場合は、ダブルクリックすると、関連するコマンドが実行されるというだけです。 Command = "{Binding EditAppCommand}"とほとんど同じですが、この動作をシミュレートしただけです。
この点については、遠慮なくご意見をお寄せください。この考え方に対する批判を聞いて喜んでいますが、今のところ、これはMVVMを壊さずに実装する最も簡単な方法だと思います。
Meleakとígorの両方の推奨事項は素晴らしいですが、ダブルクリックイベントハンドラーがTreeViewItem
にバインドされると、アイテムのすべての親に対してthisイベントハンドラーが呼び出されます要素(クリックされた要素だけではありません)。必要ない場合は、ここにもう1つ追加します。
private static void OnMouseDoubleClick(object sender, RoutedEventArgs e)
{
Control control = sender as Control;
ICommand command = (ICommand)control.GetValue(CommandProperty);
object commandParameter = control.GetValue(CommandParameterProperty);
if (sender is TreeViewItem)
{
if (!((TreeViewItem)sender).IsSelected)
return;
}
if (command.CanExecute(commandParameter))
{
command.Execute(commandParameter);
}
}
それは本当に簡単です、そしてこれは私がTreeViewでダブルクリックを処理した方法です:
<Window x:Class="TreeViewWpfApplication.MainWindow"
...
xmlns:i="clr-namespace:System.Windows.Interactivity;Assembly=System.Windows.Interactivity"
xmlns:ei="http://schemas.Microsoft.com/expression/2010/interactions"
...>
<TreeView ItemsSource="{Binding Departments}" >
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseDoubleClick">
<ei:CallMethodAction MethodName="SomeMethod" TargetObject="{Binding}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</TreeView>
</Window>
System.Windows.Interactivity.dllは、C:\ Program Files(x86)\ Microsoft SDKs\Expression\Blend.NETFramework\v4.0 \から取得されますLibraries\System.Windows.Interactivity.dllまたは NuGet
私のビューモデル:
public class TreeViewModel : INotifyPropertyChanged
{
private List<Department> departments;
public TreeViewModel()
{
Departments = new List<Department>()
{
new Department("Department1"),
new Department("Department2"),
new Department("Department3")
};
}
public List<Department> Departments
{
get
{
return departments;
}
set
{
departments = value;
OnPropertyChanged("Departments");
}
}
public void SomeMethod()
{
MessageBox.Show("*****");
}
}
Meleakソリューションは素晴らしいですが、チェックを追加しました
private static void OnMouseDoubleClick(object sender, RoutedEventArgs e)
{
Control control = sender as Control;
ICommand command = (ICommand)control.GetValue(CommandProperty);
object commandParameter = control.GetValue(CommandParameterProperty);
//Check command can execute!!
if(command.CanExecute(commandParameter ))
command.Execute(commandParameter);
}
私が到達した最善のアプローチは、双方向モードでTreeViewItemからIsSelected
プロパティをViewModelにバインドし、プロパティセッターにロジックを実装することです。次に、ユーザーがアイテムをクリックするたびにこのプロパティが変更されるため、値がtrueまたはfalseの場合の処理を定義できます。
class MyVM
{
private bool _isSelected;
public bool IsSelected
{
get { return _isSelected; }
set
{
if (_isSelected == null)
return;
_isSelected = vale;
if (_isSelected)
{
// Your logic goes here.
}
else
{
// Your other logic goes here.
}
}
}
これにより、多くのコードを回避できます。
また、この手法では、本当に必要なViewModelでのみ「onclick」動作を実装できます。
TextBlockでのマウスバインディング
ビューのTreeView.Resourcesで:
<HierarchicalDataTemplate
DataType="{x:Type treeview:DiscoveryUrlViewModel}"
ItemsSource="{Binding Children}">
<StackPanel Orientation="Horizontal">
<Image Width="16" Height="16" Margin="3,0" Source="../Images/ic_search.png" />
<TextBlock Text="{Binding DisplayText}" >
<TextBlock.InputBindings>
<MouseBinding Gesture="LeftDoubleClick"
Command="{Binding DoubleClickCopyCommand}"
CommandParameter="{Binding }" />
</TextBlock.InputBindings>
</TextBlock>
</StackPanel>
</HierarchicalDataTemplate>
そのビューのViewModel(DiscoveryUrlViewModel.cs):
private RelayCommand _doubleClickCommand;
public ICommand DoubleClickCopyCommand
{
get
{
if (_doubleClickCommand == null)
_doubleClickCommand = new RelayCommand(OnDoubleClick);
return _doubleClickCommand;
}
}
private void OnDoubleClick(object obj)
{
var clickedViewModel = (DiscoveryUrlViewModel)obj;
}
ちょうど好奇心のために:もし私がフレデリクスの役割を果たすなら、それを振る舞いとして直接実装するとどうなりますか?
public class MouseDoubleClickBehavior : Behavior<Control>
{
public static readonly DependencyProperty CommandProperty =
DependencyProperty.Register("Command", typeof (ICommand), typeof (MouseDoubleClickBehavior), new PropertyMetadata(default(ICommand)));
public ICommand Command
{
get { return (ICommand) GetValue(CommandProperty); }
set { SetValue(CommandProperty, value); }
}
public static readonly DependencyProperty CommandParameterProperty =
DependencyProperty.Register("CommandParameter", typeof (object), typeof (MouseDoubleClickBehavior), new PropertyMetadata(default(object)));
public object CommandParameter
{
get { return GetValue(CommandParameterProperty); }
set { SetValue(CommandParameterProperty, value); }
}
protected override void OnAttached()
{
base.OnAttached();
AssociatedObject.MouseDoubleClick += OnMouseDoubleClick;
}
protected override void OnDetaching()
{
AssociatedObject.MouseDoubleClick -= OnMouseDoubleClick;
base.OnDetaching();
}
void OnMouseDoubleClick(object sender, RoutedEventArgs e)
{
if (Command == null) return;
Command.Execute(/*commandParameter*/null);
}
}