C# - 禁用气球提示

发布于 12-09 06:45 字数 83 浏览 0 评论 0原文

我想创建一个应用程序,通过编辑注册表来禁用系统中的气球提示(还有另一种方法吗?)。但我希望它会立即发生并且无需重新启动/注销。

谢谢你!

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小嗷兮 2024-12-16 06:45:40

您必须将注册表项 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文