public delegate void NextPrimeDelegate();
private void bmpPaint2()
{
System.Threading.Thread.Sleep(8);
this.Dispatcher.BeginInvoke(
System.Windows.Threading.DispatcherPriority.SystemIdle,
new NextPrimeDelegate(this.bmpPaint2) );
}
C# 线程委托
最新推荐文章于 2024-09-30 13:12:51 发布