c++ builder 如何让listbox中的的内容按照行数逐次循环的显示在panel上
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对象
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对象
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询