4

Are there any free libraries for .NET like Eclipse / Netbeans / Spring RCP for java?

Dutow
  • 5,638
  • 1
  • 30
  • 40
  • Possible duplicate of [What add-in/workbench framework is the best .NET alternative to Eclipse RCP?](http://stackoverflow.com/questions/232345/what-add-in-workbench-framework-is-the-best-net-alternative-to-eclipse-rcp) – Jules Jun 13 '16 at 12:33

1 Answers1

1

The defacto GUI framework for .NET is WPF, and it is included with the Microsoft .NET SDKs. More info:

What specific capabilities are you looking for? WPF/.NET represents more functionality than straight Swing or SWT, but the Eclipse/Netbeans/Spring RCP projects provide a much more comprehensive foundation for complex and modular GUI applications.

I don't know of any defacto application frameworks for WPF, but perhaps something like this would be of interest:

kaliatech
  • 17,579
  • 5
  • 72
  • 84
  • I know WPF, but i'm searching from something bigger, for developing complex apps. I'm looking for something similar to Netbeans RCP's modularization (separation, plugin-updater api, etc) and advanced gui building features (like it's internal window handling logic) – Dutow Jan 28 '11 at 11:56
  • I don't know of anything similar to eclipse/netbeans RCP libraries in the WPF/.NET space. I'm not an expert in WPF/.NET, but I believe the answer to your question, is simply, "no". – kaliatech Jan 30 '11 at 14:51