WPF MVVM IDataErrorInfo

WPF MVVM IDataErrorInfo

我有一个 MVVM 模式的应用;它包含一个文本框和一个按钮;

我添加一个验证,如果文本框为空,文本框颜色变为红色;

此时我希望按钮启用为假,直到用户

在文本框中输入字符,然后按钮启用更改为真;

我的XAML代码是:

    <Window.Resources>
    <ControlTemplate x:Key="ErrorTemplate">
        <DockPanel LastChildFill="True">
            <Border BorderBrush="Pink" BorderThickness="1">
                <AdornedElementPlaceholder />
            </Border>
        </DockPanel>
    </ControlTemplate>
    <Style TargetType="TextBox">
        <Style.Triggers>
            <Trigger Property="Validation.HasError" Value="true">
                <Setter Property="ToolTip"
      Value="{Binding RelativeSource={x:Static RelativeSource.Self},Path=(Validation.Errors)[0].ErrorContent}"/>
            </Trigger>
        </Style.Triggers>
    </Style>
</Window.Resources>


<Grid>
    <Grid.RowDefinitions>
        <RowDefinition/>
        <RowDefinition/>
        <RowDefinition/>
    </Grid.RowDefinitions>
    <TextBox Margin="10" Text="{Binding ValidateInputText,UpdateSourceTrigger=PropertyChanged, Mode=TwoWay, ValidatesOnDataErrors=True, NotifyOnValidationError=True, ValidatesOnExceptions=True}"
Validation.ErrorTemplate="{StaticResource ErrorTemplate}">
    </TextBox>
    <Button Margin="10" Grid.Row="2"  Command="{Binding ValidateInputCommand}"/>

我的命令class是:

  public class RelayCommand : ICommand
{
    private Action WhatToExcute;
    private Func<bool> WhenToExecute;
    public RelayCommand(Action what,Func<bool>when )
    {
        WhatToExcute = what;
        WhenToExecute = when;
    }

    public event EventHandler CanExecuteChanged;

    public bool CanExecute(object parameter)
    {
       return WhenToExecute();
    }

    public void Execute(object parameter)
    {
         WhatToExcute();
    }
}

我的视图模型是:

    public class ViewModel : IDataErrorInfo , INotifyPropertyChanged
{

    public event PropertyChangedEventHandler PropertyChanged;

    Product product = new Product();

    public ViewModel()
    {
        ValidateInputCommand = new RelayCommand(action, valid);
    }
    public void action()
    {

    }
    public bool valid()
    {
        if (product.Name == null)
            return false;

        return true;
    }

    public string ValidateInputText
    {
        get { return product.Name; }
        set {
            product.Name = value;
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(ValidateInputText));
            }
        }
    }

    public RelayCommand ValidateInputCommand { get; set; }

    public string this[string columnName]
    {
        get
        {
            if ("ValidateInputText" == columnName)
            {

                if (String.IsNullOrEmpty(ValidateInputText))
                {
                    return "Please enter a Name";
                }
            }
            return "";
        }
    }

    public string Error
    {
        get
        {
            throw new NotImplementedException();
        }
    }
}

现在当我 运行 我的应用程序时,文本框的颜色是红色,当我输入

角色变正常没关系,但是

按钮启用是假的,不会改变

所以我无法点击按钮。

我该怎么办?

您的 RelayCommand 上的 CanExecuteChanged 事件永远不会被触发。因此,命令绑定到的按钮永远不会重新评估其 IsEnabled 状态。您的视图模型可以通知命令其有效状态发生变化,并且该命令应依次引发其 CanExecuteChanged 事件。