7 references to FontStyle
PresentationCore (7)
Core\CSharp\MS\Internal\FontCache\FamilyCollection.cs (1)
571fontStyle = new FontStyle((int)font.Style);
Core\CSharp\MS\Internal\FontFace\PhysicalFontFamily.cs (1)
254_style = new MatchingStyle(new FontStyle((int)face.Style), new FontWeight((int)face.Weight), new FontStretch((int)face.Stretch));
Core\CSharp\MS\Internal\FontFace\TypefaceCollection.cs (1)
187return new Typeface(_typefaceCollection._fontFamily, new FontStyle((int)face.Style), new FontWeight((int)face.Weight), new FontStretch((int)face.Stretch));
Core\CSharp\System\Windows\FontStyles.cs (3)
25public static FontStyle Normal { get { return new FontStyle(0); } } 30public static FontStyle Oblique { get { return new FontStyle(1); } } 35public static FontStyle Italic { get { return new FontStyle(2); } }
Core\CSharp\System\Windows\Media\GlyphTypeface.cs (1)
761return new FontStyle((int)_font.Style);