怎么把AutoCAD嵌入到c# Winform程序的一个窗体中
一点思路也没有啊  能给个案例就最好了

解决方案 »

  1.   

    CAD 「那么大的一坨」,你嵌到哪去啊?
      

  2.   

    有什么好的控件吗?CAD控件 放到 winform中
      

  3.   

    AutoCAD2010是有一个控件的啊,你装完AutoCad2010就可以了,或者你通过获取AutoCad的句柄嵌入到Winform里也可以啊
      

  4.   


    http://www.woutware.com/cadlib4.0.html
      

  5.   

    DDVue控件的函数不知道怎么用?
    CreateLine方法解释
    [form.]control.CreateLine <Handle> <Location> <X1> <Y1> <Z1> <X2> <Y2> <Z2>
    CreateLine
    [form.]control.CreateLine <Handle> <Location> <X1> <Y1> <Z1> <X2> <Y2> <Z2>
    Handle: The value of the entity handle if created succesfully
    Location: The layout name or modelspace name fwhere the entity will be created
    X1,Y1,Z1,X2,Y2,Z2: Coordinates of the Line entity
    Return Boolean
    (2),(3)
    This will create a line entity using the coordinates passed. The line can
    be created in a layout by passing the layout name in the Location
    parameter or if required the line is to be placed in modelspace, then
    pass “Modelspace” in the Location parameter.
    The handle of the created line entity will be return, this is useful if the
    entity header values need changing.
    The entity will be created using the default values, i.e Layer 0 etc.
      

  6.   

    装个看DXF的控件就可以了....还把整个设计都套进去,,,坑..啊
      

  7.   

    学习了,有没有这方面的资料,也想在c#中调用cad进行画图,