本文整理汇总了C#中Animation.animate方法的典型用法代码示例。如果您正苦于以下问题:C# Animation.animate方法的具体用法?C# Animation.animate怎么用?C# Animation.animate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Animation
的用法示例。
在下文中一共展示了Animation.animate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: repaint
public override void repaint(Animation cmp) {
if (myView != null) {
if (cmp is Component) {
Component c = (Component)cmp;
c.setDirtyRegion(null);
if (c.getParent() != null) {
cmp = (Form)c.getComponentForm();
}
else {
Form f = (Form)getCurrentForm();
if (f != null) {
cmp = f;
}
}
}
else {
// make sure the form is repainted for standalone anims e.g. in the case
// of replace animation
Form f = (Form)getCurrentForm();
if (f != null) {
base.repaint(f);
}
}
}
cmp.animate();
base.repaint(cmp);
}