vote up 1 vote down star

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.

flag

77% accept rate

3 Answers

vote up 0 vote down

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.

link|flag
my project currently is on .NET 2.0, i appreciate the idea you gave using the work flow designer, but i may need to strip off many features from it, to suit my style. Is that possible to do? – Anirudh Goel Apr 8 at 6:21
Well, EF doesn't exist in .NET 2.0, which might rule that out anyway... I honestly don't know how little or much you can customize the designer - I haven't tried. – Marc Gravell Apr 8 at 6:44
vote up 0 vote down

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 lego mindstorm. They have made a great job at creating simple symbols for programming functionality. It's amazing what kids can do with the application.

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.

link|flag
Lego Mindstorm is essentially a subset of LabVIEW which is a graphical programming language. This allows you to build a block diagram with icons signifying the functions and wires connecting the flow of data. There is no textual code underlying the graphical block diagram. – Swinders Apr 8 at 13:13
vote up 0 vote down

You might find the style of Nassi-Shneiderman (wikipedia link) diagrams useful for putting your UI together - lots of boxes, suitable for easy crafting with standard WinForms controls.

link|flag

Your Answer

Get an OpenID
or

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