明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2992|回复: 11

请教AutoCAD .NET 开发人员手册中样例会出错?

  [复制链接]
发表于 2010-7-5 16:05:00 | 显示全部楼层 |阅读模式

  请教版主:

  我是AutoCAD .NET 开发的初学者,使用CAD2008+VB2008,从AutoCAD .NET 开发人员手册中复制了样例《调整应用程序窗口的位置和大小》。并按说明正确地引用了PresentationCore (PresentationCore.dll) library.

但出现多处引用System.DrawingApplication.MainWindow不正确和未定义类型point、size.见下图:

 

请教是何问题??谢谢了!!

 

 

发表于 2010-7-5 16:29:00 | 显示全部楼层
图再上传一次,另外,手册的相关链接也放上吧
 楼主| 发表于 2010-7-5 17:11:00 | 显示全部楼层

手册的相关链接:http://docs.autodesk.com/ACD/2010/ENU/AutoCAD%20.NET%20Developer's%20Guide/index.html

 楼主| 发表于 2010-7-5 17:17:00 | 显示全部楼层
 楼主| 发表于 2010-7-5 17:18:00 | 显示全部楼层

发表于 2010-7-5 17:23:00 | 显示全部楼层

图呢?我这是看不见的

上传文件的链接点了么

另外手册的相关链接在手册的右边网页上点右键,然后看属性

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
 楼主| 发表于 2010-7-6 12:42:00 | 显示全部楼层
 楼主| 发表于 2010-7-6 12:57:00 | 显示全部楼层

但很遗憾,为什么我上传图片总本地硬盘的链接?如file:///c:/cadnet2.jpg,所以在论坛无图片显示。

发表于 2010-7-6 13:47:00 | 显示全部楼层
没什么问题的
  1. using System;
  2. using System.Linq;
  3. using System.Text;
  4. using System.Drawing;
  5. using Autodesk.AutoCAD.Runtime;
  6. using Autodesk.AutoCAD.ApplicationServices;
  7. [assembly: CommandClass(typeof(TlsTest.Class3))]
  8. namespace TlsTest
  9. {
  10.     class Class3
  11.     {
  12.         [CommandMethod("PositionApplicationWindow")]
  13.         public static void PositionApplicationWindow()
  14.         {
  15.             // Set the position of the Application window
  16.             Point ptApp = new Point(0, 0);
  17.             Application.MainWindow.Location = ptApp;
  18.             // Set the size of the Application window
  19.             Size szApp = new Size(400, 400);
  20.             Application.MainWindow.Size = szApp;
  21.         }
  22.     }
  23. }
 楼主| 发表于 2010-7-8 14:01:00 | 显示全部楼层

但我用VB.net,首先出错了Imports System.Drawing此名提示“找不到命名空间”,请问:引用了PresentationCore (PresentationCore.dll) library外,还需引用什么?谢谢了!

 

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 17:35 , Processed in 0.168215 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表