对AutoCAD进行二次开发可以使用:ObjectArx,VBA,VLisp。但在这里不借用它们,而是直接使用C#开发。
有类库和应用程序两种方式:
方法1:vs2010 开发AutoCAD 2008 类库
建立动态库,从AutoCAD命令行使用NETLOAD调入,然后执行其方法
一 创建项目
1,建一个wxindows窗体程序“项目”,设置输出为“类库”
2,添加引用--浏览--从AutoCAD2008的安装目录C:\Program Files\Autodesk\MDT 2008下,找到引用acdbmgd.dll和acmgd.dll
3,引用如下命名空间
using Autodesk.AutoCAD.EditorInput;
using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.Runtime;
5,完整代码如下:
using System;
using System.Collections.Generic;
using System.Text;
using Autodesk.AutoCAD.EditorInput;
using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.Runtime;
namespace ClassLibrary2
{
}
二
在 vs2010 中 开发,默认的版本是.NET Framework 4.0版本高,对于引用AutoCAD 2008,讲无法编译
在工程的属性中,目标框架是 改为 .NET Framework 2.0 或者.NET Framework 3.5 就可以了
三 调试的方法设置
vs2010生成 AutoCAD2008 类库调试方法
属性中 --调试-- 外部启动程序:
C:\Program Files\Autodesk\MDT 2008\acad.exe
四
1 在vs2010的开发环境,编译链接完成后,按F5键启动调试,等待自动启动AutoCAD 2008完成后,
2 在命令行输入:NETLOAD,弹出装入类库的对话框,
浏览找到刚编译形成的类库,ClassLibrary2\ClassLibrary2\bin\Debug\ClassLibrary2.dll
3
将会提示是:未知的命令,原因是acdbmgd.dll acmgd.dll版本过高所致
五
AutoCAD 2008
版本 17.1.0.0,运行时版本 v2.0.50727
版本高
1 引用AutoCAD的安装目录下的acdbmgd.dll 和acmgd.dll的版本是 17.1.0.0,从其属性中
将“复制本地” 改为 “False”,这样形成的dll 的方法,在AutoCAD中就可以认识,不再是未知的命令
2 可以到网上下载较低的版本,比如我下载如下的版本,添加引用它们就可以了
版本 16.2.54.0
运行时版本 v1.0.3705
===================================
方法2:c#建立一个操AutoCAD2008的应用程序
一 首先建立一个 基于WIndowsFormApplicaton的项目
二 类型库的添加引用
右击项目的“引用”--“添加引用”--从“COM”页,找到以下两个类型库
1 AutoCAD 2008 Type Library
引用名称
AutoCAD
2 Autodesk AutoCAD Mechanical 1.0 Type Library
引用名称
AcadmAuto ----- Interop.AcadmAuto.dll,嵌入互操作类型 False
AXDBLib
GEAuto
三 主要的操作函数
1 使用的文件中加入语句
using AutoCAD = Autodesk.AutoCAD.Interop;
using System.Runtime.InteropServices;
using dbx = Autodesk.AutoCAD.Interop.Common;
2 注操作代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Windows.Forms;
using AutoCAD = Autodesk.AutoCAD.Interop;
using dbx = Autodesk.AutoCAD.Interop.Common;
using SmartSoft.ACAD;
namespace aotuCADwinFrm
{
}
3 使用的改造自网上的类
using System;
using AutoCAD = Autodesk.AutoCAD.Interop;
using System.Runtime.InteropServices;
using dbx = Autodesk.AutoCAD.Interop.Common;
namespace SmartSoft.ACAD
{