9 instantiations of FontSource
PresentationCore (9)
Core\CSharp\MS\Internal\FontCache\FamilyCollection.cs (1)
358FontSource fontSource = new FontSource(new Uri(FamilyCollection.SxSFontsLocation + _systemCompositeFontsFileNames[index] + Util.CompositeFontExtension, UriKind.Absolute),
Core\CSharp\MS\Internal\FontCache\FontSource.cs (1)
47return new FontSource(new Uri(uriString), false);
Core\CSharp\MS\Internal\FontCache\FontSourceCollection.cs (5)
105_fontSources.Add(new FontSource(_uri, false, isComposite)); 256fontSources.Add(new FontSource(new Uri(file, UriKind.Absolute), _isWindowsFonts, true)); 265fontSources.Add(new FontSource(new Uri(file, UriKind.Absolute), _isWindowsFonts, isComposite)); 289fontSources.Add(new FontSource(_uri, _isWindowsFonts, isComposite)); 294fontSources.Add(new FontSource(new Uri(_uri, resourceName), _isWindowsFonts, isComposite));
Core\CSharp\System\Windows\Media\GlyphTypeface.cs (2)
123_fontSource = new FontSource(typefaceSource, true); 199_fontSource = new FontSource(fontSourceUri, true);
5 references to FontSource
PresentationCore (5)
Core\CSharp\MS\Internal\FontCache\FamilyCollection.cs (2)
140foreach (FontSource fontSource in fontSourceCollection) 358FontSource fontSource = new FontSource(new Uri(FamilyCollection.SxSFontsLocation + _systemCompositeFontsFileNames[index] + Util.CompositeFontExtension, UriKind.Absolute),
Core\CSharp\MS\Internal\FontCache\FontCacheUtil.cs (1)
957internal static Exception ConvertInPageException(FontSource fontSource, SEHException e)
Core\CSharp\System\Windows\Media\GlyphTypeface.cs (2)
1895internal FontSource FontSource 2367private FontSource _fontSource;