Delphi TComboBox禁用突出显示(重点突出)

时间:2019-04-08 11:19:55

标签: delphi tcombobox

打开后,TCombobox中的打开表单项将突出显示(文本上为蓝色背景)。

是否可以禁用它。

enter image description here

全部收尾!

1 个答案:

答案 0 :(得分:3)

您可以将此消息放入OnEnter对象的TCombobox事件中:

// Suppose the combobox control name is ComboBox
procedure TMainForm.ComboBoxEnter(Sender: TObject);
begin
  PostMessage(ComboBox.Handle, CB_SETEDITSEL, Cardinal(-1), 0);
end;