Year End Sale: Get Upto 40% OFF on Live Training! Offer Ending in
D
H
M
S
Get Now

Different Types of Triggers in WPF

25 Oct 2024
Intermediate
52.1K Views
2 min read

Triggers are used to change the style of a control when control’s property value changes or event fires. Triggers create visual effects on controls. By using triggers you can also change the appearance of framework elements.

Read More - Top DBMS Interview Questions and Answers

Types of Triggers in WPF

  1. Property Trigger

    This trigger gets active when UIElements property value changes. The below Trigger is created on Button. It will set Opacity to 0.5 when Buttons IsPressed property change.

    <Style x:Key="ButtonStyle" TargetType="{x:Type Button}">
     <Style.Triggers>
     <Trigger Property="IsPressed" Value="True">
     <Setter Property="Opacity" Value="0.5" />
     </Trigger>
     <Trigger Property="IsEnabled" Value="False">
     <Setter Property="Foreground" Value="Red" />
     </Trigger>
     </Style.Triggers>
    </Style>
    
  2. Event Trigger

    This trigger gets active when RoutedEvent of FrameworkElement raise. Event Trigger is generally used to perform some animation on control like as colorAnimation, doubleAnumation using KeyFrame etc.

    The below trigger is used to animate/change the color property (SolidColorBrush, LinearGradientBrush ) of the UIElement at defined time duration.

    <Border Name="border1" Width="100" Height="30"
     BorderBrush="Black" BorderThickness="1">
     <Border.Background>
     <SolidColorBrush x:Name="MyBorder" Color="LightBlue" />
     </Border.Background>
     <Border.Triggers>
     <EventTrigger RoutedEvent="Mouse.MouseEnter">
     <BeginStoryboard>
     <Storyboard>
     <ColorAnimation Duration="0:0:1"
     Storyboard.TargetName="MyBorder"
     Storyboard.TargetProperty="Color"
     To="Gray" />
     </Storyboard>
     </BeginStoryboard>
     </EventTrigger>
     </Border.Triggers&
     gt;
    </Border>
    
  3. Data Trigger

    This trigger gets active when Binding Data matches specified condition. Below DataTrigger is created on Picture property of binding data. Setter objects of the DataTrigger describes property values to apply when binding data match the condition. Picture is Byte[] property of the class. If Picture is null then DataTrigger applies on image to set image source to noImage.png, otherwise it will set image source from picture.

    Same as if picture is null, applies TextBlock value to "No Image Availalbe" and foreground color to red otherwise sets default value from data.

    <DataTemplate>
     <Grid Margin="0 5 0 0">
     <Grid.RowDefinitions>
     <RowDefinition Height="Auto" />
     <RowDefinition Height="Auto" />
     </Grid.RowDefinitions>
     <Image x:Name="viewImage"
     Grid.Row="0" Width="100"
     Height="60" HorizontalAlignment="Center"
     Source="{Binding Picture}" Stretch="Fill" />
     <TextBlock x:Name="viewText"
     Grid.Row="1" Margin="0 5 0 0"
     HorizontalAlignment="Center"
     FontWeight="Black" Foreground="Green"
     Text="{Binding Title}" />
     </Grid>
     <DataTemplate.Triggers>
     <DataTrigger Binding="{Binding Path=Picture}" Value="{x:Null}">
     <Setter TargetName="viewImage" Property="Source" Value="/Images/noImage.png" />
     <Setter TargetName="viewText" Property="Text" Value="No Image Available" />
     <Setter TargetName="viewText" Property="Foreground" Value="Red" />
     </DataTrigger>
     </DataTemplate.Triggers>
    </DataTemplate>
    
    What do you think?

    I hope you will enjoy the tips while programming with WPF. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

Share Article
About Author
Shailendra Chauhan (Microsoft MVP, Founder & CEO at Scholarhat by DotNetTricks)

Shailendra Chauhan, Founder and CEO of ScholarHat by DotNetTricks, is a renowned expert in System Design, Software Architecture, Azure Cloud, .NET, Angular, React, Node.js, Microservices, DevOps, and Cross-Platform Mobile App Development. His skill set extends into emerging fields like Data Science, Python, Azure AI/ML, and Generative AI, making him a well-rounded expert who bridges traditional development frameworks with cutting-edge advancements. Recognized as a Microsoft Most Valuable Professional (MVP) for an impressive 9 consecutive years (2016–2024), he has consistently demonstrated excellence in delivering impactful solutions and inspiring learners.

Shailendra’s unique, hands-on training programs and bestselling books have empowered thousands of professionals to excel in their careers and crack tough interviews. A visionary leader, he continues to revolutionize technology education with his innovative approach.
Accept cookies & close this