c++ builder 如何让listbox中的的内容按照行数逐次循环的显示在panel上

使用time控件,c++ builder新手,望高手赐教
2025-01-06 11:28:57
推荐回答(1个)
回答1:

在time控件的事件中写如下代码:
void __fastcall TForm1::tmr1Timer(TObject *Sender)
{
static int i=0;
int count = lst1->Items->Count;
if(count)
pnl1->Caption = lst1->Items->Strings[i++ % count] ;
}

//注:pnl1是TPanel控件对象;lst1是TListBox控件对象;tmr1是控件TTimer对象