Hi all,
I'm just wondering if it's possible to make the icons under large icons
view in listview bigger? For some reason, I think the default is set at
16 X 16 pixels?
I don't think I've done anything wrong?
-----------------------------------------------------------------------------------------------
this.listView1.View = View.LargeIcon;
this.listView1.
ImageList il = new ImageList();
il.Images.Add(Bitmap.FromFile("C:\\pictures\\topics\\1.gif"));
listView1.LargeImageList = il;
ListViewItem item1 = new ListViewItem("ALL");
item1.ImageIndex = 0;
listView1.Items.AddRange(new ListViewItem[] {item1});
---------------------------------------------------------------------------------------------------
Even though it was set to largeIcon, it's still only 16 X 16 pixels at
best. Any help will be appreciated.
Cheers
Edmond