Click here to Skip to main content
Click here to Skip to main content

WPF: DataTrigger on a TextBlock!

By , 8 Sep 2009
 

How does one add a DataTrigger to a TextBlock and provide some default value? Well, it's actually quite simple, but I have noticed that quite a few people fall down on this one. Firstly, you cannot have set a DataTrigger on anything that is not a Style, ControlTemplate, or DataTemplate. Great, so I will set up a Style for my TextBlock, right? The answer is yes, but you must ensure that you do not override the Text property in your TextBlock, and set the default value in the Style instead like this :

<style x:Key="StatusBlock"
  TargetType="TextBlock"
  BasedOn="{StaticResource {x:Type TextBlock}}">
    <setter Property="Text" Value="Default Text!"/>
</style>
<style .Triggers>
    <datatrigger 
      Binding="{Binding Path=CurrentView.IsRefreshing}"
      Value="true">
          <setter Property="TextBlock.Text"
                Value="Status: Refreshing! (please wait)..."/>
    </datatrigger>
</style>

Your TextBlock should be defined with the text not set, like this:

<textblock Style="{StaticResource StatusBlock}"/>

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)

About the Author

Steve Psaltis
Software Developer
United Kingdom United Kingdom
Member
We cannot achieve perfection but we can strive for excellence. Excellence through creativity that pushes innovation, collaboration that facilitates productivity, knowledge that empowers people and persistence that eventually pays off !
 
Enjoy what you do and do what you enjoy !

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 1memberClifford Nelson5 Jun '12 - 8:23 
GeneralMy vote of 3memberMahmudul Haque Azad9 Mar '11 - 19:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 8 Sep 2009
Article Copyright 2009 by Steve Psaltis
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid