views:

389

answers:

1

Does anybody know of a tutorial or sample code on how to create a simple designer control in WPF?

I am trying to write a simple designer in WPF where users can drag and drop data items (charts & lists) on specific points on a page (e.g. Line 3, Coloumn 24).

+2  A: 

You can check out this article about a diagram designer in WPF (this is the last part but the entire series if 4 articles long). It's not related to report but might give you a starting point about how to manage items on a surface with drag'n'drop.

Jalfp