In the OnSelectItem()
event, set Selected := False;
. Alternatively also Focused:=False;
for the Item
parameter.
procedure TForm10.ListView1SelectItem(Sender: TObject; Item: TListItem;
Selected: Boolean);
begin
// item.Focused:=False;
item.selected:=False;
end;
If you don't want to see the focus rectangle either, uncomment the first line in the code.