[WPF] WPF Label, Textblock, Textbox 컨트롤 연습하기
- C#/WPF
- 2021. 1. 17. 21:23
안녕하세요.
오늘은 WPF에서 Label, Textblock, Textbox 컨트롤을 이용하는 방법에 대해서 알아보려고 합니다.
큰 설명 없이 각 컨트롤들을 Xaml로 표현해서 제가 원하는 디자인으로 마음대로 배치를 해보는 연습을 하겠습니다.
그냥 간단히 고객관리? UI를 구성해 보도록 할게요.
Xaml.cs
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<Window x:Class="ch00.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:ch00"
mc:Ignorable="d"
Title="고객등록" Height="450" Width="400"
FocusManager.FocusedElement="{Binding ElementName=txtName}">
<Grid Margin="10">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Border Grid.Row="0" Grid.Column="0" BorderBrush="Black" BorderThickness="1"
Background="Beige">
<Label Content="성명(_N):"
Target="{Binding ElementName=txtName}"/>
</Border>
<TextBox x:Name="txtName" Grid.Row="0" Grid.Column="1" />
<Border Grid.Row="1" Grid.Column="0" BorderBrush="Black" BorderThickness="1"
Background="Beige">
<StackPanel Orientation="Horizontal" Margin="5">
<Image Source="/tel.png" Width="20"/>
<Label Content="전화번호(_T):"
Target="{Binding ElementName=txtTel}"/>
</StackPanel>
</Border>
<TextBox x:Name="txtTel" Grid.Row="1" Grid.Column="1" />
<Border Grid.Row="2" Grid.Column="0" BorderBrush="Black" BorderThickness="1"
Background="Beige">
<Label Content="성별(_S):"
Target="{Binding ElementName=txtSex}"/>
</Border>
<TextBox x:Name="txtSex" Grid.Row="2" Grid.Column="1" />
<Border Grid.Row="3" Grid.Column="0" BorderBrush="Black" BorderThickness="1"
Background="Beige">
<Label Content="비고(_M):"
Target="{Binding ElementName=txtM}"/>
</Border>
<TextBox x:Name="txtM" Grid.Row="3" Grid.Column="1" Height="100"
AcceptsReturn="True" AcceptsTab="True"
VerticalScrollBarVisibility="Auto"
TextWrapping="Wrap"/>
</Grid>
</Window>
|
cs |
실행 결과
위와 같이 Label, Textblock, Textbox 컨트롤들을 Xaml로 배치하여 원하는 속성들을 넣고 디자인 해보았습니다.
728x90
'C# > WPF' 카테고리의 다른 글
[WPF] WPF Grid 패널 사용 방법 (0) | 2021.01.19 |
---|---|
[WPF] WPF 중복 실행 방지 하는법 (0) | 2021.01.18 |
[WPF] WPF Grid 컨트롤 공유하는(Grid Shared) 방법 (0) | 2021.01.17 |
[WPF] WPF 데이터 바인딩 (0) | 2021.01.17 |
[WPF] WPF Content 이용하여 컨트롤 다루기 (0) | 2021.01.16 |
이 글을 공유하기