如何识别浏览器栏(Internet Explorer)是否隐藏?
我可以使用 IWebBrowser2::ShowBrowserBar 方法使资源管理器栏显示/隐藏。 我想使用一个按钮在显示/隐藏之间切换。 ShowBrowserBar 有一个参数可以设置显示/隐藏。 我现在如何获取探索栏的状态?
I can make an Explorer bar show/hide using IWebBrowser2::ShowBrowserBar Method. I want to use a single button to toggle between Show/Hide. There is a parameter for ShowBrowserBar to set for Show/Hide. How will I get the status of the explore bar now?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
难道你不能只检查 pvaShow 的值来获取栏的状态吗?
IWebBrowser2::ShowBrowserBar 方法
pvaShow
[in] 指向 VT_BOOL 类型的 VARIANT 的指针,指定是否应显示或隐藏浏览器栏。 如果该值非零,则显示浏览器栏。 如果该值为零,则隐藏浏览器栏。
Couldn't you just check the value of pvaShow to get the status of the bar?
IWebBrowser2::ShowBrowserBar Method
pvaShow
[in] A pointer to a VARIANT of type VT_BOOL that specifies whether the browser bar should be shown or hidden. If this is nonzero, the browser bar is shown. If this is zero, the browser bar is hidden.