티스토리 뷰
The Label control http://www.wpf-tutorial.com/basic-controls/the-label-control/
Label에는 Text 속성 대신 Content 속성이 있습니다.
레이블이 단지 텍스트가 아닌 모든 종류의 컨트롤을 직접 호스팅 할 수 있기 때문입니다.
1 2 3 | <Grid> <Label Content="This is a Label control."/> </Grid> | cs |
Label의 특징
- 테두리 지정, 최초에 약간의 padding이 부여
- 다른 컨트롤 (예 : 이미지) 렌더링 가능 (Textblock 은 text만 렌더링 가능)
- ContentTemplate 속성을 통해 템플릿 기반 콘텐츠 사용
- Access Key를 사용하여 관련 컨트롤에 집중
Label과 Access Key(mnemonics)
[Alt] 키를 누르고 있으면 문자가 강조 표시됩니다.
1 2 3 4 5 6 | <StackPanel Margin="10"> <Label Content="_Name:" Target="{Binding ElementName=txtName}" /> 문자 앞에 밑줄(_)을 붙여 액세스 키를 정의합니다. ElementName 속성을 사용하여 Binding을 실시합니다. <TextBox Name="txtName" /> <Label Content="_Mail:" Target="{Binding ElementName=txtMail}" /> <TextBox Name="txtMail" /> </StackPanel> | cs |
[Alt]를 누르고 [N] 또는 [M]을 누르면 binding되어진 TextBox에 포커스를 줄 수 있습니다.
Control을 Label의 content로 사용
이미지와 text 모두 가지고 있는 Label입니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <StackPanel Margin="10"> <Label Target="{Binding ElementName=txtName}"> <StackPanel Orientation="Horizontal"> <Image Source="http://cdn1.iconfinder.com/data/icons/fatcow/16/bullet_green.png" /> <AccessText Text="_Name:" /> </StackPanel> </Label> <TextBox Name="txtName" /> <Label Target="{Binding ElementName=txtMail}"> <StackPanel Orientation="Horizontal"> <Image Source="http://cdn1.iconfinder.com/data/icons/fatcow/16/bullet_blue.png" /> <AccessText Text="_Mail:" /> </StackPanel> </Label> <TextBox Name="txtMail" /> </StackPanel> | cs |
'C# > WPF' 카테고리의 다른 글
WPF tutorial - 복습 및 simple login (0) | 2017.06.21 |
---|---|
WPF tutorial - The TextBox control (0) | 2017.06.20 |
WPF tutorial - The TextBlock control (0) | 2017.06.20 |
WPF tutorial - Handling exceptions in WPF (0) | 2017.06.20 |
WPF tutorial - Resource (0) | 2017.06.20 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 문자열
- 백준
- 백준온라인
- 스택
- Fakebook
- 객체
- listview
- MVVM
- 생활코딩
- CollectionView
- Add TapGesture
- command
- C++
- FEED
- DP
- BOJ
- 그래프
- WPF
- Grid
- dfs
- CustomCollectionViewCell
- Cell Animation
- XAML
- UIView Animation
- 타일링
- 데이터 바인딩
- 코딩야학
- Custom Cell
- BFS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함