1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| void __fastcall TForm1::ListBox1DrawItem(TWinControl *Control, int Index,
TRect &Rect, TOwnerDrawState State)
{
if( (Index%2==0) && (!State.Contains(odSelected))){
ListBox1->Canvas->Brush->Color=clYellow;
ListBox1->Canvas->FillRect(Rect);
}
ListBox1->Canvas->TextRect(Rect,Rect.Left+2,Rect.top+2,ListBox1->Items->Strings[Index]);
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
ListBox1->Clear();
for(int i=0;i<12;i++){
ListBox1->Items->Add("item"+IntToStr(i));
}
}
//--------------------------------------------------------------------------- |
Partager