當鼠標將鼠標懸停時,我試圖將OuterGlowBitmapEffect
效果添加到TextBox
。 我使用觸發器。這裏是一些代碼:TextBox中的樣式和觸發器
<TextBox Height="23" HorizontalAlignment="Left" Style="{DynamicResource TextBoxStyle}" Margin="12,283,0,0" Name="textBox1" VerticalAlignment="Top" Width="147" Text="" />
<Style x:Key="TextBoxStyle" TargetType="{x:Type TextBox}">
<Setter Property="FontSize" Value="14" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="BitmapEffect">
<Setter.Value>
<OuterGlowBitmapEffect GlowColor="Red" GlowSize="10"/>
</Setter.Value>
</Setter>
</Trigger>
</Style.Triggers>
</Style>
但它不工作。我錯過了什麼?
你不應該使用['BitmapEffect'(http://msdn.microsoft.com/en-us/library/system.windows.uielement.bitmapeffect.aspx) 。 –
那麼我需要使用什麼? –
它在第一行 –