怎么用vs2010开发wps插件

怎么用vs2010开发wps插件,第1张

本帖最后由 废柴粹 于 2013-11-14 08:21 编辑

C#的话,这么来建立项目

1、新建一个类库项目;

2、从菜单“项目”->"添加引用"中,添加对WPS COM类库的引用,KSO库和Addin-in库是必选,WPS ET WPP根据需要添加

3、添加命名空间的引用缺敏

using ET

using KSO

using AddInDesignerObjects

4、继世侍承接口namespace ClassLibrary1

{

public class Class1 : IDTExtensibility2

5、实现接口,鼠标右键IDTExtensibility2 ,菜单项中选择“实现接口”,VS会自动添加接口的函数

using System

using System.Collections.Generic

using System.Linq

using System.Text

using ET

using KSO

using AddInDesignerObjects

namespace ClassLibrary1

{

public class Class1 : IDTExtensibility2

{

public void OnAddInsUpdate(ref Array custom)

{

throw new NotImplementedException()

}

public void OnBeginShutdown(ref Array custom)

{

throw new NotImplementedException()

}

public void OnConnection(object Application, ext_ConnectMode ConnectMode, object AddInInst, ref Array custom)

{

throw new NotImplementedException()

}

public void OnDisconnection(ext_DisconnectMode RemoveMode, ref Array custom)

{

throw new NotImplementedException()

}

public void OnStartupComplete(ref Array custom)

{

throw new NotImplementedException()

}

}

}

6、注册COM,程序集签名,添加注册表项,这搜扮吵个与VB.net相同。

在开始——程序——WPS个人版——WPS

OFFICE工具——配置工具,中选择高级。勾选使用打开和保存的文件类型(这桥顷样就可敏源陆以双击DOC等格式裂磨文档,直接用WPS打开)。默认保存成DOC等格式,进入WORD也可以打开WPS新建的文档。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8236284.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-14
下一篇 2023-04-14

发表评论

登录后才能评论

评论列表(0条)

保存