Please enable Javascript to correctly display the contents on Dot Net Tricks!
 
Become an Expert in C#, .NET, MVC, JAVA, PHP, AngularJS, Hadoop, Android, iphone, Testing etc.
by Joining our Training Programs and Take Your Career to the Next Level! To know more make a call on +91 98 71 749695

Different Types of Triggers in WPF

Posted By : Shailendra Chauhan, 09 Oct 2013
Total Views : 15,000   
 
Keywords : property trigger vs event trigger vs data trigger,difference between property trigger and event trigger and data trigger, various types of triggers in wpf

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.

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.

 
Further Reading
 
About the Author
Hey! I'm Shailendra Chauhan full-time author, consultant & trainer. I have more than 6 years of hand over Microsoft .NET technologies and other web technologies like JavaScript, AngularJS, NodeJS etc. I am an entrepreneur, the founder & chief editor of www.dotnet-tricks.com and www.dotnettricks.com. I am author of most popular e-books for technical Interview on ASP.NET MVC Interview Questions and Answers & AngularJS Interview Questions and Answers & LINQ Interview Questions and Answers.
I have delivered 100+ training sessions to professional world-wide over Microsoft .NET technologies such C#, ASP.NET MVC, WCF, Entity Framework and other mobile technologies such Ionic, PhoneGap, Corodva. Read more...
 
Free Interview Books
 
SUBSCRIBE & FOLLOW US
 
Browse By Category
 
 
Like us on Facebook