JamBaseShellListViewLargeCustomImages Property |
Namespace: Jam.Shell
// Use a custom icon for text files. // Note: Using the ActiveImageList makes sure, the imagelist matching the current view style is addressed. private void ShellListView1_AddItemCustomIcon(object sender, AddItemEventArgs e) { if (System.IO.Path.GetExtension(e.Item.FullPath).ToUpperInvariant() == ".TXT") { e.Item.ImageIndex = shellListView1.ActiveImageList.Images.IndexOfKey("document_text.png"); } }