テキストボックスがフォーカスされていないときにWpfでテキストを強調表示する方法は? (.NET 4.0)
質問する
990 次
2 に答える
0
TextBox.LostFocus/GotFoxusイベントにEventTriggerでスタイルを使用できます。
これにより、「LostFocus」が「true」の場合、1秒の遅延でTextBoxForegroundがRedに変更されます。
<Style x:Key="tboxStandard"
TargetType="{x:Type TextBox}">
<Setter Property="BorderThickness"
Value="2" />
<Setter Property="BorderBrush"
Value="#292929" />
<Setter Property="Background"
Value="#E9E9E9" />
<Setter Property="TextAlignment"
Value="Center" />
<Setter Property="Foreground"
Value="#191919" />
<Style.Triggers>
<EventTrigger RoutedEvent="TextBox.GotFocus">
<EventTrigger.Actions>
<BeginStoryboard>
<Storyboard>
<ColorAnimation Storyboard.TargetProperty="(TextBox.Foreground).(SolidColorBrush.Color)"
To="#191919"
Duration="0:0:1" />
</Storyboard>
</BeginStoryboard>
</EventTrigger.Actions>
</EventTrigger>
<EventTrigger RoutedEvent="TextBox.LostFocus">
<EventTrigger.Actions>
<BeginStoryboard>
<Storyboard>
<ColorAnimation Storyboard.TargetProperty="(TextBox.Foreground).(SolidColorBrush.Color)"
To="Red"
Duration="0:0:1" />
</Storyboard>
</BeginStoryboard>
</EventTrigger.Actions>
</EventTrigger>
</Style.Triggers>
于 2013-03-21T15:42:00.900 に答える
0
TextBox の LostFocus イベントを処理する場合、次のコードを使用して TextBox の内容を選択できます。
textBox.SelectAll();
e.Handled = true;
于 2013-03-21T10:31:23.393 に答える