Delphi TComboBox 禁用高亮(聚焦)
Delphi TComboBox disable highlight (focused)
打开 Combobox 中的表单项目后突出显示(文本为蓝色背景)。
是否可以禁用它。
谢谢大家!
您可以将此消息放入 TCombobox
对象的 OnEnter
事件中:
// Suppose the combobox control name is ComboBox
procedure TMainForm.ComboBoxEnter(Sender: TObject);
begin
PostMessage(ComboBox.Handle, CB_SETEDITSEL, Cardinal(-1), 0);
end;
打开 Combobox 中的表单项目后突出显示(文本为蓝色背景)。
是否可以禁用它。
谢谢大家!
您可以将此消息放入 TCombobox
对象的 OnEnter
事件中:
// Suppose the combobox control name is ComboBox
procedure TMainForm.ComboBoxEnter(Sender: TObject);
begin
PostMessage(ComboBox.Handle, CB_SETEDITSEL, Cardinal(-1), 0);
end;