更改 Internet Explorer 窗口标题
我正在用 C# 开发 IE 的工具栏。我想要做的是,当此工具栏在 IE 中可见时,我想将 Internet Explorer 的标题更改为我决定的名称。我可以使用 WebBrowserClass 状态文本添加状态文本,但我发现无法更改标题。任何帮助表示赞赏。
谢谢, 阿伦
I'm developing a toolbar for IE in C#. What I want to do is I would like to change the title of internet explorer to something I decide, when this toolbar is made visible in IE. I can add a status text by using WebBrowserClass status text but I found no way to make change to title. Any help appreciated.
Thanks,
Arun
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我相信 HTML 页面会告诉浏览器窗口标题信息。因此可能会更改浏览器正在加载的 html 页面。这可能是一个粗略的解决方案。
I belive that HTML page tells the browser window title info. So may be change the html page which browser is loading. This may be a crude solution.
您将必须编辑注册表。
阅读本文。
标题存储在
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\ 中Main
作为窗口标题You will have to edit the registry.
Read this article.
The title is stored in
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main
as Window Title我得到了答案...使用 SetWindowText 函数。
I got the answer... Use SetWindowText Function.