Expression Blend/WPF 中是否存在相当于 EnterFrame 事件的事件,如果没有,我们如何解决它?
我正在从 AS3 和 Java 迁移到 Expression Blend/WPF,但似乎无法弄清楚如何复制 EnterFrame
> C# 中的事件,是否有 update()
或 frameUpdate()
函数。
i am moving from AS3 and Java to Expression Blend/WPF, but cant seem to figure out how to replicate EnterFrame
event in C#, is there a update()
or frameUpdate()
function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该有帮助:
http://www .shinedraw.com/mathematics/difference-on-timer-enter-frame-dispatcher-timer-and-composition-target/
这也是
http://insideria.com/2009/01/scripted-animation-in-silverli.html
this should be helpful:
http://www.shinedraw.com/mathematics/difference-on-timer-enter-frame-dispatcher-timer-and-composition-target/
and this too
http://insideria.com/2009/01/scripted-animation-in-silverli.html
CompositionTarget.Rendering 被调用框架。您还可以使用计时器,例如 调度计时器。
CompositionTarget.Rendering is called every frame. You could also use timer such as DispatcherTimer.