Different Types of Triggers in WPF

Different Types of Triggers in WPF

02 Aug 2025
Intermediate
53.7K Views
2 min read
Learn with an interactive course and practical hands-on labs

Best Free C# Course: Learn C# In 21 Days

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)

He is a renowned Speaker, Solution Architect, Mentor, and 10-time Microsoft MVP (2016–2025). With expertise in AI/ML, GenAI, System Design, Azure Cloud, .NET, Angular, React, Node.js, Microservices, DevOps, and Cross-Platform Mobile App Development, he bridges traditional frameworks with next-gen innovations.

He has trained 1 Lakh+ professionals across the globe, authored 45+ bestselling eBooks and 1000+ technical articles, and mentored 20+ free courses. As a corporate trainer for leading MNCs like IBM, Cognizant, and Dell, Shailendra continues to deliver world-class learning experiences through technology & AI.
Live Training - Book Free Demo
ASP.NET Core Certification Training
21 Sep
07:00AM - 09:00AM IST
Checkmark Icon
Get Job-Ready
Certification
Accept cookies & close this