0

我正在用 C# 编写一个 Outlook 插件。我想在撰写新电子邮件时禁用“选项”选项卡中的“权限”按钮。

我目前正在使用 Addin express 来创建 Outlook 加载项

4

1 回答 1

1

您需要使用定义了属性command的标签。getEnabled例如:

 <?xml version="1.0" encoding="UTF-8"?>
 <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
  <commands>
    <command idMso="Permissions"  getEnabled="OnGetEnabled" />
  </commands>
 </customUI>

您可以重新调整内置功能区控件的用途,有关详细信息,请参阅临时重新调整 Office Fluent 功能区上的命令。

可以在以下文档中找到内置控件 ID 的列表:

于 2017-04-24T09:04:49.807 回答