本文介绍了从静态方法刷新/重画的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我有一个自定义控件,该控件使控件在两种颜色之间闪烁.
我的问题是我不知道如何从静态方法执行Refresh()命令.
我需要从该静态方法更新所有自定义控件.

我试图覆盖Refresh().

 公共 覆盖  void 刷新()
{
    基本 .Refresh();
} 



但是如何从静态方法调用Refresh()函数?

谢谢.

解决方案



Hi,

I got a Custom Control that is making the control flashing between two colors.
My problem is that I dont know how to do a Refresh() command from a static method.
I need to update all the custom controls from that static method.

I have tried to override Refresh().

public override void Refresh()
{
    base.Refresh();
}



But how do I call the Refresh() function from the static method?

Thanks.

解决方案



这篇关于从静态方法刷新/重画的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-27 13:37