[C#] 20일차 - 149. DateTimePicker를 이용한 날짜 계산기C#/C#200제2021. 2. 23. 00:27
Table of Contents
DateTimePicker 달력
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace A149_DateTimePicker
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
{
DateTime today = DateTime.Today;
DateTime selectedDay = dateTimePicker1.Value;
txtDates.Text = today.Subtract(selectedDay).TotalDays.ToString("0");
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 21일차 - 151. WindowsMediaPlayer를 이용한 소리나는 알람시계 (0) | 2021.02.25 |
---|---|
[C#] 21일차 - 150. TabControl을 사용한 디지털 알람시계 (0) | 2021.02.25 |
[C#] 20일차 - 148. TrackBar와 ProgressBar (0) | 2021.02.23 |
[C#] 20일차 - 147. Timer 컨트롤을 이용한 디지털 시계 (0) | 2021.02.23 |
[C#] 20일차 - 146. TreeView와 PictureBox를 이용한 역사공부 프로그램 (0) | 2021.02.22 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!