Dynamic UI vs Static UI - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T11:23:41Zhttp://stackoverflow.com/feeds/question/599412http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/599412/dynamic-ui-vs-static-ui0Dynamic UI vs Static UIDamien2009-03-01T06:58:29Z2009-03-01T11:17:20Z
<p>I've been wondering, at what point should I give up the convenience of a static data entry form with designer support for a dynamic UI which removes a lot of code duplication?</p>
<p>There seems to be a conflict in the programming world where people constantly try to remove code repetition to improve maintainability and yet when it comes to forms, that all goes out of the window and everything gets added explicitly to the forms.</p>
<p>What signs should I look for to know when it's time to leave the designer in the dust and create a dynamic UI?</p>
http://stackoverflow.com/questions/599412/dynamic-ui-vs-static-ui/599424#5994242Answer by TFD for Dynamic UI vs Static UITFD2009-03-01T07:17:20Z2009-03-01T07:17:20Z<p>Dynamic UI are fine for some types of data and some business processes</p>
<p>Mostly they look ugly once any level of complexity sets in</p>
<p>I use a model to define dynamic forms made from : group frame, labels, textboxes, numberboxes, option buttons, and checkboxes in WPF</p>
<p>It works fine for filling in basic data to control templated document and catalog creation</p>
<p>But I don't think it would work well for typical business data with complex hierarchies etc</p>
http://stackoverflow.com/questions/599412/dynamic-ui-vs-static-ui/599648#5996480Answer by Nir for Dynamic UI vs Static UINir2009-03-01T11:17:20Z2009-03-01T11:17:20Z<p>A UI has to be optimized to the user workflow, it has to make data entry convenient and it has to look nice, automatically generating such a UI for anything with real-world complexity is difficult if not impossible.</p>