以编程方式禁用 CE windows 动画?
以下是如何使用注册表项执行此操作。
* Go to HKEY_LOCAL_MACHINE\SYSTEM\GWE
* Create a DWORD named Animate if it does not already exist
* Edit the DWORD value named Animate
* 0 - Disables Window Animation
1 - Enables Window Animation
但是,需要重新启动设备。我想知道是否有办法以编程方式立即禁用它?
Here is how to do it with a registry key.
* Go to HKEY_LOCAL_MACHINE\SYSTEM\GWE
* Create a DWORD named Animate if it does not already exist
* Edit the DWORD value named Animate
* 0 - Disables Window Animation
1 - Enables Window Animation
However, it needs restart of the device. I would like to know if there is anyway to disable it instantly, programmatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
SystemParametersInfo
。没有动画设置,但如果您通知 GWES 不同的更改,它也许也会更新动画状态。Take a look at
SystemParametersInfo
. There is no animation setting, but maybe if you notify GWES of a different change it will also update the animation state.