C# 視窗程式範例 -- 數位時鐘

基礎篇

C# 簡介

開發環境

變數與運算

流程控制

陣列

函數

物件

例外處理

函式庫篇

檔案處理

資料結構

正規表達式

Thread

應用篇

視窗程式

媒體影音

網路程式

遊戲程式

手機程式

資料庫

雲端運算

特殊功能

委派

擴展方法

序列化

LinQ

WPF

網路資源

教學影片

投影片

教學文章

軟體下載

考題解答

101習題

專案下載:Clock.zip

介面設計

請從工具箱中拉出一個 label 與一個 Timer,如下圖所示。

ClockDesign.png

程式內容

然後將 Form1.cs 的程式改成如下內容。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace TimerDemo
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            timer1_Tick(this, null);
            timer1.Interval = 1000; // 設定每秒觸發一次
            timer1.Enabled = true; // 啟動 Timer
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            DateTime time = DateTime.Now;
//            label1.Text = time.TimeOfDay.ToString();
//            label1.Text = time.Hour + ":" + time.Minute + ":" + time.Second;
            label1.Text = String.Format("{0:00}:{1:00}:{2:00}", 
                                                   time.Hour, time.Minute, time.Second);
        }
    }
}

執行結果

這樣就設計好一個數位時鐘了。

ClockRun.png
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License