Registriert seit: 1. Feb 2018
3.691 Beiträge
Delphi 11 Alexandria
|
AW: TComboBox - MouseMove
8. Aug 2018, 11:18
Dort -> TComboBox - how to adjust drop down list height while it is dropped down? gefunden.
Delphi-Quellcode:
procedure TCustomCombo.SetDropDownCount( const Value: Integer);
begin
if Value <> FDropDownCount then
begin
FDropDownCount := Value;
if HandleAllocated and CheckWin32Version(5, 1) and ThemeServices.ThemesEnabled then
SendMessage( Handle, CB_SETMINVISIBLE, WPARAM(FDropDownCount), 0);
end;
end;
Auf gleichem Server auch eine Antwort für Mouse Events, les mal ob Dir das reicht, über das Hint-Ereignis. How to make the note of ComBoBox in Delphi
Geändert von KodeZwerg ( 8. Aug 2018 um 11:23 Uhr)
|