4

我正在WPF使用模式开发应用程序MVVM并使用Prism框架。

我有一个基本数据类如下。

public class ProductDecorator : DecoratorBase<Product>
{
    private string _ProductShortName;
    private Boolean _IsSelected = false;

    // I have omitted some code for clarity here.

    [Required]
    public int ProductID
    {
        get { return BusinessEntity.ProductID; }
        set
        {
            SetProperty(() => BusinessEntity.ProductID == value,
                            () => BusinessEntity.ProductID = value);
        }
    }

    public Boolean IsSelected
    {
        get { return _IsSelected; }
        set
        {
            SetProperty(ref _IsSelected, value);
        }
    }
 }

我在 ViewModel 中创建了上述数据类的 observable 集合。

public class SaleInvoiceViewModel {

    private ObservableCollection<ProductDecorator> _productDecorators;
    public ObservableCollection<ProductDecorator> ProductDecorators
    {
        get { return _productDecorators; }
        set { SetProperty(ref _productDecorators, value); }
    }
}

我将这个可观察的集合绑定到视图中的列表框。

<telerik:RadListBox ItemsSource="{Binding ProductDecorators}" HorizontalAlignment="Stretch" Margin="5,10,5,5" Grid.Column="1" VerticalAlignment="Top">
  <telerik:RadListBox.ItemTemplate>
     <DataTemplate>
         <StackPanel Orientation="Horizontal">
             <CheckBox Margin="2" IsChecked="{Binding IsSelected}" />
             <TextBlock Text="{Binding ProductShortName}" FontSize="14" />
         </StackPanel>
     </DataTemplate>
  </telerik:RadListBox.ItemTemplate>
</telerik:RadListBox>

从上面的上下文中,我想验证“用户必须在列表框中选择至少一项”。换句话说,可观察集合中的一个类中的IsSelected属性必须为ProductUmDecorator ProductUmDecorators

目前我使用INotifyDataErrorInfo接口和Data Annotations验证规则。我已经失去了我应该如何实现我的问题来实现这个验证

4

1 回答 1

3

stackoverflow 上有很多与此主题相关的问题,但没有可靠的答案。所以我决定发布我的解决方案作为这个问题的答案。问题的上下文是检查“用户必须在与可观察集合绑定的列表框中选择一项”。

第一步,ObservableCollection需要IsSelected属性中的item(实体)。

public class ProductDecorator : DecoratorBase<Product>
{
     private string _ProductShortName;
     private Boolean _IsSelected = false;

     // I have omitted some code for clarity here.

     public Boolean IsSelected
     {
         get { return _IsSelected; }
         set
         {
             SetProperty(ref _IsSelected, value);
         }
     }
}

第二步,ObservableCollection必须实现INotifyPropertyChanged接口中的每一项。然后您可以访问PropertyChanged事件处理程序。

第三步,您需要将以下方法附加CollectionChangedObservableCollection.

public class SaleInvoiceViewModel {

     private ObservableCollection<ProductDecorator> _productDecorators;
     public ObservableCollection<ProductDecorator> ProductDecorators
     {
          get { return _productDecorators; }
          set { SetProperty(ref _productDecorators, value); }
     }

     public SaleInvoiceViewModel() {
           _productDecorators= new ObservableCollection<ProductDecorator>();
           _productDecorators.CollectionChanged += ContentCollectionChanged;
     }

     public void ContentCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
     {
          if (e.Action == NotifyCollectionChangedAction.Remove)
          {
              foreach(ProductDecorator item in e.OldItems)
              {
                   //Removed items
                   item.PropertyChanged -= EntityPropertyChanged;
              }
          }
         else if (e.Action == NotifyCollectionChangedAction.Add)
         {
              foreach(ProductDecorator item in e.NewItems)
              {
                  //Added items
                  item.PropertyChanged += EntityPropertyChanged;
              }     
         }       
    }
}

仔细看EntityPropertyChanged上面代码中的方法。每当ObservableCollection. 然后,您可以简单地Validate在方法中调用EntityPropertyChanged方法。

private void EntityPropertyChanged( object sender, PropertyChangedEventArgs e )
{
      if (e.PropertyName == "IsSelected")
            this.Product.ValidateProperty("ProductUmDecorators");
}

如果更改的属性为IsSelectedValidatedProperty则将运行该方法。我将省略方法的详细实现ValidateProperty。此方法将尝试验证属性DataAnnotations并在出现任何错误时触发 ErrorChanged 事件。您可以在此处了解详细信息。

最后,您需要DataAnnotation ValidationAttribute在您的ObservableCollection属性存在的 Entity/ViewModel/Decorator 类中实现自定义,如下代码所示。

public class SaleInvoiceViewModel {

     private ObservableCollection<ProductDecorator> _productDecorators;
     [AtLeastChooseOneItem(ErrorMessage = "Choose at least one item in the following list.")]
     public ObservableCollection<ProductDecorator> ProductDecorators
     {
         get { return _productDecorators; }
         set { SetProperty(ref _productDecorators, value); }
     }
}

public class AtLeastChooseOneItem : ValidationAttribute
{
    protected override ValidationResult IsValid( object value, ValidationContext validationContext )
    {
        ProductDecorator tmpEntity = (ProductDecorator) validationContext.ObjectInstance;
        var tmpCollection = (ObservableCollection<ProductUmDecorator>) value;

        if ( tmpCollection.Count == 0 )
            return ValidationResult.Success;

        foreach ( var item in tmpCollection )
        {
            if ( item.IsSelected == true )
                return ValidationResult.Success;
        }

        return new ValidationResult( ErrorMessage );
    }
}

这是一个有点复杂的解决方案,但这是我迄今为止发现的最可靠的解决方案。

于 2016-02-14T10:22:28.770 回答