Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create an interactive (Drag and drop stuff) GUI in C#

Need to make a custom application in which i can drag and drop (predefined) items on to a workspace and move them freely, example is of in Microsoft Office PowerPoint where a workflow diagram can be made easily ...

need a start, where can i get one ?

like image 416
Basit Anwer Avatar asked Aug 19 '10 05:08

Basit Anwer


2 Answers

You may want to take a look at this CodeProject article, concerning how to create a diagram designer in WPF: http://www.codeproject.com/KB/WPF/WPFDiagramDesigner_Part1.aspx

like image 99
Tormod Fjeldskår Avatar answered Oct 12 '22 21:10

Tormod Fjeldskår


Sounds like a fun, but big project.

I'd start here: Creating Your Own Drawing Application with Visual Basic .NET, Part 1. It's VB.NET, but it's a good start, and it';s all about the framework. Hopefully, you can translate VB.NET to C#.

like image 37
David Avatar answered Oct 12 '22 19:10

David