gpt4 book ai didi

wpf - 如何将 ApplicationCommands 绑定(bind)到 ViewModel?

转载 作者:行者123 更新时间:2023-12-04 01:01:00 25 4
gpt4 key购买 nike

我已经成功地使用了一些使用 MVVM-Light 的自定义命令,但我希望我的应用程序能够响应标准的 ApplicationCommands,不仅在窗口级别,而且在详细的项目级别。

我有一个 TreeView我希望能够复制和粘贴节点。每个 TreeViewItem 都有自己的 ViewModel,它们通过 HierarchicalDataTemplates 显示在 XAML 中,因为有几种不同的类型。我已经在我的 ViewModel 类上实现了复制、粘贴以及 CanCopy 和 CanPaste 的方法。如果合适的话,我可以很容易地实现指向这些的 MVVM-Light RelayCommands,但这似乎不对。

我想使用菜单、Ctrl+C 和 Ctrl+V 或最终使用上下文菜单来访问命令。我也不想破坏 UI 中其他元素的复制/粘贴功能,例如 TextBox。为此目的使用内置的 ApplicationCommands 似乎是合适的。但是,我只看到在 UserControl 代码隐藏中处理这些示例。我没有(或以其他方式需要)UserControl,也不是真正遵循 MVVM。

有什么方法可以绑定(bind)ApplicationCommand.CopyApplicationCommand.Paste我的 ViewModel 的命令,即在数据模板中?

最佳答案

我已经使用附加到 TreeView 的行为解决了这个问题。 TreeViewItems 或模板似乎没有将命令路由到它们。幸运的是,TreeView 还有一个 SelectedItem 属性,可以用来获取 ViewModel!

(行为在概念上类似于@Natxo 答案中链接中的解决方案,但它并不能解决所有问题。)

行为类:

public class TreeViewClipboardBehavior : Behavior<TreeView>
{
protected override void OnAttached()
{
base.OnAttached();

CommandBinding CopyCommandBinding = new CommandBinding(
ApplicationCommands.Copy,
CopyCommandExecuted,
CopyCommandCanExecute);
AssociatedObject.CommandBindings.Add(CopyCommandBinding);

CommandBinding CutCommandBinding = new CommandBinding(
ApplicationCommands.Cut,
CutCommandExecuted,
CutCommandCanExecute);
AssociatedObject.CommandBindings.Add(CutCommandBinding);

CommandBinding PasteCommandBinding = new CommandBinding(
ApplicationCommands.Paste,
PasteCommandExecuted,
PasteCommandCanExecute);
AssociatedObject.CommandBindings.Add(PasteCommandBinding);
}

private void CopyCommandExecuted(object target, ExecutedRoutedEventArgs e)
{
NestingItemTreeViewModelBase item = AssociatedObject.SelectedItem as NestingItemTreeViewModelBase;
if (item != null && item.CanCopyToClipboard)
{
item.CopyToClipboard();
e.Handled = true;
}
}

private void CopyCommandCanExecute(object target, CanExecuteRoutedEventArgs e)
{
NestingItemTreeViewModelBase item = AssociatedObject.SelectedItem as NestingItemTreeViewModelBase;
if (item != null)
{
e.CanExecute = item.CanCopyToClipboard;
e.Handled = true;
}
}

private void CutCommandExecuted(object target, ExecutedRoutedEventArgs e)
{
NestingItemTreeViewModelBase item = AssociatedObject.SelectedItem as NestingItemTreeViewModelBase;
if (item != null && item.CanCutToClipboard)
{
item.CutToClipboard();
e.Handled = true;
}
}

private void CutCommandCanExecute(object target, CanExecuteRoutedEventArgs e)
{
NestingItemTreeViewModelBase item = AssociatedObject.SelectedItem as NestingItemTreeViewModelBase;
if (item != null)
{
e.CanExecute = item.CanCutToClipboard;
e.Handled = true;
}
}


private void PasteCommandExecuted(object target, ExecutedRoutedEventArgs e)
{
NestingItemTreeViewModelBase item = AssociatedObject.SelectedItem as NestingItemTreeViewModelBase;
if (item != null && item.CanPasteFromClipboard)
{
item.PasteFromClipboard();
e.Handled = true;
}
}

private void PasteCommandCanExecute(object target, CanExecuteRoutedEventArgs e)
{
NestingItemTreeViewModelBase item = AssociatedObject.SelectedItem as NestingItemTreeViewModelBase;
if (item != null)
{
e.CanExecute = item.CanPasteFromClipboard;
e.Handled = true;
}
}
}

XAML
<TreeView Grid.Row="2" ItemsSource="{Binding SystemTreeRoot}">
<i:Interaction.Behaviors>
<local:TreeViewClipboardBehavior/>
</i:Interaction.Behaviors>
<TreeView.Resources>
<HierarchicalDataTemplate DataType="{x:Type local:MyViewModel}" ItemsSource="{Binding Children}">
<!-- Template content -->
</HierarchicalDataTemplate>
</TreeView>

关于wpf - 如何将 ApplicationCommands 绑定(bind)到 ViewModel?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7641656/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com