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