티스토리 뷰

C#/WPF

WPF tutorial - WPF text rendering

광그로 2017. 6. 22. 16:32

http://www.wpf-tutorial.com/control-concepts/text-rendering/


WinForms는 Windows로부터의 GDI API를 이용하고, WPF는 자체 텍스트 렌터링 구현을 이용하여 애니메이션을 잘 지원합니다.

Microsoft는 .NET FrameWork 4.0을 사용하여 TextOptions 클래스의 TextFormattingMode, TextRenderingMode 속성으로 텍스트 렌더링의 제어권을 주는 것을 결정했습니다.


TextFormattingMode


ideal인경우와, Display의 경우에 따라 약간의 차이가 나는 것을 볼 수 있습니다.

대부분의 경우에 ideal인 경우가 적합하지만, 매우 작은 텍스트의 경우 Display가 적합할 수 있습니다.

1
2
3
4
5
6
 <StackPanel Margin="10">
        <Label TextOptions.TextFormattingMode="Ideal" FontSize="9">TextFormattingMode.Ideal, small text</Label>
        <Label TextOptions.TextFormattingMode="Display" FontSize="9">TextFormattingMode.Display, small text</Label>
        <Label TextOptions.TextFormattingMode="Ideal" FontSize="20">TextFormattingMode.Ideal, large text</Label>
        <Label TextOptions.TextFormattingMode="Display" FontSize="20">TextFormattingMode.Display, large text</Label>
    </StackPanel>
cs



TextRenderingMode 


렌더링 모드에 따라서 텍스트의 렌더링에 미묘한 차이들이 존재합니다.


1
2
3
4
5
6
7
8
9
10
<StackPanel Margin="10">
        <Label TextOptions.TextRenderingMode="Auto" FontSize="9">TextRenderingMode.Auto, small text</Label>
        <Label TextOptions.TextRenderingMode="Aliased" FontSize="9">TextRenderingMode.Aliased, small text</Label>
        <Label TextOptions.TextRenderingMode="ClearType" FontSize="9">TextRenderingMode.ClearType, small text</Label>
        <Label TextOptions.TextRenderingMode="Grayscale" FontSize="9">TextRenderingMode.Grayscale, small text</Label>
        <Label TextOptions.TextRenderingMode="Auto" FontSize="18">TextRenderingMode.Auto, large text</Label>
        <Label TextOptions.TextRenderingMode="Aliased" FontSize="18">TextRenderingMode.Aliased, large text</Label>
        <Label TextOptions.TextRenderingMode="ClearType" FontSize="18">TextRenderingMode.ClearType, large text</Label>
        <Label TextOptions.TextRenderingMode="Grayscale" FontSize="18">TextRenderingMode.Grayscale, large text</Label>
    </StackPanel>
cs



'C# > WPF' 카테고리의 다른 글

WPF tutorial - The Canvas  (0) 2017.06.22
WPF tutorial - Introduction to WPF panels  (0) 2017.06.22
WPF tutorial - Control ToolTips  (0) 2017.06.22
WPF tutorial - The PasswordBox control  (0) 2017.06.22
WPF tutorial - The RadioButton control  (0) 2017.06.22
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
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
글 보관함