markus / Markus.Fonts / MarkusFont.cs @ master
이력 | 보기 | 이력해설 | 다운로드 (556 Bytes)
1 | 24c5e56c | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | |||
6 | namespace Markus.Fonts |
||
7 | { |
||
8 | public class MarkusFont |
||
9 | { |
||
10 | public string ResourceName { get; set; } |
||
11 | public string[] FamilyNames { get; set; } |
||
12 | |||
13 | public string FontFamilyName { get; set; } |
||
14 | |||
15 | public bool IsDefault { get; set; } |
||
16 | |||
17 | public System.Windows.Media.FontFamily FontFamily |
||
18 | { |
||
19 | get { return Markus.Fonts.FontHelper.GetFontFamily(this.FontFamilyName); } |
||
20 | private set { } |
||
21 | } |
||
22 | } |
||
23 | |||
24 | } |