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.
I've made currently the following screen to add if-elseif-else statements.

I'm doing it in C# 2.0.
So to add if/elseif/else nodes I'm using a treeview control, and on the left I'm using textboxes to accept the conditions and the yellow box is to enter the code corresponding to it.
