9 instantiations of FontSource
PresentationCore (9)
MS\Internal\FontCache\FamilyCollection.cs (1)
253FontSource fontSource = new FontSource(new Uri(Path.Combine(FamilyCollection.SxSFontsResourcePrefix, _systemCompositeFontsFileNames[index] + Util.CompositeFontExtension), UriKind.RelativeOrAbsolute),
MS\Internal\FontCache\FontSource.cs (1)
42return new FontSource(new Uri(uriString), false);
MS\Internal\FontCache\FontSourceCollection.cs (5)
77_fontSources.Add(new FontSource(_uri, false, isComposite)); 190fontSources.Add(new FontSource(new Uri(file, UriKind.Absolute), _isWindowsFonts, true)); 199fontSources.Add(new FontSource(new Uri(file, UriKind.Absolute), _isWindowsFonts, isComposite)); 223fontSources.Add(new FontSource(_uri, _isWindowsFonts, isComposite)); 228fontSources.Add(new FontSource(new Uri(_uri, resourceName), _isWindowsFonts, isComposite));
System\Windows\Media\GlyphTypeface.cs (2)
108_fontSource = new FontSource(typefaceSource, true); 162_fontSource = new FontSource(fontSourceUri, true);
5 references to FontSource
PresentationCore (5)
MS\Internal\FontCache\FamilyCollection.cs (2)
66foreach (FontSource fontSource in fontSourceCollection) 253FontSource fontSource = new FontSource(new Uri(Path.Combine(FamilyCollection.SxSFontsResourcePrefix, _systemCompositeFontsFileNames[index] + Util.CompositeFontExtension), UriKind.RelativeOrAbsolute),
MS\Internal\FontCache\FontCacheUtil.cs (1)
787internal static Exception ConvertInPageException(FontSource fontSource, SEHException e)
System\Windows\Media\GlyphTypeface.cs (2)
1545internal FontSource FontSource 1984private FontSource _fontSource;