티스토리 뷰

C#/WPF

WPF tutorial - The StringFormat property

광그로 2017. 6. 25. 03:18

http://www.wpf-tutorial.com/data-binding/the-stringformat-property/


covnerter의 멋있는 점은 모든 데이터 타입을 완벽히 다른 데이터 타입으로 변환할 수 있는 것입니다.

StringFormat 속성은 데이터 타입의 변환을 하지 않고, 표시하는 방식만을 다르게 하는 것을 지원합니다.


1
2
3
4
5
6
7
8
9
  Title="MainWindow" Height="200" Width="350" Name="wnd">
 
 
 <StackPanel Margin="10">
        <TextBlock Text="{Binding ElementName=wnd, Path=ActualWidth, StringFormat=Window width: {0:#,#.0}}" />
        <TextBlock Text="{Binding ElementName=wnd, Path=ActualHeight, StringFormat=Window height:{0:C}}"></TextBlock>
        <TextBlock Text="{Binding Source={x:Static system:DateTime.Now}, StringFormat=Data: {0:dddd, MMMM dd}}"></TextBlock>
        <TextBlock Text="{Binding Source={x:Static system:DateTime.Now}, StringFormat=Time: {0:HH:mm}}"></TextBlock>
    </StackPanel>
cs


Formatting without extra text


사용자 정의 텍스트를 포함하지 않는 형식 문자를 지정한다면, XAML에서 정의할 때 추가적인 중괄호를 추가해야합니다. 

1
2
3
4
Title="MainWindow" Height="200" Width="350" Name="wnd">
    <WrapPanel Margin="10">
        <TextBlock Text="Width : " />
        <TextBlock Text="{Binding ElementName=wnd, Path=ActualWidth, StringFormat={}{0:#,#.0}}" />
cs


1
<TextBlock Text="{Binding ElementName=wnd, Path=ActualWidth, StringFormat={0:#,#.0}}" />
cs
이와 같이 사용하면 오류가 발생한다.







공지사항
최근에 올라온 글
최근에 달린 댓글
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
글 보관함