テキストボックスの検証を行いました。
しかし、さまざまな段階でテキストボックスにスタイルを作りたいと思っています。
私のページが初めて読み込まれると、テキストボックスは次のスタイルのようになります。
ユーザーが値の入力を開始し、値が間違っている場合、テキストボックスの背景全体が赤になります。
ユーザーが正しい値を入力すると、テキスト ボックスに 2PX の緑の境界線が表示されます。
私は次のスタイルを使用しています:
<Style x:Key="TxtEmailStyle" TargetType="{x:Type TextBox}">
<Setter Property="Background" Value="#2d2f34"></Setter>
<Setter Property="Foreground" Value="White"></Setter>
<Setter Property="TextBlock.FontSize" Value="14" />
<Setter Property="Padding" Value="5" />
<Setter Property="BorderBrush" Value="Green"></Setter>
<Setter Property="BorderThickness" Value="2"></Setter>
<Setter Property="Validation.ErrorTemplate">
<Setter.Value>
<ControlTemplate>
<DockPanel LastChildFill="True">
<TextBlock DockPanel.Dock="Right"
Foreground="Orange"
FontSize="12pt">
!!!!
</TextBlock>
<Border BorderBrush="Green" BorderThickness="1">
<AdornedElementPlaceholder />
</Border>
</DockPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsFocused" Value="true">
<Setter Property="Background" Value="#56585e" />
</Trigger>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Background" Value="#07839a" />
</Trigger>
<Trigger Property="Validation.HasError" Value="true">
<Setter Property="ToolTip"
Value="{Binding RelativeSource={x:Static RelativeSource.Self},
Path=(Validation.Errors)[0].ErrorContent}"/>
<Setter Property="Background" Value="#cb0b38"></Setter>
</Trigger>
<!--<Trigger Property="Validation.HasError" Value="false">
<Setter Property="BorderBrush" Value="Green"></Setter>
<Setter Property="BorderThickness" Value="2"></Setter>
<Setter Property="Background" Value="#2d2f34"></Setter>
</Trigger>-->
</Style.Triggers>
</Style>
以下は私のテキストボックスです
<TextBox x:Name="txtPlayerID" HorizontalAlignment="Left" Height="30" TextWrapping="Wrap"
VerticalContentAlignment="Center"
Style="{StaticResource TxtEmailStyle}" VerticalAlignment="Top" Width="228" FontFamily="Arial Regular"
RenderTransformOrigin="0.408,-2.455" FontSize="14"
Margin="27,0,0,0">
<TextBox.Text>
<Binding Path="playerID" Source="{StaticResource Register}"
ValidatesOnDataErrors="True" NotifyOnValidationError="True"
UpdateSourceTrigger="PropertyChanged">
<Binding.ValidationRules>
<ExceptionValidationRule/>
</Binding.ValidationRules>
</Binding>
</TextBox.Text>
</TextBox>