如何使WebBrowser正常运行

时间:2019-07-08 12:56:27

标签: c# controls webbrowser-control add-in

我使用VS2017在C#中管理Excel加载项。

该插件使用WebBrowser来访问特定的网页。 它最近停止在我拥有的插件的每个版本(开发版和发行版)上运行,即使我没有看到任何补丁说明。

基本上,WebBrowser控件不再显示。正确设置了其所有属性,导航时正确加载了html文档,但没有任何内容代替控件。控件及其父组件设置为可见,并正确加载了正确的大小和坐标。

我已经用Visual Studio设置了一个新的空白项目,并对其进行了测试,但只尝试显示google和about:blank的WebBrowser控件没有成功。 这是下面的代码:

ThisAddin.cs

    public partial class ThisAddIn
    {
        private void ThisAddIn_Startup(object sender, System.EventArgs e)
        {
        }

        private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
        {
        }

        protected override Microsoft.Office.Core.IRibbonExtensibility CreateRibbonExtensibilityObject()
        {
            return new MyRibbon();
        }

        #region VSTO generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InternalStartup()
        {
            this.Startup += new System.EventHandler(ThisAddIn_Startup);
            this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
        }

        #endregion
    }

MyRibbon.cs

    [ComVisible(true)]
    public class MyRibbon : Office.IRibbonExtensibility
    {
        private Office.IRibbonUI ribbon;

        public MyRibbon()
        {
        }

        #region IRibbonExtensibility Members

        public string GetCustomUI(string ribbonID)
        {
            return GetResourceText("WebBrowserShowcase.MyRibbon.xml");
        }

        #endregion

        #region Ribbon Callbacks
        //Create callback methods here. For more information about adding callback methods, visit https://go.microsoft.com/fwlink/?LinkID=271226

        public void Ribbon_Load(Office.IRibbonUI ribbonUI)
        {
            this.ribbon = ribbonUI;
        }

        public void openWebBrowser_click(IRibbonControl control)
        {
            WebPanel panel = new WebPanel();
            panel.ShowWebBrowser();
        }

        public string getTabLabel(IRibbonControl control) { return "WebBrowserShowCase"; }

        #endregion
    }

MyRibbon.xml

<?xml version="1.0" encoding="UTF-8"?>
<customUI onLoad="Ribbon_Load" xmlns="http://schemas.microsoft.com/office/2009/07/customui">
  <ribbon>
    <tabs>
      <tab id="myRibbon" getLabel="getTabLabel">
        <group id="MyGroup" label="My Group">
          <button id="OpenWebBrowser" size="large" onAction="openWebBrowser_click" imageMso="_3DDirectionGalleryClassic"/>
        </group>
      </tab>
    </tabs>
  </ribbon>
</customUI>

WebPanel.cs

    public class WebPanel : UserControl
    {
        TableLayoutPanel tableLayoutPanel1;
        WebBrowser _webBrowser;

        public WebPanel()
        {
            InitializeComponent();
            WebBrowserHelper.FixBrowserVersion();
        }

        public void ShowWebBrowser()
        {
            CustomTaskPane taskPane = Globals.ThisAddIn.CustomTaskPanes.Add(this, "title", Globals.ThisAddIn.Application.ActiveWindow);
            DisplayTaskPane(taskPane);
            Navigate();
        }

        private void DisplayTaskPane(CustomTaskPane taskPane)
        {
            taskPane.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionLeft;
            taskPane.Width = Convert.ToInt32(Globals.ThisAddIn.Application.ActiveWindow.Width);
            taskPane.DockPositionRestrict = Microsoft.Office.Core.MsoCTPDockPositionRestrict.msoCTPDockPositionRestrictNoHorizontal;
            taskPane.Visible = true;

            tableLayoutPanel1.Dock = DockStyle.Fill;
            tableLayoutPanel1.Visible = true;

            _webBrowser.Dock = DockStyle.Fill;
            _webBrowser.Visible = true;
        }

        private void Navigate()
        {
            _webBrowser.Navigate(new Uri("about:blank"));
        }
    }

为了方便起见,我删除了一些自动生成的代码和WebBrowserHelper,您将在这里找到它们:WebBrowserHelper

这是WebPanel的图像,它是TableLayout组件中的WebBrowser:

WebPanel Designer

这是启动项目,进入功能区并单击按钮时的结果:

WebPanel result

如您所见,没有显示WebBrowser。我尝试使用Uri和不使用Uri,分别是:blank和google,但结果始终相同。

有人知道这里可能是什么问题吗?

编辑
因此,显然,WebBrowser仍然可以在Windows 7上运行,但不能在Windows 10上运行。 我已经用几台具有相同Internet Explorer版本(11.0.17134.829)的机器检查了它。 如果操作系统有问题,我能做些什么?

1 个答案:

答案 0 :(得分:1)

我们遇到了同样的问题。除了他在Outlook中遇到问题之外,还有一个类似的线程here,。确定的解决方法是在Outlook或Excel >>文件>>选项>>常规中从“优化最佳外观”切换到“优化兼容性”。我可以确认这适用于我们的Excel加载项。