这似乎是WPF中的一个错误,但也许有人对此有一个答案。 我有一个可编辑ComboBox的DataTrigger。它适用于我的TabControl的第一个TabItem,但不适用于第二个。如果您使用第二个TabItem切换第一个,则“秒”将起作用。将样式精确地赋予ComboBox(ComboBox.Style ...)时会发生相同的效果。
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="MainWindow"
x:Name="Window"
Title="MainWindow"
Width="640" Height="480">
<Window.Resources>
<Style TargetType="{x:Type ComboBox}">
<Setter Property="Height" Value="25" />
<Setter Property="Width" Value="125" />
<Style.Triggers>
<DataTrigger Binding="{Binding ElementName=PART_EditableTextBox, Path=IsFocused}" Value="True">
<Setter Property="BitmapEffect">
<Setter.Value>
<OuterGlowBitmapEffect GlowColor="Red" GlowSize="5" />
</Setter.Value>
</Setter>
</DataTrigger>
</Style.Triggers>
</Style>
</Window.Resources>
<Grid x:Name="LayoutRoot">
<TabControl>
<TabItem Header="TabItem1">
<Grid>
<ComboBox IsEditable="True"/>
</Grid>
</TabItem>
<TabItem Header="TabItem2">
<Grid>
<ComboBox IsEditable="True"/>
</Grid>
</TabItem>
</TabControl>
</Grid>
答案 0 :(得分:1)
它似乎是一个错误
改为使用:
Style.Triggers>
<Trigger Property="IsKeyboardFocusWithin" Value="True">
<Setter Property="BitmapEffect">
<Setter.Value>
<OuterGlowBitmapEffect GlowColor="Red" GlowSize="5" />
</Setter.Value>
</Setter>
</Trigger>
</Style.Triggers>