Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 TCombobox 中打开表单项后突出显示(文本上的蓝色背景)。
是否可以禁用它。
全部!
您可以将此消息放入对象OnEnter事件中TCombobox:
OnEnter
TCombobox
// Suppose the combobox control name is ComboBox procedure TMainForm.ComboBoxEnter(Sender: TObject); begin PostMessage(ComboBox.Handle, CB_SETEDITSEL, Cardinal(-1), 0); end;