반응형
C#을 이용한 기본적인 디지털 Clock 소스입니다.
Steps
1. Visual Studio 실행
2. New Porject -> Windows Form Project 선택하고, 이름 입력 (ex: Digitalclock)
3. Toolbox에 있는 Label과 Timer을 from에 추가한다.
4. timer1을 더블 클릭합니다.
5. timer1의 timer_Tick소스안에
label1.Text = DateTime.Now.ToString("hh:mm:ss tt");을 입력합니다.
Form1.cs
using System;
using System.Windows.Forms;
namespace Digitalclock
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.Text = "Digital Clock"; //To set the title
timer1.Start(); //starting the timer
}
private void timer1_Tick(object sender, EventArgs e)
{
//to display the time in the label
label1.Text = DateTime.Now.ToString("hh:mm:ss tt");
}
}
using System.Windows.Forms;
namespace Digitalclock
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.Text = "Digital Clock"; //To set the title
timer1.Start(); //starting the timer
}
private void timer1_Tick(object sender, EventArgs e)
{
//to display the time in the label
label1.Text = DateTime.Now.ToString("hh:mm:ss tt");
}
}
}
6. 실행 화면
반응형
'C#' 카테고리의 다른 글
SVN : AnkhSVN 형상관리 툴 Visual Studio 2017 지원 (0) | 2017.06.14 |
---|---|
C# WebBrowser + Chrome 크롬 브라우저 사용하기 (cefSharp / Chromium) (0) | 2017.03.09 |
SQL Server DB Backup and Restore (0) | 2016.05.26 |
DataTable 값을 List<stirng> 으로 변환하기 (0) | 2016.05.24 |
label.Text 의 멀티 라인 입력? Multiline (0) | 2016.05.17 |
Button Image 테두리(border) 없애기 (0) | 2016.03.24 |
c# property 자동 구현 속성 - Class에 있는 get get 쉽게 만들기 (0) | 2015.10.06 |
[C#] 확인창 MessageBox ( confirm창 ) 예제들 (0) | 2015.10.02 |
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)
(로그인하지 않으셔도 가능)