C# + Excel 2003 - 透明的自定义图标
我使用以下类从我的 C# 代码生成 Excel 2003 中自定义工具栏的图标:
public class ImageConverter : System.Windows.Forms.AxHost
{
public ImageConverter() : base("59EE46BA-677D-4d20-BF10-8D8067CB8B33")
{
}
public static stdole.IPictureDisp ImageToIpicture(System.Drawing.Image image)
{
return (stdole.IPictureDisp)ImageConverter.GetIPictureDispFromPicture(image);
}
}
我的问题是如何制作透明图标? 我的所有图标都是透明的 gif,但在 Excel 2003 中它们具有纯蓝色背景。
I use following class to generate icon for custom toolbar in Excel 2003 from my C# code:
public class ImageConverter : System.Windows.Forms.AxHost
{
public ImageConverter() : base("59EE46BA-677D-4d20-BF10-8D8067CB8B33")
{
}
public static stdole.IPictureDisp ImageToIpicture(System.Drawing.Image image)
{
return (stdole.IPictureDisp)ImageConverter.GetIPictureDispFromPicture(image);
}
}
My question is how to make transparent icon? All my icons are transparent gifs, but in Excel 2003 they have solid blue background.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建一个遮罩图像并将其分配给commandbarbutton.mask。 请参阅 http://support.microsoft.com/kb/286460/ 了解更多详细信息
You need to create an mask image and assign it to commandbarbutton.mask. Refer http://support.microsoft.com/kb/286460/ for more details