如何更改Excel VSTO加载项的显示名称?

发布于 2024-11-08 14:12:43 字数 54 浏览 0 评论 0原文

如何更改 Excel VSTO 加载项的显示名称(显示在 Excel 的已安装加载项列表中)?

How to change display name (shown in the Excel's list of installed add-ins) of an Excel VSTO add-in?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

手心的海 2024-11-15 14:12:43

可以在 ClickOnce 安装程序设置中指定此名称。

This name can be specified in the ClickOnce installer settings.

一腔孤↑勇 2024-11-15 14:12:43

我相当确定这是您实际的 VSTO 项目的名称,回显到编译过程中生成的插件的 .manifest 文件...

查看清单末尾的 vsto3FriendlyName 元素。

I'm fairly sure that's the name of your actual VSTO project, echoed through to the .manifest file for the addin that is generated during the compile process...

Look at the end of the Manifest for the vsto3FriendlyName element.

A君 2024-11-15 14:12:43

在 GA_Ribbon 类中,

请更改选项卡名称和显示名称,以便根据需要显示插件选项卡

 this.tab1 = this.Factory.CreateRibbonTab();
 this.tab1.Label = "newlabel";
 this.tab1.Name = "newname";

Inside the GA_Ribbon class,

Please change the tab name and display name so that the addin tab will be displayed as it needs to be

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