文件名称:常用控件--List-Bada软件开发
文件大小:1.91MB
文件格式:PPT
更新时间:2024-05-16 03:01:02
Bada
常用控件--List 监听方法: virtual void OnItemStateChanged(const Osp::Ui::Control& source, int index, int itemId, Osp::Ui::ItemStatus status); 实现: 1. __pList->AddItemEventListener(*this); 2. void Form1::OnItemStateChanged(const Osp::Ui::Control& source, int index, int itemId, Osp::Ui::ItemStatus status) { switch (index) { default: AppLog("The Index of List Items is %d", index); break; } }