suggestions for designing a UI to Generate, for loop, if condition and switch case. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T13:50:28Z http://stackoverflow.com/feeds/question/728661 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/728661/suggestions-for-designing-a-ui-to-generate-for-loop-if-condition-and-switch-cas 1 suggestions for designing a UI to Generate, for loop, if condition and switch case. Anirudh Goel 2009-04-08T05:46:37Z 2009-04-13T22:58:38Z <p>I'm building a UI for my college, where I want people who are new to programming with C, to use my UI. In there I want to provide a feature where if they wish to insert an IF-Elseif-Else condition, or a FOR loop or a Switch Case, they may use the UI, where in they just have to fill in the values (the conditions) and the UI generates the code. So I wanted to know if any of you have come across any program which shows the proper design layout required for such requirements. i.e. which control to use, what to put where, how to make it intutive, etc.</p> http://stackoverflow.com/questions/728661/suggestions-for-designing-a-ui-to-generate-for-loop-if-condition-and-switch-cas/728695#728695 0 Answer by Marc Gravell for suggestions for designing a UI to Generate, for loop, if condition and switch case. Marc Gravell 2009-04-08T05:58:53Z 2009-04-08T05:58:53Z <p>You mention C# 2.0 - do you mean .NET 2.0? If .NET 3.0 is an option, you could perhaps re-host the Workflow (WF) designer. This has many of the usual branch (etc) constructs built in, but is more of a flow diagram.</p> http://stackoverflow.com/questions/728661/suggestions-for-designing-a-ui-to-generate-for-loop-if-condition-and-switch-cas/729889#729889 0 Answer by haqwin for suggestions for designing a UI to Generate, for loop, if condition and switch case. haqwin 2009-04-08T13:03:39Z 2009-04-11T21:43:21Z <p>Not exactly the answer maybe but a good start on how to design an application like this to be really simple is too look at <a href="http://mindstorms.lego.com/eng/Overview/NXT%5FSoftware.aspx" rel="nofollow">lego mindstorm</a>. They have made a great job at creating simple symbols for programming functionality. It's amazing what kids can do with the application. </p> <p>It won't suggest what controls to use. And I don't think the tree view is the right tool. It needs to more free in nature. But a set of fine design images and a way to draw lines between them would be whats needed.</p> http://stackoverflow.com/questions/728661/suggestions-for-designing-a-ui-to-generate-for-loop-if-condition-and-switch-cas/745696#745696 0 Answer by Bevan for suggestions for designing a UI to Generate, for loop, if condition and switch case. Bevan 2009-04-13T22:58:38Z 2009-04-13T22:58:38Z <p>You might find the style of <a href="http://en.wikipedia.org/wiki/Nassi-Shneiderman%5Fdiagram" rel="nofollow">Nassi-Shneiderman</a> (wikipedia link) diagrams useful for putting your UI together - lots of boxes, suitable for easy crafting with standard WinForms controls.</p>