WPF アプリケーションでデータを編集するためのフォームを作成しました。フォームにバリデーションを追加中です。この記事とこの記事を使用して開始しましたが、エラー テンプレートが常に表示されるか、まったく表示されません。何が間違っているのかわかりません。
これが私が使用しているControlTemplate
とStyle
です。それらはフォームのリソースにあります:
<ControlTemplate x:Key="TextBoxErrorTemplate">
<StackPanel ClipToBounds="False" Orientation="Horizontal">
<Border BorderBrush="Red"
BorderThickness="1"
Margin="15,0,0,0">
<AdornedElementPlaceholder Name="adornedElement" />
</Border>
<Image HorizontalAlignment="Right"
VerticalAlignment="Top"
Width="20"
Height="20"
Margin="0,-5,-5,0"
Source="{StaticResource ErrorImage}"
ToolTip="{Binding Converter={StaticResource ErrorConverter},
ElementName=adornedElement,
Path=AdornedElement.(Validation.Errors)}" />
</StackPanel>
</ControlTemplate>
<Style x:Key="TextBoxErrorStyle" TargetType="{x:Type TextBox}">
<Style.Triggers>
<Trigger Property="Validation.HasError" Value="true">
<Setter Property="ToolTip"
Value="Binding Converter={StaticResource ErrorConverter},
RelativeSource={x:Static RelativeSource.Self},
Path=AdornedElement.(Validation.Errors)}"/>
</Trigger>
</Style.Triggers>
</Style>
そして、TextBox
これらのパーツを使用する は次のとおりです。
<TextBox Grid.Column="0"
Margin="5,0"
MaxLength="50"
Name="NameBox"
TabIndex="0"
Validation.ErrorTemplate="{StaticResource TextBoxErrorTemplate}"
Style="{StaticResource TextBoxErrorStyle}"
TextAlignment="Left"
TextChanged="NameBox_TextChanged"
VerticalAlignment="Center"
Visibility="{Binding Converter={StaticResource InvertedBoolToVisibility}, Path=AutoConfigureCameras, RelativeSource={RelativeSource AncestorType={x:Type cs:EditLPRDetails}}}">
<TextBox.Text>
<Binding Mode="TwoWay" Path="Name" UpdateSourceTrigger="PropertyChanged">
<Binding.ValidationRules>
<cs:RegexValidationRule Pattern="{StaticResource NamePattern}" />
</Binding.ValidationRules>
</Binding>
</TextBox.Text>
</TextBox>
RegexValidationRule
クラスの検証ロジックが機能することに注意してください。に有効な文字列を入れるTextBox
と成功を返し、無効な文字列を入れると失敗を返します。何が間違っているにせよ、問題は にあると思いますStyle's Trigger
。