Leo1980 发表于 2017-12-30 11:11:29

自定义菜单问题

本帖最后由 Leo1980 于 2017-12-30 11:13 编辑

按照《autocad vba_vb.net开发基础与实例教程 第二版》的教程做,
在下面这个函数总是出问题:
public static CustomizationSection AddCui(this Document doc, string cuiFile, string menuGroupName)
      {
            CustomizationSection cs=null;//声明CUI文件对象
            if (!File.Exists(cuiFile))//如果要创建的文件不存在
            {
                cs = new CustomizationSection();//创建CUI文件对象
                cs.MenuGroupName = menuGroupName;//指定菜单组名称
                cs.SaveAs(cuiFile);//保存CUI文件
            }
            //如果已经存在指定的CUI文件,则打开该文件
            else
            {      
                   cs = new CustomizationSection(cuiFile);   
            }
            return cs;//返回CUI文件对象
      }


当cui文件已建立时,获取的cs总是为null,请教各位是什么原因啊
环境:WinXPSp3+VS2010 SP1+Net3.5+Autocad2008中文版


Leo1980 发表于 2018-2-7 16:37:34

自己解决了,因为安装多个autocad,引用版本错了
页: [1]
查看完整版本: 自定义菜单问题