AutoCAD VB.Net 颜色选择器
我正在将一些 AutoCAD VBA 移植到 VB.Net。
几个模块执行 ThisDrawing.SendCommand("_color" & vbCR)
来弹出 AutoCAD 颜色选择器,然后通过执行 ThisDrawing.GetVariable("CECOLOR")< 来处理响应/code> 获取所选颜色。
对于.Net,SendCommand 在程序结束之前不会执行。
如何让 AutoCAD 颜色选择器在我的代码中内联执行?
I am porting some AutoCAD VBA to VB.Net.
Several of the modules do a ThisDrawing.SendCommand("_color" & vbCR)
to popup an AutoCAD color picker, then process the response by doing a ThisDrawing.GetVariable("CECOLOR")
to get the selected color.
With .Net, the SendCommand does not execute until the program ends.
How can I get the AutoCAD color picker to execute inline in my code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个 ColorDialog 类可以做到这一点。这是一些 C# 代码:
There is a ColorDialog class to do that. Here is some C# code: