C# 线程委托

xiaoxiao2021-02-27  141

public delegate void NextPrimeDelegate(); private void bmpPaint2() { System.Threading.Thread.Sleep(8); this.Dispatcher.BeginInvoke( System.Windows.Threading.DispatcherPriority.SystemIdle, new NextPrimeDelegate(this.bmpPaint2) ); }
转载请注明原文地址: https://www.6miu.com/read-16924.html

最新回复(0)