.net Listview control will only display largeIcon.
- by Redshirt
I'm using the RC of visual Studio 2010. Writing a .net 3.5 application. When I launch the app, the listview control only shows in LargeIcon view. This is not the view I want. I've set the View property in the designer with no success.
I've even tried to explicitly set the view during runtime
lvAvailableItems.View = View.Tile;
Has anyone else had this issue, and if so what was your workaround.