VSTO:如何禁止演示幻灯片中图表的上下文菜单?
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定您的 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