ListViewGroup – only one item per group

As I was working on a new GUI part of the software I’m working on, I needed to allow the user to choose only a single item in each category. I overloaded the ListView control, and override the OnItemCheckmethod. Here’s the result:

Design Patterns Implementation in a Storage Explorer Application

Although a bit old, I found the well-written, interesting article by Breman Sinaga, Design Patterns Implementation in a Storage Explorer Application to be an excellent piece of work. The article discusses several design patterns used in the project, including: The article shows how to incorporate all patterns together into a well-designed, well thought-of tool. Here’s … Read more

DebbugerDisplayAttribute

A little late, I know, but while watching the Channel 9: Scott Nonnenberg – Visualizers in VS 2005 webcast, I’ve learned the beauty of the DebuggerDisplayAttribute. For those of you not familiar with this attribute, it allow you to choose how the tool tips inside the IDE while debugging will look like, and what values … Read more