[C#] 20일차 - 147. Timer 컨트롤을 이용한 디지털 시계C#/C#200제2021. 2. 23. 00:01
Table of Contents
타이머 컨트롤은 눈에 보이지 않고 백드라운드에서 동작합니다.
타이머가 동작하는 간격을 Interval속성에서 지정할 수 있습니다.
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 A147_Timer
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
lblTime.Text = "";
timer1.Interval = 1000; // 1초
timer1.Tick += Timer1_Tick; // 1초에 한번씩 timer1_Tick메소드 작동
timer1.Start(); // timer1.Enabled = true;
}
private void Timer1_Tick(object sender, EventArgs e)
{
lblTime.Location = new Point(ClientSize.Width / 2 - lblTime.Width / 2, ClientSize.Height / 2 - lblTime.Height / 2); // lblTime의 위치를 폼의 정중앙으로
lblTime.Font = new Font("맑은 고딕", 30, FontStyle.Bold);
lblTime.Text = DateTime.Now.ToString();
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 20일차 - 149. DateTimePicker를 이용한 날짜 계산기 (0) | 2021.02.23 |
---|---|
[C#] 20일차 - 148. TrackBar와 ProgressBar (0) | 2021.02.23 |
[C#] 20일차 - 146. TreeView와 PictureBox를 이용한 역사공부 프로그램 (0) | 2021.02.22 |
[C#] 20일차 - 144,145. 리스트뷰를 이용한 상품리스트 (0) | 2021.02.22 |
[C#] 20일차 - 143. 콤보박스를 이용한 학점계산기 (4) | 2021.02.22 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!