Registriert seit: 18. Aug 2004
Ort: Brackenheim VS08 Pro
2.876 Beiträge
|
Re: Listbox Eintrag fett machen
4. Aug 2005, 22:13
Versuch es mal so:
Delphi-Quellcode:
procedure TForm1.ListBox1DrawItem(Control: TWinControl; Index: Integer; Rect: TRect; State: TOwnerDrawState);
var
i: Integer;
begin
with (Control as TListBox).Canvas do
begin
FillRect(Rect);
if ListBox2.Items.IndexOf(IntToStr(Index)) <> -1 then
Font.Style:= [fsbold]
else
Font.Style:= [];
TextOut(Rect.Left + 2, Rect.Top, ListBox1.Items[Index]);
end;
end;
Sebastian Moderator in der EE
|