vote up 0 vote down star

I am a dotnet newbie. After years of procedural coding, my company is moving on to the HOTTEST new trend i.e WINDOWS FORMS :)

Our Application is TabbedMDI. Basically we have a menu on the left and clicking an entry opens a new tab for CRUD. I have seen some MVP samples that have a couple of textboxes and it demonstrates moving the code behind to a Presenter class to make it TESTABLE! We have more complex logic than that.

I've heard Jeremy Miller talk about Presentation Patterns and Screen Activators and Screen Navigators etc. Sadly there are no Books on UI Patterns whereas there are tons of books on other patterns where they talk about inheriting from Animal class to have the cat Meow and a dog Bark.


So my question is this:

Let's say we are building tabbedMDI form dynamically based on information coming from somewhere like(XML, WEB SERVICE or in our case tables in database). After the form is created, there is a lot of logic whether the toolbar buttons are enabled/disabled; when and if we can navigate from tabpage to tabpage.

Navigation rules are different for the first page and other pages and so on. Validation involves not only what fields are shown on the form, but hidden fields. Some fields are validated against database and not simply being blank.

There are a lot of other requirements and for the sake of brevity I won't mention. THIS IS OUR FIRST PROJECT!!!

Where do I begin separating out the Navigation logic, Validation Logic, Tab activation logic?

Right now I have all that logic in the code behind because more often than not I need to have values from other form controls and/or underlying datasource to determine if switching tabs is allowed or whether I disable Toolbar buttons or I display error message etc.

I have seen SOLID with payrolls and employees. How can we apply that in UI design?

If someone has stumbled upon UI Pattern Blogs please point them out. I have gone through the 'Build your own CAB' series.

flag

0% accept rate
6  
Not trying to be mean but we would be more motivated toward answering if your accept rate was a little higher, considering giving back :) – meder Sep 26 at 3:24
Also, please don't use "Real World Applications" in a question. It sounds like only your applications are "real world" and all of my applications are in "fantasy world". My applications are real world, also. And I use design patterns. Please drop "real world". – S.Lott Sep 26 at 3:36
being a newbie, the accept rate is kind of LOW. Sad but true. I plan on getting to Jon Skeet level in short order though. – codemnky Sep 26 at 3:41
Never answered, never voted, never accepted an answer. I am not impressed. If you're getting something out of this site, is it too much to ask that you give at least a little back? It's not difficult. – Dinah Sep 26 at 3:50
1  
To clarify, the accept rate is based on what % of your questions you have selected and accepted an answer, not the % which corresponds to how many of your answers have been selected as the best answer. – meder Sep 26 at 4:25
show 4 more comments

2 Answers

vote up 1 vote down

We have more complex logic than that.

That's an argument FOR testability, not an argument against.

Sadly there are no Books on UI Patterns...if someone has stumbled upon UI Pattern Blogs...

Curiously, there are a lot of websites that talk about UI patterns. http://www.google.com/search?hl=en&source=hp&q=UI+patterns&aq=f&oq=&aqi=g10

link|flag
mostly on web interfaces. and they talk about end user experience NOT how to apply design patterns in implementation. – codemnky Sep 26 at 3:46
Martin Fowler's website is pretty much the definitive work on design patterns. – Robert Harvey Sep 26 at 3:55
been there. I know there are Orders and Customers and Shipping addresses. Those are business concerns that belong in the middle tier and how to use specification patterns to separate GoldCustomer from SuspiciousCustomer. I get that! I am talking about the FRONT END. Presentation layer! – codemnky Sep 26 at 4:01
Well, you already know about MVP. What are you waiting for? – Robert Harvey Sep 26 at 6:10
vote up 1 vote down

Okay, so here's the key to most patterns.

Don't think of your program as a series of instructions. Think of it as a series of 'servers', each sending messages to each other. The UI 'server' sends messages to the View 'server' when a button is clicked. The View 'server' sends messages to the Order 'server' to start an order. The Order 'server' then sends a message back to the View 'server' tellling it about the order, and the View 'server' sends a message to the UI 'server' giving it the data to display.

That's a quick example of what the MVP pattern really means. If it helps, instead of thinking about 'servers', think about people sending letters to one another.

link|flag
are you talking about SOA patterns? I have no idea how that relates to Client Side Presentation – codemnky Sep 26 at 4:35
No, not SOA, but rather thinking about your program as little 'services' that communicate with each other. – kyoryu Sep 26 at 5:18

Your Answer

Get an OpenID
or

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