views:

78

answers:

2

Hi,

I have to develop a CAD application and I am planing to use WPF with C#. Earlier I had used GDI+ with C# to write similar application.

How can I perform the graphics operation in WPF similar to GDI+?

I want to set the pixel color with pencil (similar to MS Paint), draw some basic shapes such as circles, lines, rectangles etc etc.

I am planning to use canvas. Some one have any example?

Thanks

+1  A: 

Yes , Wpf can be used for havey graphics based UI. See this link

For performance of WPF see this blog

saurabh
+1  A: 

Check out Kael Rowan`s ZoomableCanvas. It provides Virtualization and may be more suitable for heavy graphics scenarios than the default Canvas.

Joachim Kerschbaumer