In the following example, the Label is rendered as green and bold. But not 60 in size.
Is there something I am doing wrong? (Using 1.3.1 Pre2)
App.Current.Resources = new ResourceDictionary();
App.Current.Resources.Add( new Style(typeof (Label))
{
Setters =
{
new Setter()
{
Property = Label.TextColorProperty,
Value = Color.Green
},
new Setter()
{
Property = Label.FontSizeProperty,
Value = 60m
}
,
new Setter()
{
Property = Label.FontAttributesProperty,
Value = FontAttributes.Bold
}
}
});