Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
400
Drop Shadow
posted

I have an Ultra List View locked to Details. Two subitems are Image columns. One of the columns displays as expected, and the other appears with a drop shadow.

Both images are 16px high. How do I turn off the shadow? The image is small, and the drop shadow shrinks it even more to accommodate the shadow.

Both images have been attached above and are transparent background PNG files. Here is the code I used to create the UltraListViewItem

 var ulviType = new UltraListViewSubItem(l.Position == FilterPosition.Prefix ? Properties.Resources.prefix : Properties.Resources.suffix, null);
 var ulviImage = new UltraListViewSubItem(l.Exclusion ? Properties.Resources.delete1 : Properties.Resources.tick, null);
 var ulvi = new UltraListViewItem(l.Raw, new UltraListViewSubItem[]{ ulviType,
 ulviImage }, l);          ulvi.Appearance.Image = Properties.Resources.filter;
 lstFilters.Items.Add(ulvi);

I really appreciate any help you can provide.