メインスレッドで作成されたタイマーがありますが、別のスレッドからタイマーを開始する必要がある場合、どうすればよいですか?
解決済み: これが私のコードです:
public delegate void MyDelegate();
if (this.InvokeRequired)
{
BeginInvoke(new MyDelegate(delegate()
{
timer1.Start();
}));
}
メインスレッドで作成されたタイマーがありますが、別のスレッドからタイマーを開始する必要がある場合、どうすればよいですか?
解決済み: これが私のコードです:
public delegate void MyDelegate();
if (this.InvokeRequired)
{
BeginInvoke(new MyDelegate(delegate()
{
timer1.Start();
}));
}