如何将自定义项目添加到 Microsoft Office 发送到菜单

发布于 2024-07-10 18:11:00 字数 116 浏览 3 评论 0原文

是否可以扩展 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 技术交流群。

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

发布评论

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

评论(1

后eg是否自 2024-07-17 18:11:00

在 2007 中,您可以扩展功能区,并且应该能够将控件放置在“Office 菜单”选项卡中的 FileSendMenu 组中。 我认为 Visual Studio 的最后一个 VSTO 插件中可用的设计器不支持这一点,因此您可能必须手工制作 xml。

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="OnLoad" loadImage="OnGetImage">
  <ribbon>
    <officeMenu>
      <menu idMso="FileSendMenu">
        <button id="oButtonId"
              insertAfterMso="FileInternetFax"
              getDescription="GetDescription"
              getLabel="GetLabel"
              getScreentip="GetSuperTip"
              getSupertip="GetSuperTip"
              getVisible="GetVisible"
              onAction="OnButtonPress"/>
      </menu>
    </officeMenu>
  </ribbon>
</customUI>

您将需要一个事件处理程序(“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.

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="OnLoad" loadImage="OnGetImage">
  <ribbon>
    <officeMenu>
      <menu idMso="FileSendMenu">
        <button id="oButtonId"
              insertAfterMso="FileInternetFax"
              getDescription="GetDescription"
              getLabel="GetLabel"
              getScreentip="GetSuperTip"
              getSupertip="GetSuperTip"
              getVisible="GetVisible"
              onAction="OnButtonPress"/>
      </menu>
    </officeMenu>
  </ribbon>
</customUI>

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.

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