ボタンがクリックされたときにテキストの色を変更して、テキストボックスのテキストを「点滅」に設定したいと思います。
テキストを希望どおりに点滅させることはできますが、数回点滅した後に停止させたいです。タイマーが数回作動した後、停止させる方法がわかりません。
これが私のコードです:
public Form1()
{
InitializeComponent();
Timer timer = new Timer();
timer.Interval = 500;
timer.Enabled = false;
timer.Start();
timer.Tick += new EventHandler(timer_Tick);
if (timerint == 5)
timer.Stop();
}
private void timer_Tick(object sender, EventArgs e)
{
timerint += 1;
if (textBoxInvFooter.ForeColor == SystemColors.GrayText)
textBoxInvFooter.ForeColor = SystemColors.Highlight;
else
textBoxInvFooter.ForeColor = SystemColors.GrayText;
}
私の問題は「timerint」の使用方法にあることは知っていますが、それをどこに置くか、またはどの解決策を使用すべきかわかりません...
助けてくれてありがとう!