8 references to FontSource
Microsoft.Maui.Graphics (8)
FontSource.cs (7)
7 public struct FontSource : IEquatable<FontSource> 19 public bool Equals(FontSource other) 31 public override bool Equals(object? obj) => obj is FontSource other && Equals(other); 33 public static bool operator ==(FontSource left, FontSource right) => left.Equals(right); 35 public static bool operator !=(FontSource left, FontSource right) => !(left == right);
IPlatformFonts.cs (1)
14 void Register(string alias, params FontSource[] sources);