Windows Forms Listview Control Columns Header not Shown
2014-08-22
When you use Windows Form Listview control, you will see a strange problem: you added columns, but the columns can not showing up in the designer panel in Visual Studio.
This is from Microsoft design: they set default Listview control view property to LargeIcon, maybe they think ListView control is not like regular DataGridView control, the view should be use Icon showing style?
![image image](Images/2014/08/image4.png)
Whatever, if you want to see your columns, just change View to "Details":
![image image](Images/2014/08/image5.png)
Now you can see your columns.