Using transparent color as item's background shows text behind the background
ObjectListView - ListView on caffeine, guarana and steroids
Brought to you by:
grammarian
Just a small bug that I found by chance. It is a bit hard to explain, just check the attached image. This is how I am setting the blue color:
private void UninstallerObjectListView_FormatRow(object sender, FormatRowEventArgs e)
{ e.Item.BackColor = Color.FromArgb(unchecked((int)0xaabbddff)); }
If I get rid of transparency (0xffbbddff) or don't set any color, the background is solid as expected.