Tutorials & Pods
Interesting Tutorials and Podcast’s
This list is in a constant state of flux and will include things from the past as they come to mind and things yet found.
This page is dedicated to tutorials and podcast’s on a variety of subjects. It is an aggregation that I have found on my travels on the web and many of which I found use for in my own working life. Often I find myself recommended these links to others and this page should help me with that specific need.
-
Ask Udi Podcast (hours of great stuff)
-
Castle Windsor Dynamic Proxies by Krzysztof Koźmic
-
Castle Windsor Inversion of Control and Dependency
Injection by Simon Busoli
-
Entity Framework 1.0 by Stefan Cruysbergh
-
Herding Code Podcast’s
-
Software Engineering Radio Podcasts
-
T4 Code Generation
2 Comments so far
Leave a reply










A while back you did a CodeProject article on extending ListView to include events for ItemsAdded and ItemsRemoved. It was pre-Framework 2.0.
http://www.codeproject.com/KB/architecture/observerlistview.aspx?msg=3202630#xx3202630xx
I was just wondering if you ever updated that project/code/control to work after Framework 1.1.
It was a great article but I just haven’t learned enough about C# yet to be able to do the update myself and having those events would be very useful.
Thanks!
Clint
Hi Clint
It’s been a while since I had to work with the ListView however I would suggest that these days you would probably be better served by using an Observable Collection to populate the listview (with binding) and then monitor the collection.
http://msdn.microsoft.com/en-us/library/ms668613.aspx
Thanks,
Simon