WPF ListBox数据验证

时间:2016-05-12 06:55:16

标签: c# wpf xaml listbox inotifydataerrorinfo

我有一个字符串项的ListBox,我想在每次添加或删除字符串时验证字符串。

以下是我拼凑在一起的代码,但问题是当ObservableCollection地址发生变化时,永远不会调用ValidateAddresses。

预期的行为是,当找到无效字符串时,应在ListBox周围显示一个红色边框,并带有显示错误消息的工具提示。

这个INotifyDataErrorInfo设置适用于TextBoxes,所以我不知道我在这里做错了什么。

视图模型

[CustomValidation(typeof(ItemViewModel), "ValidateAddresses")]
public ObservableCollection<string> Addresses
{
    get
    {
        return item.Addresses;
    }

    set
    {
        item.Addresses = value;
        NotifyPropertyChanged(nameof(Addresses));
    }
}

XAML

<Grid>
    <Grid.Resources>
        <Style TargetType="ListBox">
            <Setter Property="Margin" Value="5"/>
            <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Auto"/>
            <Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Auto"/>

            <Setter Property="Validation.ErrorTemplate">
                <Setter.Value>
                    <ControlTemplate x:Name="TextErrorTemplate">
                        <DockPanel LastChildFill="True">
                            <AdornedElementPlaceholder>
                                <Border BorderBrush="Red" BorderThickness="2"/>
                            </AdornedElementPlaceholder>
                            <TextBlock Foreground="Red"/>
                        </DockPanel>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>

            <Style.Triggers>
                <Trigger Property="Validation.HasError" Value="True">
                    <Setter Property="ToolTip" Value="{Binding RelativeSource={x:Static RelativeSource.Self}, Path=(Validation.Errors).CurrentItem.ErrorContent}"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </Grid.Resources>

    <ListBox ItemsSource="{Binding Path=Item.Addresses, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnNotifyDataErrors=True}" SelectedIndex="{Binding Path=SelectedAddress, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
</Grid>

验证方法(从未调用)

public static ValidationResult ValidateAddresses(object obj, ValidationContext context)
{
    ItemViewModel item = (ItemViewModel)context.ObjectInstance;

    if (item.Addresses.Count > 0)
    {
        foreach (string address in item.Addresses)
        {
            if (Regex.IsMatch(address, @"[^\w]"))
                return new ValidationResult($"{address} is not a valid address.", new List<string> { "Addresses" });
        }
    }

    return ValidationResult.Success;
}

1 个答案:

答案 0 :(得分:0)

我最后在每个ObservableCollection的类构造函数中添加了以下内容。

Addresses.CollectionChanged += (sender, eventArgs) => { NotifyPropertyChanged(nameof(Addresses)); };

我试图调查需要取消订阅事件以防止内存泄漏的情况,但似乎这不是其中一种情况,因此不应该要求清理。

不需要空检查,因为ObservableCollections都是在Model类构造函数中初始化的。

感谢您的回复。

这是NotifyPropertyChanged的代码。

public class ObservableObject : INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;

    protected void NotifyPropertyChanged([CallerMemberName] string propertyName = null)
    {
        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
    }
}