当前位置:  开发笔记 > 编程语言 > 正文

访问自定义任务窗格是活动窗口-Visual Basic,VSTO

如何解决《访问自定义任务窗格是活动窗口-VisualBasic,VSTO》经验,为你挑选了1个好方法。



1> Alex Butenko..:

我进行了一个小实验,结果CustomTaskPane.Window始终是ActiveWindow。因此,要解决此问题,您可以在一些词典中跟踪大锅菜:

Dictionary ctpDict = new Dictionary();
void Application_AfterNewPresentation(PowerPoint.Presentation Pres) {
    AddIn_control AddIn_control1 = new AddIn_control();
    CustomTaskPane AddIn_taskpane = this.CustomTaskPanes.Add(AddIn_control1, "Add-In Taskpane", this.Application.ActiveWindow);
    ctpDict.Add(AddIn_taskpane, Pres);
}

然后您可以使用它:

if (cptDict[CTP] == Globals.ThisAddIn.Application.ActivePresentation) {
    CTP.Visible = true;
}

推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有