■ InstalledFontCollection 클래스의 Families 속성을 사용해 한글 폰트명 리스트를 구하는 방법을 보여준다.
※ 상기 클래스를 사용하기 위해서 System.Drawing.Common 누겟을 설치한다.
※ 비주얼 스튜디오에서 TestProject(Unpackaged) 모드로 빌드한다.
※ TestProject.csproj 프로젝트 파일에서 WindowsPackageType 태그를 None으로 추가했다.
▶ FontHelper.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
using System.Collections.Generic; using System.Drawing; using System.Drawing.Text; using System.Linq; namespace TestProject; /// <summary> /// 폰트 헬퍼 /// </summary> public class FontHelper { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 폰트명 리스트 구하기 - GetFontNameList() /// <summary> /// 폰트명 리스트 구하기 /// </summary> /// <returns>폰트명 리스트</returns> public static List<string> GetFontNameList() { List<string> list = new List<string>(); using(InstalledFontCollection installedFontCollection = new InstalledFontCollection()) { FontFamily[] fontFamilyArray = installedFontCollection.Families; foreach(FontFamily fontFamily in fontFamilyArray) { list.Add(fontFamily.Name); } } return list.OrderBy(x => x).ToList(); } #endregion } |
▶ MainPage.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<?xml version="1.0" encoding="utf-8"?> <Page x:Class="TestProject.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" FontFamily="나눔고딕코딩" FontSize="16"> <ListBox Name="fontListBox" Margin="10" BorderThickness="1" BorderBrush="DarkGray" Padding="10" /> </Page> |
▶ MainPage.xaml.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
using Microsoft.UI.Xaml.Controls; namespace TestProject; /// <summary> /// 메인 페이지 /// </summary> public sealed partial class MainPage : Page { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainPage() /// <summary> /// 생성자 /// </summary> public MainPage() { InitializeComponent(); this.fontListBox.ItemsSource = FontHelper.GetFontNameList(); } #endregion } |