ボタンをクリックすると、ボタンの色が5秒後に黒に変わりますが、私はそれを動作させることができません。私は既にタイマーの間隔を5000に設定し、プロパティではEnabledをtrueに設定しています。Visual studio C#タイマーが動作しない
using System;
using System.Drawing;
using System.Windows.Forms;
namespace WindowsFormsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
timer1.Enabled = true;
timer1.Start();
button1.BackColor = Color.Black;
}
private void timer1_Tick(object sender, EventArgs e)
{
}
}
}
timer_tickイベント内の色の変化のコードを書くのか?あなたはwindows.Forms.Timerを使っているはずです。デザイン時に追加したようですが、遅延させたいアクションがTickイベントにあることを確認してください。 –