请教如何让面板DLL文件,在NETLOAD后,自动显示面板??
我知道LISP文件里,比如我们定义各一个函数(defun tt()
....
)
函数外添加一句 (tt),即可实在在加载时直接启动TT函数
请问.NET里能做到么?
小弟初学,请大侠们指点迷津
继承IExtensionApplication接口 并重写该接口的初始化例程 本帖最后由 cheng5276 于 2014-9-12 15:39 编辑
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Autodesk.AutoCAD.Runtime;
using Autodesk.AutoCAD.EditorInput;
using System.Windows.Forms;
namespace Cheng5276_CAD
{
public class Class1 : IExtensionApplication
{
public static Autodesk.AutoCAD.Windows.PaletteSet ps;
public void Initialize()
{
MessageBox.Show("a");
}
}
}
可是老大,我这么设置后,编译无法通过,烦请继续指点
老大们,请教啊,可不能沉啊 错误是没实现 你实现就行了。。。
页:
[1]