VSTO中的浮动面板需要使用UserControl来作为界面,通过 Globals.ThisAddIn.CustomTaskPanes.Add(UserControl , title) 添加。因为需要全局唯一的面板,所以要在ThisAddIn中进行静态声明: //UserControl public static Inspector inspector = new Inspector(); public static Microsoft.Office.Tools.CustomTaskPane inspPanel; …