明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1247|回复: 1

[运行时] 关于GetPoint的问题

[复制链接]
发表于 2017-11-30 10:55:49 | 显示全部楼层 |阅读模式
在C#进行二次开发时,例用GetPoint方法先取图中多个坐标点,现在想当输入回车或鼠标右键时认为是选点结束,这个怎么实现,我写的代码只能按Esc键才能完成,请大神帮忙。
  1. public void AddPline()
  2.         {
  3.             Class2 c2 = new Class2();
  4.             Point2dCollection pts = new Point2dCollection() ;
  5.             Editor ed = Application.DocumentManager.MdiActiveDocument.Editor;
  6.             PromptPointResult ppr = ed.GetPoint("\n请选择多段线顶点");
  7.             while( ppr.Status == PromptStatus.OK )
  8.             {
  9.                 if (ppr.Status == PromptStatus.None)
  10.                     break ;
  11.                 Point3d tmp =(Point3d)ppr.Value ;
  12.                 Point2d pt= new Point2d(tmp.X,tmp.Y );
  13.                 pts.Add((pt));
  14.                 ppr = ed.GetPoint("\n请选择多段线顶点");
  15.             }
  16.             c2.AddPline(pts);
  17.         }
复制代码


发表于 2017-12-3 12:52:03 | 显示全部楼层
  1.         [CommandMethod("tt2")]
  2.         public void Test2()
  3.         {
  4.             PromptPointOptions opts = new PromptPointOptions("\nselect a point:");
  5.             opts.AllowNone = true;
  6.             PromptPointResult res;
  7.             do
  8.             {
  9.                 res = SystemManager.Editor.GetPoint(opts);
  10.             }while (res.Status == PromptStatus.OK);
  11.         }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 09:48 , Processed in 0.244387 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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