如何在 ObjectListView 中设置 "background" 选中项的颜色?

How to set "background" color of selected item in ObjectListView?

如何在 objestlistview 中设置或更改 "background color" 所选项目?基本上,如何去除文本背景中的蓝色?

感谢您的任何回答。

从你使用半透明选区的图片来看:

objectListView1.UseTranslucentSelection = true;

您还必须设置

objectListView1.OwnerDraw = true;

去除深蓝色选择颜色。