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}"/>