本文介绍了在一定时间后自动从一种形式转换为另一种形式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我正在siverlight中使用c#开发Windows Mobile 7应用程序.在我的应用程序中,我只需要在一定时间后自动将一种形式转换为另一种形式.
hi all,
am developing windows mobile 7 application using c# in siverlight.in my application i just need to automatically shift one form to another form after certain amount time .
推荐答案
int myDeltaX = //...
int myDeltaY = //...
//...
Dispatcher.Invoke(new Action<Window, int, int>((window, deltaX, deltaY) => {
window.Left += deltaX;
window.Top += deltaY;
}), this, myDeltaX, myDeltaY);
您也可以使用BeginInvoke
,在这种特殊情况下差别不大.
You can also use BeginInvoke
, not big difference in this particular case.
这篇关于在一定时间后自动从一种形式转换为另一种形式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!