网络浏览器中的状态栏
我正在寻找有关如何添加状态栏并为网络浏览器控件显示相同状态栏的选项,对此有何想法。
当我在网络浏览器上方的文本框中输入 https: 站点时,我应该在状态栏上显示 ssl 安全图标。
请回复。
提前致谢, 卡西克
Am looking an option on how to add status bar and show the same for webbrowser control, any thoughts on that.
When i type sites with https: on a texbox above webbrowser i am supposed to show the ssl secure icon on status bar.
Please reply.
Thanks in advance,
Karthick
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要显示挂锁图标,请处理 DocumentCompleted< /a> 事件并在
browser.Url.Scheme == "https"
时显示图标。To show the padlock icon, handle the DocumentCompleted event and show the icon if
browser.Url.Scheme == "https"
.您需要处理 StatusTextChanged事件并检查 StatusText 属性。
您可以将 StatusStrip 控件和 StusStripLabel 添加到表单中,然后在
StatusTextChanged
事件中将 StatusStripLabel 的Text
属性设置为 WebBrowser 的StatusText
属性。You need to handle the StatusTextChanged event and check the StatusText property.
You can add a StatusStrip control and a StusStripLabel to your form, then set the StatusStripLabel's
Text
property to your WebBrowser'sStatusText
property in theStatusTextChanged
event.