xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 0.03M
    文件類型: .7z
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2021-02-23
  • 語言: C#
  • 標簽: C#??驗證??

資源簡介

本例將常用的幾種計時方式都進行了嘗試,并通過測試了解了各種計時的應(yīng)用區(qū)別,方便后續(xù)的應(yīng)用!代碼里還有詳細的解釋說明,方便使用!

資源截圖

代碼片段和文件信息

using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;
using?System.Diagnostics;//提供一組方法和屬性,可用于準確地測量運行時間只有引用后Stopwatch類才能使用
using?System.Threading;//創(chuàng)建和控制線程,設(shè)置其優(yōu)先級并獲取其狀態(tài)。

namespace?秒表計時器
{
????public?partial?class?Form1?:?Form
????{
????????private?BackgroundWorker?demoBGWorker?=?new?BackgroundWorker();

????????public?Form1()
????????{
????????????InitializeComponent();


????????}

????????private?void?Form1_Load(object?sender?EventArgs?e)
????????{
????????????timer1.Enabled?=?false;
????????????timer1.Interval?=?500;
????????}

????????int?timerDrawI?=?0;
????????float?timerDrawF?=?0;
????????private?void?timer1_Tick(object?sender?EventArgs?e)
????????{
????????????timerDrawI++;
????????????timerDrawF?=?timerDrawI?/?2;
????????????textBox_ms.Text?=?Convert.ToString(timerDrawI);
????????????textBox_sec.Text?=?Conver

評論

共有 條評論