0

DataGrid の Rows に間違った入力をしたときに検証エラーを通知したい。

<DataGridTextColumn Header="Name" Binding="{Binding Path=Name, ValidatesOnDataErrors=True, ValidatesOnExceptions=True}"/>
<DataGridTextColumn Header="Age" Binding="{Binding Path=Age}"/>
<DataGridTextColumn Header="Date Of Birth" Binding="{Binding Path=DateOfBirth, ValidatesOnDataErrors=True, ValidatesOnExceptions=True, NotifyOnValidationError=True}"/>

次のプロパティを使用して、ViewModel に IDataErrorInfo を実装しました。

public string this[string propname]
        {
            get 
            {
                switch (propname)
                {
                    case "Age":
                        int age=0;
                        if (int.TryParse("Age", out age))
                        {
                            if (age <= 0 && age > 99)
                            {
                                return "Please enter the valid Age...";
                            }
                        }
                        else
                            return "Please enter the valid Age...";

                        break;
                    case "Name":
                        if (string.IsNullOrEmpty("Name"))
                        {
                            return "Enter the valid Name";
                        }
                        break;
                    case "Address":
                        if (string.IsNullOrEmpty("Address"))
                        {
                            return "Enter the valid Address";
                        }
                        break;
                    case "DateOfBirth":
                        DateTime datetime;
                        if (!DateTime.TryParse("DateOfBirth", out datetime))
                        {
                            return "Please enter the valid Date of Birth";
                        }
                        break;
                }
                return string.Empty;
            }
        }

しかし、検証は行われません。DataGridCell の DateTime プロパティにテキストを入力すると、検証エラーを示す赤いバルーンが表示されるという要件が必要です。

それは可能ですか?..誰でも?

4

1 に答える 1

2

この行:

if (int.TryParse("Age", out age))

正しいことはできません。

赤い風船を表示したい場合は、赤い風船を提供する必要があります:

<Style x:Key="TextBlockStyle" TargetType="{x:Type TextBlock}">
    <Style.Triggers>
        <Trigger Property="Validation.HasError" Value="true">
            <Setter Property="ToolTip"
                    Value="{Binding RelativeSource={RelativeSource Self},
                    Path=(Validation.Errors)[0].ErrorContent}"/>
       </Trigger>
    </Style.Triggers>
</Style>

と:

<DataGridTemplateColumn.CellTemplate>
    <DataTemplate>
        <TextBlock Style="{StaticResource ResourceKey=TextBlockStyle}" 
                   Text="{Binding Path=Name,  UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True, NotifyOnValidationError=True}"/>
    </DataTemplate>
</DataGridTemplateColumn.CellTemplate>

赤くするのはあなたに任せます。

于 2012-05-15T14:15:13.317 に答える