자 오늘은 위와 같이 DatePicker 를 이용하여 날짜를 입력할 수 있는 예제를 준비해 봤습니다.
1) 먼저 위 형태의 화면 레이아웃을 만들기 위한 xaml 파일 내용입니다.
<Label Content="등록일자" FontSize="11" Width="80" Margin="0 1 0 0" HorizontalContentAlignment="Right"
Foreground="Gray"/>
<DatePicker x:Name="dtpRegdate" HorizontalAlignment="Left" VerticalAlignment="Top" Width="160"
Margin="0 2 0 0" Height="23" SelectedDate="{Binding SelectedDateTime}">
<DatePicker.Resources>
<Style TargetType="DatePickerTextBox">
<Setter Property="IsReadOnly" Value="True"/>
//현재 날짜를 기본을 띄워주기 위한 내용
<Setter Property="Text" Value="{Binding SelectedDateTime, StringFormat='{} {0:yyyy/MM/dd}'}"/>
</Style>
</DatePicker.Resources>
</DatePicker>
자 어때요?
생각보다 별 거 없죠?
꼭 필요하신 분들에게 좋은 예제가 되었으면 좋겠네요.
자 그럼 달인이 되는 그 날까지 모두 모두 화이팅!!! 입니다.
그런데 혹시 가슴이 답답해 명상이나 힐링이 필요하시다면?
한번 들러 주세요~ ^^
https://youtu.be/oRHsThgQdzk?feature=shared
'C#' 카테고리의 다른 글
C# WPF DataGrid에 SQLite 데이터베이스 연동 1 (1) | 2023.05.16 |
---|---|
C# WPF DatePicker 활용하기 2 (0) | 2023.05.16 |
C# WPF Popup Window 띄우기 (0) | 2023.05.16 |
C# DataGridView 꾸미기 (0) | 2023.05.16 |
C#에서 DataGridView 폰트 지정 방법 (0) | 2023.05.16 |
댓글