Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering, if there is a way to create style triggers in xaml for WP8.

In WPF it was as easy as this:

<Style.Triggers>
  <Trigger Property="Text" Value="derp">
    <Setter Property="FontSize" Value="24"/>
    <Setter Property="Foreground" Value="Red"/>
  </Trigger>
</Style.Triggers>

What i got so far:

<phone:PhoneApplicationPage.Resources>
    <Style x:Name="MyTextBlockStyle" TargetType="TextBlock">
        <!-- a trigger -->
    </Style>
</phone:PhoneApplicationPage.Resources>

I found a solution by adding a property and binding it to my element.

private string _color = "Black";
public string Color
{
    get { return _color; }
    set
    {
        if (value != _color)
        {
            _color = value;
            NotifyPropertyChanged("Color");
        }
    }
}


public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(String propertyName)
{
    PropertyChangedEventHandler handler = PropertyChanged;
    if (null != handler)
    {
        handler(this, new PropertyChangedEventArgs(propertyName));
    }
}

.

 <Rectangle Width="5" Fill="{Binding LessonColor}"/>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.