Reputation: 17119
HI!
I am new to C# and plan to use it for my application GUI. I am trying to make my GUI similar to SPSS:http://www.spss.com/images/08/statistics_screens/ez_rfm-big.jpg
Is this easy in C#? Is there a template that has done most of it? (Like MDI/SDI framework in MFC)
Could someone suggest some big examples(some working/half-working source code for me to study?)
Thanks, Yin
Upvotes: 1
Views: 3672
Reputation: 21232
there is lot of Win forms videos on controls you might need here just scroll down to Windows Forms Controls Series
Upvotes: 2
Reputation: 54210
Yeah its very easy to create GUI using C# on .NET platform. For your purpose. You are going to need following classes/Controls:
and others (which you need to figure out).
just go through these classes in MSDN (you'll find many examples there). If you want to quickstart. Otherwise I get a good book to have solid foundations.
Upvotes: 6
Reputation: 7781
First of all, in your Visual Studio simply create new WinForm project, where you can just drag-and-drop controls from the toolbar and edit their look&feel in design mode.
Upvotes: 1