티스토리 뷰
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 |
'C# > WPF' 카테고리의 다른 글
WPF tutorial - Implementing a custom WPF Command (0) | 2017.06.29 |
---|---|
WPF tutorial - Using WPF commands (0) | 2017.06.29 |
WPF tutorial - Value conversion with IValueConverter (1) | 2017.06.25 |
WPF tutorial - 중간점검 (0) | 2017.06.23 |
WPF tutorial - Responding to changes (0) | 2017.06.22 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- CustomCollectionViewCell
- 스택
- Custom Cell
- BFS
- WPF
- 백준
- 데이터 바인딩
- 코딩야학
- CollectionView
- BOJ
- 그래프
- 객체
- Grid
- FEED
- dfs
- 타일링
- listview
- XAML
- Add TapGesture
- C++
- Fakebook
- UIView Animation
- DP
- 생활코딩
- command
- 문자열
- Cell Animation
- 백준온라인
- MVVM
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함