Skip to content

ArcticLampyrid/WpfFontPicker

Repository files navigation

WpfFontPicker

NuGet
Namespace: QIQI.WpfFontPicker(CLR) or xmlns:fp="https://github.com/1354092549/WpfFontPicker"(XAML)

Install

Package Manager Install-Package QIQI.WpfFontPicker
.NET CLI dotnet add package QIQI.WpfFontPicker

Usage

See QIQI.Sample.WpfFontPicker

Preview

Screenshot 1

<StackPanel Orientation="Vertical">
    <Button x:Name="OpenFontDialogButton" Click="OpenFontDialogButton_Click">OpenFontDialog</Button>
    <fp:FontPicker x:Name="FontPicker1"/>
</StackPanel>
private void OpenFontDialogButton_Click(object sender, RoutedEventArgs e)
{
    FontPicker1.OpenFontDialog();
}