Category Archives: Windows Forms

Everything I know about building a responsive Windows Forms application

The more I read about multi-threading, the less I feel I understand. Perhaps a good rule is don’t write multi-threaded code, similar to the first law of Distributed Objects. Fortunately, all I am going to talk about in this article … Continue reading

Posted in UI, Windows Forms | Comments Off on Everything I know about building a responsive Windows Forms application

Windows Forms Presentation Model Implementation

As mentioned last time, the Presentation Model pattern allows us to decouple our UI Model from our domain model. Briefly restated, this is a good thing, as we do not want UI concerns to leak into our domain model, and … Continue reading

Posted in UI, Windows Forms | Tagged , , | Comments Off on Windows Forms Presentation Model Implementation

Presentation Model in Windows Forms

So, certain UI patterns are getting a fair bit of coverage in the .net community currently. Jeremy Miller and Glenn Block for instance, have been posting about this pattern in the past week or so. My current project has Windows … Continue reading

Posted in UI, Windows Forms | Tagged , , , , | Comments Off on Presentation Model in Windows Forms