alkampfer on October 30th, 2007

If you adopt a MVC pattern for your code in windows forms, each form should implements some Interface to make possible for the controller to communicate with the UI. This is needed so the Controller does not work directly with the form but instead with an interface such as IShippingUi. But what happens when the [...]

kick it on DotNetKicks.com

Continue reading about Model View Controller and Cross Thread Ui methods invoke

alkampfer on October 15th, 2007

Today I was reading some posts (Simone, Ayende, Alessandro and others). I want now to express my opinion, I’m using my English blog, even if English is not my first language because I like to make it readable by all people, and I hope that I can be clear enough, please everyone to excuse my [...]

kick it on DotNetKicks.com

Continue reading about Some thinking in a Cold day

alkampfer on October 12th, 2007

BindingList<T> is a great class to do binding to list of custom objects, it implements IBindingList for you, giving the ability to use the BindingList<T> as datasource for the BindingSource control. But when you cast the BindingList<T> to the IBindingList interface and try to call Find() Method you’ll get a NotImplementedException, how can it be [...]

kick it on DotNetKicks.com

Continue reading about BindingList.Find and NotImplementedException