1

この目標をどのように達成できるか知りたいですか?

    private void btnProcess_Click(object sender, EventArgs e)
{
    timer1.Start();
    //100 plus line of code here
    timer1.Stop();
}

int i = 0;

private void timer1_Tick(object sender, EventArgs e)
{
    i++;
    label1.text = i.toString();
}

ボタンを押すとタイマーが実行され、label1.textに時刻が表示され、タイマー停止機能に到達するまで停止します。

4

1 に答える 1

4
var sw = Stopwatch.StartNew();
//100 lines of code... 
label1.Text = sw.Elapsed.ToString();

???

于 2012-11-13T02:13:37.967 に答える