Hello every one, I am using the following code to add items to my listview I have PNG icons 16x 16 with transparency , unfortunately the icons as a result of this code look really bad in the listvirew. looks like it is not getting the transparency of the the image, PLease help, thanks in advacne.. Ahmed ImageList imList = new ImageList(); Image img = new System.Drawing.Bitmap(@"D:\Resources\PNG\User.png"); imList.Images.Add(img); listViewUsers.SmallImageList = imList; foreach (MItem mItem in items) { this.listViewUsers.Items.Add("hello world", "hello world", 0); }
Ahmed