我需要创建验证:如果所有字段都已填写
IsEnabled=true; //in xaml for next tabItem
如果并非所有字段都已填写
IsEnabled=false; //in xaml for next tabItem
我希望验证始终在用户看到TabItems(Control \ Window)时。 我想要像Button的Command那样
public WizardCommand(Action execute, Func<bool> canExecute)
{
if (execute == null)
throw new ArgumentNullException("execute");
this.execute = execute;
if (canExecute != null)
this.canExecute = canExecute;
}
当按钮在窗体上时,按钮的命令调用 WizardCommand(动作执行,Func canExecute)。 如何使tabitem像带有命令的mvvm上的按钮一样工作?