Off to DevConnections

Posted on November 5, 2006

And not a moment too soon - the rain has come to Portland.  My tentative schedule: Monday Registration Keynote Schmoozing Tuesday Vista and Office 2007 Top 10 ways to light up your apps on Vista Window Vista Tips and Tricks Intro to .NET 3.0 Vista for Managed Developers Wednesday Basics of WPF Multithreading in .NET 2.0 Layout and Navigation in WinForms Generics Too close to call - Writing Reliable Code ...

Read More


DataView for objects: Implementation Part V

Posted on November 5, 2006

Note: You can download the complete implementation here. In my last post I described the implementation of the IBindingList interface in ObjectListView, my implementation of a view for collections of arbitrary objects.  The goal is to provide the same view capabilities for collections that DataView supports for DataTables. In this post, we'll move on to the final interface required for data binding our view, which is IBindingLi...

Read More


DataView for objects: Implementation Part IV

Posted on October 22, 2006

Note: You can download the complete implementation here. In my last post I described the implementation of the IList interface in ObjectListView, my implementation of a view for collections of arbitrary objects.  The goal is to provide the same view capabilities for collections that DataView supports for DataTables. In this post, we'll move on to the next interface required for data binding, IBindingList. IBindingList This interface ...

Read More


DataView for objects: Implementation Part III

Posted on October 15, 2006

Note: You can download the complete implementation here. In my last post I described the implementation of the ICollection interface in ObjectListView, my implementation of a view for collections of arbitrary objects.  The goal is to provide the same view capabilities for collections that DataView supports for DataTables. In this post, we'll move on to the next interface required for data binding, IList. Positional list access The ...

Read More


DataView for objects: Implementation Part II

Posted on October 12, 2006

Note: You can download the complete implementation here. In my last post I described the implementation of the IEnumerable interface in ObjectListView, my implementation of a view for collections of arbitrary objects.  The goal is to provide the same view capabilities for collections that DataView supports for DataTables. In this post, we'll move on to the next interface required for data binding, ICollection. ICollection This ...

Read More