Excel中的CustomTaskPane不会出现在新工作簿中

时间:2013-10-03 13:13:24

标签: c# vsto excel-2013

我在Excel 2013中添加了一个CustomTaskPane,可让用户快速搜索照片。如果用户只打开/创建一个工作簿,它运行良好。问题是,如果他们打开另一个工作簿或创建一个新工作簿,任务窗格不会出现在出现的新窗口中。它只是放在原来的窗口。我知道这种行为是由于我只是在打开Excel时初始化面板而引起的。我向ActiveWindow事件添加了一个事件处理程序,以便在打开另一个工作簿时初始化一个新面板。

问题是我无法弄清楚如何判断CustomTaskPane是否已经存在于窗口中。如果是,则简单地创建另一个CustomTaskPane,因此在该窗口中现在有两个。我编写了以下代码来处理原始代码并创建一个新代码,但它引入了一些滞后(1-5秒),每次更改工作簿窗口时都会引起用户疯狂。有没有办法查看窗口中是否已存在CustomTaskPane以避免处理和重新创建新窗口以避免堆叠重复的任务窗格?

Microsoft.Office.Tools.CustomTaskPane PartPhotoTaskPane;
Globals.ThisAddIn.Application.WindowActivate += Application_WindowActivate;

        void Application_WindowActivate(Excel.Workbook Wb, Excel.Window Wn)
    {
        if (PartPhotoTaskPane != null)
        {
            PartPhotoTaskPane.Dispose();
            InitalizePartPhotoViewerTaskPane(EPPF);
        }
        else
        {
            InitalizePartPhotoViewerTaskPane(EPPF);
        }
    }

    /// <summary>
    /// Start up the part photo viewer task pane
    /// </summary>
    private void InitalizePartPhotoViewerTaskPane(ExcelPartPhotoFunctions _EPPF)
    {
        //intialize the part search
        try
        {
            PartPhotoTaskPane = Globals.ThisAddIn.CustomTaskPanes.Add(new PartPhotoSearchPane(_EPPF), "Part Information", Globals.ThisAddIn.Application.ActiveWindow);
            PartPhotoTaskPane.Visible = Properties.Settings.Default.InfoPaneOpenStatus;
            PartPhotoTaskPane.Width = 260;
        }
        catch (Exception e)
        {
            MessageBox.Show("Error starting Part Info Toolbar:" + Environment.NewLine +
            e.Message + Environment.NewLine + e.StackTrace, "Error!", MessageBoxButtons.OK,
            MessageBoxIcon.Error);
        }
    }

1 个答案:

答案 0 :(得分:10)

使用hwnd(Globals.ThisAddIn.Application.Hwnd)标识Excel窗口。这对于Office2013(使用SDI方法)和使用MDI窗口的旧版Office都很有效。这是一个可用于此的课程:

public class TaskPaneManager
{
    static Dictionary<string, CustomTaskPane> _createdPanes = new Dictionary<string, CustomTaskPane>();

    /// <summary>
    /// Gets the taskpane by name (if exists for current excel window then returns existing instance, otherwise uses taskPaneCreatorFunc to create one). 
    /// </summary>
    /// <param name="taskPaneId">Some string to identify the taskpane</param>
    /// <param name="taskPaneTitle">Display title of the taskpane</param>
    /// <param name="taskPaneCreatorFunc">The function that will construct the taskpane if one does not already exist in the current Excel window.</param>
    public static CustomTaskPane GetTaskPane(string taskPaneId, string taskPaneTitle, Func<UserControl> taskPaneCreatorFunc)
    {
        string key = string.Format("{0}({1})", taskPaneId, Globals.ThisAddIn.Application.Hwnd);
        if (!_createdPanes.ContainsKey(key))
        {
            var pane = Globals.ThisAddIn.CustomTaskPanes.Add(taskPaneCreatorFunc(), taskPaneTitle);
            _createdPanes[key] = pane;
        }
        return _createdPanes[key];
    }
}

这里我实际上是将Excel窗口hwnd和一些任意字符串标识符组合在一起来识别任务窗格。这个想法是在同一个插件中支持多个任务窗口。

以下是如何在功能区中使用它的示例:

    private void button1_Click(object sender, RibbonControlEventArgs e)
    {
        var taskpane = TaskPaneManager.GetTaskPane("A", "Task pane type A", () => new UserControl1());
        taskpane.Visible = !taskpane.Visible;
    }

    private void button2_Click(object sender, RibbonControlEventArgs e)
    {
        var taskpane = TaskPaneManager.GetTaskPane("B", "Task pane type B", () => new UserControl2());
        taskpane.Visible = !taskpane.Visible;
    }

如果在Excel中打开多个工作簿,则两个Excel窗口都将拥有自己的taspaneA和taskpaneB。