폼에 레이블을 가져와서 넣어주고 레이블을 크기를 만져주기위해 레이아웃의 AutoSize - False로 지정해주고 크기를 맘에 들게 지정. + 이름은 lblTime으로 바꾸어줌 private void Form1_Load(object sender, EventArgs e) { lblTime.Location = new Point( (ClientSize.Width / 2 - lblTime.Width / 2), (ClientSize.Height / 2 - lblTime.Height / 2)); lblTime.Font = new Font("맑은고딕", 30, FontStyle.Bold); lblTime.Text = ""; timer1.Interval = 1000; timer1.Tick += Timer1_Tick; ..