7 references to FontStyle
PresentationCore (7)
MS\Internal\FontCache\FamilyCollection.cs (1)
409
fontStyle = 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)
156
return new Typeface(_typefaceCollection._fontFamily, new
FontStyle
((int)face.Style), new FontWeight((int)face.Weight), new FontStretch((int)face.Stretch));
System\Windows\FontStyles.cs (3)
20
public static FontStyle Normal { get { return new
FontStyle
(0); } }
25
public static FontStyle Oblique { get { return new
FontStyle
(1); } }
30
public static FontStyle Italic { get { return new
FontStyle
(2); } }
System\Windows\Media\GlyphTypeface.cs (1)
565
return new
FontStyle
((int)_font.Style);