locked
Segoe UI Light vs FontWeight="Light" RRS feed

  • Question

  • Hello,

    Why does the following two styles not apply the same style in Silverlight 5? It seams like it is ignoring the FontFamily property.

    Thanks

    Henrik

            <Style x:Key="PageHeaderTextStyle1" TargetType="TextBlock">
                <Setter Property="Foreground" Value="Black"/>
                <Setter Property="FontFamily" Value="Segoe UI Light"/>
                <Setter Property="FontSize" Value="56"/>
            </Style>
    
            <Style x:Key="PageHeaderTextStyle2" TargetType="TextBlock">
                <Setter Property="Foreground" Value="Black"/>
                <Setter Property="FontFamily" Value="Segoe UI"/>
                <Setter Property="FontSize" Value="56"/>
                <Setter Property="FontWeight" Value="Light"/>
            </Style>
    
    Wednesday, March 21, 2012 8:35 AM

Answers

  • Hi,

    Segoe UI Light and Segoe UI are different Font lib.

    The design of all the letters are different.

     


     

    Thursday, March 22, 2012 10:13 PM