如何将自定义项目添加到 Microsoft Office 发送到菜单
是否可以扩展 Office 中的“发送到”菜单(不是 Windows 菜单;我知道如何做到这一点)。 我想以源文档为目标启动我自己的应用程序。
更新:我正在寻找一个非基于 VSTO 的解决方案。
Is it possible to extend the "Send to" menu in Office (not the Windows one; I know how to do that). I would like to launch my own application with the source document as the target.
Update: I am looking for a non-VSTO based solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 2007 中,您可以扩展功能区,并且应该能够将控件放置在“Office 菜单”选项卡中的
FileSendMenu
组中。 我认为 Visual Studio 的最后一个 VSTO 插件中可用的设计器不支持这一点,因此您可能必须手工制作 xml。您将需要一个事件处理程序(“OnButtonPress”)以及用于描述、图标等的处理程序。您可以使用 VBA 来完成此操作,但我宁愿使用适当的加载项。
In 2007, you can extend the ribbon, and should be able to place your control in the group
FileSendMenu
in the tab Office Menu. I don't think this is supported in the designer available in the last VSTO-addin for Visual Studio, so you may have to hand craft your xml.You will need an event handler ("OnButtonPress") as well has handlers for description, iconst etc. You could do this with VBA, but I would rather go with a proper Add-In.