gpt4 book ai didi

c# - 如何在 MVVM 中使用 ApplicationCommand

转载 作者:行者123 更新时间:2023-11-30 12:57:18 24 4
gpt4 key购买 nike

我想使用 ApplicationCommands。剪切、复制、粘贴、保存...它们看起来很有趣,因为命令路由、键绑定(bind)以及某些控件使用它们的事实。我了解如何绑定(bind)到我的 VM 上的中继/委托(delegate)命令,但我似乎无法理解应用程序命令。我找到了几个旧答案,但没有其他信息,我有点不愿意遵循这些路线。

这似乎很常见,但信息似乎非常有限。这通常是如何实现的? (使用或不使用 PRISM、MVVM Light……)

旧答案:

How to bind ApplicationCommands to a ViewModel但是使用行为来解决这个问题对我来说似乎很奇怪

WPF - Handle an ApplicationCommand in the ViewModel但我不认为这是公认的答案中的 MVVM。

在旧文章中使用附加属性:CommandBindings with MVVM引用另一篇文章。

最佳答案

我问这个问题已经有一段时间了,但看起来很多人都在看这个问题。我最终使用了一种将 VM 命令列表连接到 FrameworkElement 的行为。这似乎是最灵活和可重复使用的解决方案。

public class AttachCommandBindingsBehavior : Behavior<FrameworkElement>
{
public ObservableCollection<CommandBinding> CommandBindings
{
get
{
return (ObservableCollection<CommandBinding>)GetValue(CommandBindingsProperty);
}
set
{
SetValue(CommandBindingsProperty, value);
}
}
public static readonly DependencyProperty CommandBindingsProperty = DependencyProperty.Register("CommandBindings", typeof(ObservableCollection<CommandBinding>), typeof(AttachCommandBindingsBehavior), new PropertyMetadata(null, OnCommandBindingsChanged));

private static void OnCommandBindingsChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
{
AttachCommandBindingsBehavior attachCommandBindingsBehavior = (AttachCommandBindingsBehavior)sender;

if (attachCommandBindingsBehavior == null)
return;

ObservableCollection<CommandBinding> commandBindings = (ObservableCollection<CommandBinding>)e.NewValue;

if (commandBindings != null)
{
if (attachCommandBindingsBehavior.CommandBindings != null)
attachCommandBindingsBehavior.CommandBindings.CollectionChanged -= attachCommandBindingsBehavior.CommandBindings_CollectionChanged;

attachCommandBindingsBehavior.CommandBindings.CollectionChanged += attachCommandBindingsBehavior.CommandBindings_CollectionChanged;
}
}

void CommandBindings_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
ObservableCollection<CommandBinding> collection = (ObservableCollection<CommandBinding>)sender;

if (collection != null)
{
foreach (CommandBinding commandBinding in collection)
AssociatedObject.CommandBindings.Add(commandBinding);
}
}
}

然后在 xaml 中你可以这样做:

<i:Interaction.Behaviors>
<localBehaviors:AttachCommandBindingsBehavior CommandBindings="{Binding CommandBindings}"/>
</i:Interaction.Behaviors>

关于c# - 如何在 MVVM 中使用 ApplicationCommand,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35023250/

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