中望CAD下C#开发插件

相对于开发中望CAD独立的EXE,开发中望CAD的插件跟AUTOCAD几乎没有差别。

1.新建工程

正常新建一个C#的Class Library即可。

2.依赖

C#依赖库就在已经安装的中望CAD目录下,加入以下几个DLL即可。

ZWCAD.exe
ZwDatabaseMgd.dll
ZwManaged.dll

3.配置

右键工程->Properties->Debug->Start external program
加入安装的中望CAD的ZWCAD.exe,比如我的是

C:\Program Files\ZWSOFT\ZWCAD 2021\ZWCAD.exe

4.示例代码

(1)F5执行代码
(2)进入界面后,执行NETLOAD,选择生成的类库文件。
(3)输入Hello命令,即可在控制台中看到输出的"Hello World"字符型。

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

namespace ZWCADStartup
{
    public class ZWCADCommand
    {
        [CommandMethod("Hello")]
        public void ParsePlant()
        {
            Editor editor = Application.DocumentManager.MdiActiveDocument.Editor;
            editor.WriteMessage("Hello World");
        }
    }
}

你可能感兴趣的:(中望CAD下C#开发插件)