Форум: "Основная";
Текущий архив: 2004.04.11;
Скачать: [xml.tar.bz2];
ВнизTListBox Найти похожие ветки
← →
Бегун (2004-04-23 04:09) [0]В базе процедур прочитал интерестную статейку
http://delphibase.endimus.ru/?action=viewfunc&topic=vclgeom&id=10402
А как можно чередовать (фон/цвет/фонт(Font)) елементов в TListBox?
← →
Бегун (2004-04-23 04:09) [0]В базе процедур прочитал интерестную статейку
http://delphibase.endimus.ru/?action=viewfunc&topic=vclgeom&id=10402
А как можно чередовать (фон/цвет/фонт(Font)) елементов в TListBox?
← →
Polevi © (2004-04-23 08:20) [1]procedure TForm1.ListBox1DrawItem(Control: TWinControl; Index: Integer;
Rect: TRect; State: TOwnerDrawState);
begin
with TListBox(Control).Canvas do
begin
if (Index mod 2)<>0 then
Brush.Color:=cl3DLight
else
Brush.Color:=clWhite;
Font.Color:=clBlack;
FillRect(Rect);
TextOut(Rect.Left + 2, Rect.Top, (Control as TListBox).Items[Index]);
end;
end;
← →
Polevi © (2004-04-23 08:20) [1]procedure TForm1.ListBox1DrawItem(Control: TWinControl; Index: Integer;
Rect: TRect; State: TOwnerDrawState);
begin
with TListBox(Control).Canvas do
begin
if (Index mod 2)<>0 then
Brush.Color:=cl3DLight
else
Brush.Color:=clWhite;
Font.Color:=clBlack;
FillRect(Rect);
TextOut(Rect.Left + 2, Rect.Top, (Control as TListBox).Items[Index]);
end;
end;
← →
Бегун (2004-04-23 14:16) [2]Не работает :(
← →
Бегун (2004-04-23 14:16) [2]Не работает :(
← →
clickmaker © (2004-04-23 14:46) [3]
> Бегун (23.04.04 14:16) [2]
> Не работает :(
Не верю. Стиль lbOwnerDrawFixed поставил?
← →
clickmaker © (2004-04-23 14:46) [3]
> Бегун (23.04.04 14:16) [2]
> Не работает :(
Не верю. Стиль lbOwnerDrawFixed поставил?
← →
Бегун (2004-04-23 15:30) [4]>clickmaker © (23.04.04 14:46) [3]
Поставил - заработало.
← →
Бегун (2004-04-23 15:30) [4]>clickmaker © (23.04.04 14:46) [3]
Поставил - заработало.
Страницы: 1 вся ветка
Форум: "Основная";
Текущий архив: 2004.04.11;
Скачать: [xml.tar.bz2];
Память: 0.45 MB
Время: 0.046 c