C# - 禁用气球提示
我想创建一个应用程序,通过编辑注册表来禁用系统中的气球提示(还有另一种方法吗?)。但我希望它会立即发生并且无需重新启动/注销。
谢谢你!
I would like to create an application which disables balloon tips in my system by editing the registry (there is another way?). But I want that it would be take place immediatly and without restart/log off.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将注册表项 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced 中的 EnableBalloonTips 的值设置为 0。您可以使用 RegistryKey 类 为此。
然后,您可以使用退出 Windows 资源管理器的方法并使用 Process.Start 再次启动 Windows 资源管理器。
但是,在重新启动 Windows 资源管理器之前,您应该请求用户的许可。
You have to set the value of EnableBalloonTips in the registry key HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced to 0. You can use the RegistryKey class for that.
Then you can use a method to exit Windows Explorer and start Windows Explorer again using Process.Start.
However you should ask for user's permission before you restart Windows Explorer.