中望CAD.NET二次开发(C#)--- 环境搭建


开发环境


中望CAD版本:2021

VS版本:2015


1.创建类库项目

.NET Framework4.7

2.添加类库

ZwDatabaseMgd.dll

ZwManaged.dll

这两个DLL位于中望CAD安装目录下,复制本地属性改为False

3.导入命名空间

using ZwSoft.ZwCAD.Runtime;
using ZwSoft.ZwCAD.ApplicationServices;
using ZwSoft.ZwCAD.DatabaseServices;
using ZwSoft.ZwCAD.EditorInput;

4.定义命令

[CommandMethod("ZZZ")]
public void ZZZ()
       {
           DocumentCollection docs = Application.DocumentManager;
           Document doc = docs.MdiActiveDocument;
           Editor ed = doc.Editor;
           Database db = doc.Database;
           ed.WriteMessage("欢迎使用中望CAD");
       }

5.编译程序

6.启动中望cad

7.在命令行中输入ZZZ,命令行中会显示“欢迎使用中望CAD”

你可能感兴趣的:(中望CAD.NET二次开发(C#)--- 环境搭建)