Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了 C# 库,我想通过 Excel 用户界面使用库对象。
用户可以选择一个范围,一些按钮将运行以选定范围作为输入的方法。
在 Visual Studio 中,我已经看到我能够编写 C# Excel 加载项:这是一个好方法吗?有没有更好的办法 ?也许创建一个 C# Excel 模板并在其中编写代码?
有什么好的教程/示例吗?
如果您只想在 Excel 提供的功能之外提供一些附加功能,最好创建一个 Excel 加载项。如果您只想为用户提供一组有限的功能并需要控制所有用户操作,则需要创建一个嵌入了 Excel 对象的 C# 应用程序(或使用提供简单 API 的第 3 方 Excel 库)。