CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2010
    Posts
    1

    CAD style program control

    I need to build a simple CAD program that allows people to drag lines from from one object to another on the screen and tell them how far the objects are apart based on whatever measurement I'm using. Also, I need for them to be able to click objects and have radius circles appear around the object on the screen of various sizes. Does anyone know of a control for C# that would help with that? Thanks.

  2. #2
    Join Date
    Jun 2008
    Posts
    2,477

    Re: CAD style program control

    You would have to write it yourself. It should be pretty simple, especially your first question, you just need to keep track of clicks and use pixels as a measuring stick (i.e., 1 pixel = N inches or whatever).

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured