登录 注册
当前位置:主页 > 资源下载 > 31 > 在bada软件开发中使用的常见控件--List

在bada软件开发中使用的常见控件--List

  • 更新:2024-05-21 21:56:44
  • 大小:1.85MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:bada - 移动开发
  • 格式:PPT

资源介绍

常用控件--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; } }