本文介绍了使用回调调用UI线程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问题1

使用行动,行动< T>等我可以使用BeginInvoke并指定回调:

Using Action, Action<T> etc I can use BeginInvoke and specify a callback:

 


Action<Transfer> Action = new Action<Transfer>(RoutineUnderNewThread);

ReturnedObject returnedObject = new ReturnedObject();

Transfer transfer = new Transfer();

Action.BeginInvoke(transfer, CallBack, returnedObject);

推荐答案


这篇关于使用回调调用UI线程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 23:57