FontCollectionExtensions.AddFont(IFontCollection, String, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 中指定的 filename
字体添加到 , fontCollection
并在 中 alias
指定了可选的字体别名。
public static Microsoft.Maui.Hosting.IFontCollection AddFont (this Microsoft.Maui.Hosting.IFontCollection fontCollection, string filename, string? alias = default);
static member AddFont : Microsoft.Maui.Hosting.IFontCollection * string * string -> Microsoft.Maui.Hosting.IFontCollection
<Extension()>
Public Function AddFont (fontCollection As IFontCollection, filename As String, Optional alias As String = Nothing) As IFontCollection
参数
- fontCollection
- IFontCollection
要向其添加字体的集合。
- filename
- String
要添加的字体的文件名,例如 true 类型格式 (TTF) 或打开字体 (OTF) 字体文件。 可以将字体文件添加到 .NET MAUI 项目的“Resources\Fonts”中。
- alias
- String
一个可选别名,也可用于引用此字体。
返回
例外
filename
参数为 null
。
参数 filename
为空或只有空格。