vote up 6 vote down star
2

I'm looking to build a .Net application that has a UI similar to that of Visual Studio. Is there a name for that paradigm? Or does anyone know of a tutorial to do so...or even an OSS project that utilizes that paradigm? I'm looking for like the docking aspects and the interaction between panels...

99% of my experience is in the web space...so this sort of application is a new effort for me.

Thanks!

flag

7 Answers

vote up 7 vote down check

Take a look at sharpdevelop. Its OpenSource, there is even a book on its design/implementation and how to extend it.

That should get you going, and even give you code to start with.

link|flag
I think the question is how to build a VS-like UI, not an alternative to VS... – Dave Swersky Feb 21 at 0:10
I think Imfamy's point is that you could use the source to see HOW they built the UI, which would answer the question. – Joe Feb 21 at 7:24
Joe K is correct, its more about the source then the app. #develop is open source, so you can download it and take a look at how they implemented it. There is also an amazing book on its design. – Infamy Feb 23 at 18:03
Poked around in it...but then I found the Telerik suite...either way both is a good start. – Webjedi Feb 23 at 23:06
vote up 1 vote down

You might want to take a look at MonoDevelop (as well SharpDevelop, which has been mentioned already)

link|flag
vote up 0 vote down

There is (used to be?) a project on SourceForge that provided just the DockingManager you need to build the MDI and docking caracteristics of Visual Studio-like UI

Try here : http://sourceforge.net/projects/dockpanelsuite

Or google for WeifenLuo Forms Docking

link|flag
vote up 2 vote down

For the docking aspects, you could try Dock Panel Suite. It's a free and open source project, hosted on SourceForge. It hasn't had a new release for a couple of years by the looks of it, but it claims to be in a production/stable state, so maybe that's no issue.

link|flag
vote up 2 vote down

There are plenty of 3rd party control that will give you dockable panels and what not. I know Infragistics provides one. I think Component factory does too, but I'm not sure about the docking panels on that one.

Have you looked into the VS IDE Shell?

link|flag
vote up 3 vote down

If you're building an application that also needs some of VS's behavior, then you might want to consider extending VS IDE itself. See MSDN Visual Studio Extensibily. Note that starting with VS 2008 you can ship IDE extensions as stand-alone (I think it's called shell mode).

link|flag
vote up 2 vote down

Component Factory makes a number of controls to create Visual Studio like UI's. You could always try to figure out how they do it. There are any number of similar commercial controls.

As far as open source goes, i'm not familair with any robust open source projects to do this.

EDIT: Yeah, I guess sharpdevelop is a good choice also.

link|flag

Your Answer

Get an OpenID
or

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