Microsoft Office:ImageMSO中的新图标

时间:2018-06-12 07:13:30

标签: c# ms-office office365 vsto office-interop

我无法在ImageMSO中找到以下图标。我注意到Microsoft在其Office应用程序中使用了相同的图标。所以我想知道它是否是ImageMSO的一部分。

enter image description here

谢谢!

1 个答案:

答案 0 :(得分:2)

是的,它是Office Fluent UI命令标识符的一部分。您要查找的imageMso名称为“WhatsNewRecentUpdates”,如下所示:

<button id="rxbtnMyButton" label="Super Megaphone" imageMso="WhatsNewRecentUpdates" onAction="rxbtnMyButton_click" supertip="Generate a deafening sound." tag="boom" />

您可以在此GitHub存储库中找到Microsoft的所有Office 2016和Office 365 Fluent UI命令标识符:

Office 365 Current Channel Fluent UI Command Identifiers

修改1/11/2019

根据Ben的评论更新了上述链接。