简单的Winform秒表工具

简介: 简单的Winform秒表工具

47894fc423264c108bc61297dd97016a.png
核心代码:

using static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock;
using System.Diagnostics;
using Timer = System.Windows.Forms.Timer;

namespace StopWatch
{
   
   
    public partial class Main : Form
    {
   
   
        public Main()
        {
   
   
            InitializeComponent();
            sw = new Stopwatch();
            time.Tick += new EventHandler(time_Tick);
            time.Interval = 1;
        }
        Timer time = new Timer();
        Stopwatch sw; //秒表
        TimeSpan ts;//计时

        private void Start_Click(object sender, EventArgs e)
        {
   
   
            if (Start.Text=="Start")
            {
   
   
                sw.Reset();
                time.Stop();
                sw.Start();
                time.Start();
            }
            else if (Start.Text=="Continue")
            {
   
   
                sw.Start();
                time.Start();
            }

        }
        void time_Tick(object? sender, EventArgs e)
        {
   
   
            ts = sw.Elapsed;
            timeLabel.Text = string.Format("{0}:{1}:{2}:{3}", ts.Hours, ts.Minutes, ts.Seconds, ts.Milliseconds / 10);
        }

        private void Suspend_Click(object sender, EventArgs e)
        {
   
   
            Start.Text = "Continue";
            sw.Stop();
            time.Stop();
        }

        private void End_Click(object sender, EventArgs e)
        {
   
   
            Start.Text = "Start";
            sw.Stop();
            time.Stop();
            timeLabel.Text = string.Format("{0}:{1}:{2}:{3}", 0, 0, 0, 0);
        }

        private void Main_FormClosing(object sender, FormClosingEventArgs e)
        {
   
   
            sw.Stop();
            time.Stop();
        }
    }
}
目录
相关文章
|
6月前
第3个Qt项目:秒表
第3个Qt项目:秒表
|
7月前
LabVIEW编程LabVIEW开发吉时利Keithley 7001开关例程与相关资料
LabVIEW编程LabVIEW开发吉时利Keithley 7001开关例程与相关资料
63 1
|
7月前
LabVIEW编程LabVIEW开发GSJ四轴运动控制器例程与相关资料 第二版更新
LabVIEW编程LabVIEW开发GSJ四轴运动控制器例程与相关资料 第二版更新
44 0
|
7月前
|
UED
LabVIEW UI设计的几个技巧
LabVIEW UI设计的几个技巧
216 0
|
编译器 C# Windows
C# 编写 WinForm 窗体应用程序(第一期)
WinForm 是 Windows Form 的简称,是基于 .NET Framework 平台的客户端(PC软件)开发技术,一般使用 C# 编程。
C# 编写 WinForm 窗体应用程序(第一期)
|
C# 数据安全/隐私保护 Windows
C#编写WinForm 窗体应用程序(第二期)
消息框在 Windows 操作系统经常用到,例如在将某个文件或文件夹移动到回收站中时系统会自动弹出如下图所示的消息框。
C#编写WinForm 窗体应用程序(第二期)
C#编写WinForm窗体应用程序(第五期)
列表框 (ListBox) 将所提供的内容以列表的形式显示出来,并可以选择其中的一项或多项内容,从形式上比使用复选框更好一些。
C#编写WinForm窗体应用程序(第五期)
C#编写WinForm窗体应用程序(第四期)
在 C# 语言中 RadioButton 是单选按钮控件,多个 RadioButton 控件可以为一组,这一组内的 RadioButton 控件只能有一个被选中。
C#编写WinForm窗体应用程序(第四期)
|
C# 数据安全/隐私保护
C# 编写 WinForm 窗体应用程序(第三期)
文本框 (TextBox) 是在窗体中输入信息时最常用的控件,通过设置文本框属性可以实现多行文本框、密码框等。
C# 编写 WinForm 窗体应用程序(第三期)