【发布时间】:2020-05-16 04:48:18
【问题描述】:
我现在一直在寻找一种将命令绑定到按钮的方法,该按钮应该在我的 ViewModel 中提示一个异步函数,该函数应该启动调用并能够取消调用。我查看了 Stephen Cleary 的教程并尝试将它们转换为我的需要,尽管命令管理器在 AsyncCommandBase 的当前上下文中不存在,当您查看他的 git 项目代码时,它与他的教程中的完全不同...我不知道从哪里继续得到我的答案,所以我们开始吧。我有一个 ViewModel 应该运行一个异步的函数并且应该通过单击一个按钮来运行?有没有办法在不编写新库的情况下完成这项工作?我做了一个看起来像这样的界面......
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Input;
using System.Threading.Tasks;
namespace Data
{
public interface IAsyncCommand : ICommand
{
Task ExcecuteAsync(Object parameter);
}
}
和一个看起来像这样的基本命令类
using System;
using System.Threading.Tasks;
using System.Windows.Input;
namespace Data
{
/// <summary>
/// An async command that implements <see cref="ICommand"/>, forwarding <see cref="ICommand.Execute(object)"/> to <see cref="IAsyncCommand.ExecuteAsync(object)"/>.
/// </summary>
public abstract class AsyncCommandBase : IAsyncCommand
{
/// <summary>
/// The local implementation of <see cref="ICommand.CanExecuteChanged"/>.
/// </summary>
private readonly ICanExecuteChanged _canExecuteChanged;
/// <summary>
/// Creates an instance with its own implementation of <see cref="ICommand.CanExecuteChanged"/>.
/// </summary>
protected AsyncCommandBase(Func<object, ICanExecuteChanged> canExecuteChangedFactory)
{
_canExecuteChanged = canExecuteChangedFactory(this);
}
/// <summary>
/// Executes the command asynchronously.
/// </summary>
/// <param name="parameter">The parameter for the command.</param>
public abstract Task ExecuteAsync(object parameter);
/// <summary>
/// The implementation of <see cref="ICommand.CanExecute(object)"/>.
/// </summary>
/// <param name="parameter">The parameter for the command.</param>
protected abstract bool CanExecute(object parameter);
/// <summary>
/// Raises <see cref="ICommand.CanExecuteChanged"/>.
/// </summary>
protected void OnCanExecuteChanged()
{
_canExecuteChanged.OnCanExecuteChanged();
}
event EventHandler ICommand.CanExecuteChanged
{
add { _canExecuteChanged.CanExecuteChanged += value; }
remove { _canExecuteChanged.CanExecuteChanged -= value; }
}
bool ICommand.CanExecute(object parameter)
{
return CanExecute(parameter);
}
async void ICommand.Execute(object parameter)
{
await ExecuteAsync(parameter);
}
}
}
链接指向他的教程,如果你需要它告诉我,我会尽快发送他的 git 代码! :D
【问题讨论】: