Winforms 控件指示单个进程是否正在运行
我正在开发一个带有嵌入式 VPN 的 winforms 应用程序。 我希望有一个控件通过指示 VPN 进程是否正在运行来指示 VPN 连接状态。
任何帮助将不胜感激。
谢谢!
I'm working on a winforms app with an embedded vpn. I would like to have a control indicate vpn connection status by indicating whether or not the vpn process is running.
Any help would be greatly appreciated.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Timer 控件定期触发 BackgroundWorker 组件来检查 VPN 连接状态。 我这样做是为了检查网络连接状态并切换按钮的启用状态。 单击按钮时还需要检查状态,以防连接在轮询之间断开。
You can use a Timer control that periodically fires off a BackgroundWorker component to check the VPN connection status. I do this to check network connection status and toggle the enabled state of a button. It's also necessary to check status when the button is clicked in case the connection is dropped between polls.