Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 C# 项目中使用 Web 浏览器控件来加载 html 页面。
只有在右键单击网页后,我才能向后/向前导航或刷新页面。
如何将这些导航控件添加到 Web 浏览器本身,以便用户无需右键单击即可导航。
您可以在表单上添加按钮并将其单击事件连接到您需要的适当操作。
//if wb is your WebBrowser instance wb.GoBack(); wb.Refresh(); wb.GoForward();