10 references to Typeface
PresentationCore (8)
Core\CSharp\MS\Internal\FontFace\TypefaceCollection.cs (2)
187return new Typeface(_typefaceCollection._fontFamily, new FontStyle((int)face.Style), new FontWeight((int)face.Weight), new FontStretch((int)face.Stretch)); 192return new Typeface(_typefaceCollection._fontFamily, familyTypeface.Style, familyTypeface.Weight, familyTypeface.Stretch);
Core\CSharp\MS\Internal\TextFormatting\TextMarkerSource.cs (1)
86new Typeface(
Core\CSharp\System\Windows\Media\FormattedText.cs (4)
444new Typeface(fontFamily, oldTypeface.Style, oldTypeface.Weight, oldTypeface.Stretch), 670new Typeface(oldTypeface.FontFamily, oldTypeface.Style, weight, oldTypeface.Stretch), 722new Typeface(oldTypeface.FontFamily, style, oldTypeface.Weight, oldTypeface.Stretch), 775new Typeface(oldTypeface.FontFamily, oldTypeface.Style, oldTypeface.Weight, stretch),
Core\CSharp\System\Windows\Media\Typeface.cs (1)
62: this(
PresentationFramework (2)
src\Framework\MS\Internal\Text\DynamicPropertyReader.cs (2)
54return new Typeface(fontFamily, fontStyle, fontWeight, fontStretch); 65return new Typeface(fontFamily, fontStyle, fontWeight, fontStretch);