10

我在 Outlook 中有一个自定义按钮,我必须为同一个按钮添加图像图标。

功能区 XML 是:

<button id="GoToAppConfiguration" 
    label="Application Configuration" 
    getImage="GetCustomImage" 
    onAction="GoToAppConfigurationClicked" 
    size="normal" />

我想编写功能区回调方法,但是如何编写相同的方法以及如何使用存储在 Addin 项目下的 Resource 文件夹中的图像。

4

1 回答 1

11

你只需要返回一个Bitmapfrom GetCustomImage。这是 ac# 示例,假设您已将 BMP 添加到Project Resources中。

public Bitmap GetCustomImage(Office.IRibbonControl control)
{
    return Properties.Resources.btnAppConfiguration_Image; // resource Bitmap
}
于 2012-04-27T12:32:39.587 回答