I've declared the below style. How can I override the style foreground color dynamically in my vb.net?
<Style x:Key="LabelWinner" TargetType="{x:Type Label}">
<Setter Property="Effect">
<Setter.Value>
<DropShadowEffect Color="#FF000000" ShadowDepth="6" />
</Setter.Value>
</Setter>
<Setter Property="Foreground" Value="#FFFF0000"/>
</Style>
As mentioned in the comment
@nit
, In WPF have a powerful system behavior properties in the form ofStyle.Triggers
.Earlier, in
WinForms
to change a specific property, we had to do it through the code that was not quite comfortable and practical. The developers of WPF decided to separate the visual logic related to the appearance of the program, and business logic, which contains the desired behavior of the program. Actually, it was aStyle
.To set the
Style
trigger, you need to select the appropriate properties. The trigger is as follows:For example, we want to see, when you hover the mouse cursor changes
Foreground
color andFontSize
. Then we choose the propertyIsMouseOver
, and then write aTrigger
:It should be remembered, that in WPF have a list of value precedence (
MSDN
), that the local value of a higher priority than the trigger style. Therefore, if you value for property ofLabel
will be set locally, the trigger will not be able to change it, for example:If the standard property are missing, or the need to implement your scenario, then it have the attached dependency property (
MSDN
). Inside it, you can set any condition, for example to start the animation and the trigger in the style it will work.Example of trigger with attached dependency property: