Ach menno, klappt doch nicht.
Ich habe eine TAdvComboBox, und für OnDrawItem folgendes Event definiert:
Delphi-Quellcode:
procedure BirthdayForm.YearComboBoxDrawItem(Control: TWinControl; Index: Integer;
Rect: TRect; State: TOwnerDrawState);
begin
with Control as TAdvComboBox do
begin
Canvas.FillRect(Rect);
Canvas.Font.Style:= [fsBold];
end;
end;
die Comboxbox fülle ich ganz normal mit
Delphi-Quellcode:
YearComboBox.AddItem('Januar', nil);
YearComboBox.AddItem('Februar', nil);
.
.
.
Dennoch werden die Monate nicht fett dargestellt (momentan sollten ja alle fett sein)
Hat jemand einen Hinweis?