VSTO:如何禁止演示幻灯片中图表的上下文菜单?

发布于 2024-09-16 08:28:21 字数 460 浏览 4 评论 0原文

我正在 VSTO 中开发 PowerPoint 插件。

当我将图表插入幻灯片时, 当用户右键单击图表时,我不想显示上下文菜单。

我禁止了powerpoint的一些命令按钮,

<command idMso="TabChartToolsDesign" getEnabled="GetVisible"/>
<command idMso="ChartChangeType" getEnabled="GetVisible"/>
<command idMso="ChartResetToMatchStyle" getEnabled="GetVisible"/>
<command idMso="ChartPlotAreaOptionsDialog" getEnabled="GetVisible"/>

但这还不够。一些命令按钮仍然可用。

我能为此做什么?

I'm developing an add-in of PowerPoint in VSTO.

When I have inserted a chart into the slide,
and I don't want show the context menu when user right-click the chart.

I forbid some command button of powerpoint,

<command idMso="TabChartToolsDesign" getEnabled="GetVisible"/>
<command idMso="ChartChangeType" getEnabled="GetVisible"/>
<command idMso="ChartResetToMatchStyle" getEnabled="GetVisible"/>
<command idMso="ChartPlotAreaOptionsDialog" getEnabled="GetVisible"/>

but it's not enough. some command buttons are still enable.

what can i do for this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沧桑㈠ 2024-09-23 08:28:21

您确定您的 GetVisible 回调返回 false 吗?如果是这样,您可能缺少一个控件。您可以在此处下载控件/名称的完整列表:

http://www.microsoft.com/downloads/en/details.aspx?FamilyId=4329D9E9-4D11-46A5-898D-23E4F331E9AE&displaylang=en

You're sure your GetVisible callback(s) are returning false? If so, you're probably missing a control. You download the full list of controls/names here:

http://www.microsoft.com/downloads/en/details.aspx?FamilyId=4329D9E9-4D11-46A5-898D-23E4F331E9AE&displaylang=en

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文