7 references to FontStyle
PresentationCore (7)
Core\CSharp\MS\Internal\FontCache\FamilyCollection.cs (1)
571
fontStyle = 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)
187
return 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)
25
public static FontStyle Normal { get { return new
FontStyle
(0); } }
30
public static FontStyle Oblique { get { return new
FontStyle
(1); } }
35
public static FontStyle Italic { get { return new
FontStyle
(2); } }
Core\CSharp\System\Windows\Media\GlyphTypeface.cs (1)
761
return new
FontStyle
((int)_font.Style);