I’m looking to replicate the “Add a device” dialog (I can’t attach a picture because of my reputation, but just go in “Devices and Printers” and click on
Add a device”) from Windows 7 in C#, more specifically the kind of “ListView” control. Is there any control in the .NET Framework that would allow me to do a listing of items with an Icon on the left and the text on the right?
Worst case scenario, I’ll just override the paint method of a ListView.
Well, found the answer. It was a lot more easy than I thought. I didn’t realize how the “Tile” mode draw items. So, I just did a small DrawItem method.
This works for me, but would need modification for any other projects.