私は C# が初めてで、検索しましたが、問題の簡単な解決策が見つかりませんでした。Windows フォーム アプリケーションを作成しています。開始ボタンをクリックすると、ミリ秒ごとにカウントされ、配列から特定の値に達するとラベルが変更されます。ミリ秒はどのようにカウントできますか?
-------------------------
アレクザンダー コード:
namespace timer_simple3
{
public partial class Form1 : Form
{
long result = 0;
public Form1()
{
InitializeComponent();
this.timer1 = new System.Windows.Forms.Timer(this.components);
}
private void Form1_Load(object sender, EventArgs e)
{
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
}
private void timer1_Tick(object sender, EventArgs e)
{
result = result + 1;
label1.Text = Convert.ToString(result);
}
private void btstart_Click(object sender, EventArgs e)
{
timer1.Interval = 1; //you can also set this in the
//properties tab
timer1.Enabled = true;
timer1.Start();
// label1.Text = Convert.ToString(timer1);
}
private void btstop_Click(object sender, EventArgs e)
{
timer1.Stop();
}
}
}