- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我最近在 WPF 中进行了大量编程,但此时我的 View 和 ViewModel 并没有分开。好吧,这是部分的。我所有与文本框中的文本、标签内容、数据网格中的列表等相关的绑定(bind)都是由带有 NotifyPropertyChanged 事件的常规属性完成的。
我所有处理按钮点击或文本更改的事件都是通过链接事件来完成的。现在,我想开始使用命令并找到这篇文章:http://www.codeproject.com/Articles/126249/MVVM-Pattern-in-WPF-A-Simple-Tutorial-for-Absolute .它解释了如何设置 MVVM,但我对 RelayCommand
感到困惑。
它做什么工作?它可用于我表单中的所有命令吗?当 (a) 某些文本框未填写时,如何使按钮禁用?
编辑 1:
对“它对我表单中的所有命令都可用吗?”的一个很好的解释在这里回答:https://stackoverflow.com/a/22286816/3357699
最佳答案
命令用于将调用命令的语义和对象与执行命令的逻辑分开,即将 UI 组件与需要在命令调用时执行的逻辑分开。因此,您可以使用测试用例单独测试业务逻辑,而且您的 UI 代码与业务逻辑松耦合。
现在,话虽如此,让我们一一挑选您的问题:
What job does it do?
我已经在上面添加了详细信息。希望它清除了命令的用法。
Is it usable for all commands in my form?
一些控件公开了 Command DependencyProperty,例如 Button、MenuItem 等,其中注册了一些默认事件。对于 Button,它是 Click
事件。因此,如果您将在 ViewModel 中声明的 ICommand
与 Button 的 Command DP 绑定(bind),则只要单击按钮,就会调用它。
对于其他事件,您可以使用交互触发器
进行绑定(bind)。引用样本here如何使用它们绑定(bind)到 ViewModel 中的 ICommand
。
How do I make the button disable when (a) certain text box(es) are notfilled in?
您发布的链接未提供 RelayCommand
的完整实现。它缺少用于设置 CanExecute
谓词的重载构造函数,该谓词在启用/禁用您的命令绑定(bind)到的 UI 控件中起着关键作用。
使用 ViewModel
和 CanExecute
中的某些属性绑定(bind) TextBox
委托(delegate)返回 false
如果任何绑定(bind)属性为 null
或空,这会自动禁用命令绑定(bind)到的控件。
RelayCommand
的完整实现:
public class RelayCommand<T> : ICommand
{
#region Fields
readonly Action<T> _execute = null;
readonly Predicate<T> _canExecute = null;
#endregion
#region Constructors
/// <summary>
/// Initializes a new instance of <see cref="DelegateCommand{T}"/>.
/// </summary>
/// <param name="execute">Delegate to execute when Execute is called on the command. This can be null to just hook up a CanExecute delegate.</param>
/// <remarks><seealso cref="CanExecute"/> will always return true.</remarks>
public RelayCommand(Action<T> execute)
: this(execute, null)
{
}
/// <summary>
/// Creates a new command.
/// </summary>
/// <param name="execute">The execution logic.</param>
/// <param name="canExecute">The execution status logic.</param>
public RelayCommand(Action<T> execute, Predicate<T> canExecute)
{
if (execute == null)
throw new ArgumentNullException("execute");
_execute = execute;
_canExecute = canExecute;
}
#endregion
#region ICommand Members
///<summary>
///Defines the method that determines whether the command can execute in its current state.
///</summary>
///<param name="parameter">Data used by the command. If the command does not require data to be passed, this object can be set to null.</param>
///<returns>
///true if this command can be executed; otherwise, false.
///</returns>
public bool CanExecute(object parameter)
{
return _canExecute == null || _canExecute((T)parameter);
}
///<summary>
///Occurs when changes occur that affect whether or not the command should execute.
///</summary>
public event EventHandler CanExecuteChanged
{
add { CommandManager.RequerySuggested += value; }
remove { CommandManager.RequerySuggested -= value; }
}
///<summary>
///Defines the method to be called when the command is invoked.
///</summary>
///<param name="parameter">Data used by the command. If the command does not require data to be passed, this object can be set to <see langword="null" />.</param>
public void Execute(object parameter)
{
_execute((T)parameter);
}
#endregion
}
关于c# - 为什么选择 RelayCommand,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22285866/
有谁知道为什么特定于 MVVM Light RelayCommand 通用类型会导致其 canExecute 始终解析为 false 以进行绑定(bind)?为了获得正确的行为,我必须使用一个对象,然
使用 RelayCommand 时如何获取事件发送者? 最佳答案 这是那些令人痛苦的 %¤# 答案之一,我实际上并没有回答您的问题,而是教导您应该以不同的方式做些什么。所以,很抱歉。开始: 如果您发现
这个问题在这里已经有了答案: 8年前关闭。 Possible Duplicate: Passing two command parameters using a WPF binding 我需要向我的
我的 ViewModel 中有以下内容: public MyViewModel() { CloseCommend = new RelayCommand(closeWindow); } public
我已经在这个问题上停留了几个小时。我正在尝试在 WPF 中实现 MVVM 样式的 Word 加载项。我没有使用 MVVM 工具包。我有一个停靠在 WinForm 中的 WPF 用户控件。虽然我能够在
我将 MVVM 灯用于 WPF 应用程序。我有一个 View 模型,其中包含几个使用 RelayCommand 的命令。由于每个命令的代码都非常相似,因此我创建了一个 GetCommand 方法。但是
我正在寻找 RelayCommand 的实现。我认为最初的实现是经典的(我们称之为实现A) public class RelayCommand : ICommand { priv
首先,这是我在 SO 上的第一篇文章,所以要温和 ;) 我有一个非常简单的 WPF 应用程序,它有一个带有两个选项的菜单和一些位于不同 View 中的按钮,其中大部分都具有到 Microsoft.Te
我正在读这个 MSDN Article关于 MVVM。我目前正在查看图 #15 中的 RelayCommand。假装我想测试这个 SaveCommand。我该怎么做?我正在使用 NUnit 和 Rhi
我想包括 RelayCommands。我想为 System.Windows.Input 创建一个程序集以使用 ICommand,但该程序集不可用?那里出了什么问题?我已经安装了 .net framew
我正在尝试使用来自 Galasoft MVVMLight 的 RelayCommand 执行 RelayCommand(在我的代码隐藏中)。 MainPage.xaml.cs public MainP
我需要更改我们编写的 WPF 应用程序中的某些功能。我们使用 MVVM Light 来实现 MVVM。每当我们需要将一些参数传递给我们使用 MVVM Light 的 Messenger 类的方法时。我
我知道 SOF 和 Google 上有多个标题相似的帖子,但请耐心等待一分钟。 我正在按照这篇文章为我的 gridview 创建上下文菜单:http://www.koaxkoaxkoax.com/ri
我在 TextBox 中有一个按钮。我想为我的按钮绑定(bind)命令。但是当我点击按钮时它不起作用。这是 App.xaml 中的文本框模板:
我在使用 GalaSoft 的 RelayCommand 时遇到了一些问题。 我有一个有效的 NextCommand 属性,但只有几次。 之后,它就完全停止工作了。 您可以使用示例项目进行尝试: ht
我最近在 WPF 中进行了大量编程,但此时我的 View 和 ViewModel 并没有分开。好吧,这是部分的。我所有与文本框中的文本、标签内容、数据网格中的列表等相关的绑定(bind)都是由带有 N
我正在使用 RelayCommand 来处理按钮单击,我需要获取 sender 参数但它始终为空,知道为什么吗? View 模型.cs private RelayCommand _expand
我正在实现一个带有执行和 canExecute 部分的 RelayCommand。 RelayCommand 在没有 canExecute 部分时工作,但是当我添加 canExecute 部分时,命令
我正在应用 Josh Smith 的 MVVM 模式并且遇到了困难。我一直在这里研究这个问题,但似乎无法完全正确地使用语法。 在我看来,下面的代码符合所需的语法,但 Visual Studio 报告错
我正在 WPF 中构建一个 MVVM 应用程序,并将一个 Menu 绑定(bind)到一个 MenuItem 模型。我的 MenuItem 类具有以下属性: public class MenuItem
我是一名优秀的程序员,十分优秀!