7 references to FontStyle
PresentationCore (7)
MS\Internal\FontCache\FamilyCollection.cs (1)
405fontStyle = new FontStyle((int)font.Style);
MS\Internal\FontFace\PhysicalFontFamily.cs (1)
215_style = new MatchingStyle(new FontStyle((int)face.Style), new FontWeight((int)face.Weight), new FontStretch((int)face.Stretch));
MS\Internal\FontFace\TypefaceCollection.cs (1)
155return new Typeface(_typefaceCollection._fontFamily, new FontStyle((int)face.Style), new FontWeight((int)face.Weight), new FontStretch((int)face.Stretch));
System\Windows\FontStyles.cs (3)
19public static FontStyle Normal { get { return new FontStyle(0); } } 24public static FontStyle Oblique { get { return new FontStyle(1); } } 29public static FontStyle Italic { get { return new FontStyle(2); } }
System\Windows\Media\GlyphTypeface.cs (1)
564return new FontStyle((int)_font.Style);