Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got an idea which is trying to imitate VS.

In my project, I've created many views (user controls).

I want to display these views in a toolbar (like VS) and when I choose one of them, draw the selected view in another control (like a designer, I guess this can be a grid or richtextbox).

Is possible doing this? How much difficult would be? Does exists a demo in internet?

I question this because I'm not an expert in graphics with WPF.

Any questions, please let me know.

share|improve this question

1 Answer

up vote 1 down vote accepted

Yes it's pretty much possible and won't be too difficult to achieve, but that will depend on complexity of your controls; Look at this article series having similar implementation using Canvas -

WPF Diagram Designer - Part 4, Part 3, Part 2, Part 1

One more project based on this article can be found at codeplex-

http://simulo.codeplex.com/

Also have look at this similar question for some other options -

Creating a UI Designer

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.