Building a CAD program in WPF

前端 未结 2 1791
甜味超标
甜味超标 2021-01-18 09:29

- Building a CAD program in WPF:

I want to build a CAD program that will have 10000 LINE objects at a time. I\'m using L

相关标签:
2条回答
  • 2021-01-18 10:01

    Instead of using Line objects, you could draw your lines by Path objects. Here is an answer https://stackoverflow.com/a/15323221/1305119

    0 讨论(0)
  • 2021-01-18 10:21

    Next to hosting a winforms element inside WPF, I would also implement partial rendering on the zooming feature, e.g. when you zoom in everything that is not visible should not be calculated as well!

    0 讨论(0)
提交回复
热议问题