TemplateNested.ListItem.cs 599 B

123456789101112131415161718192021
  1. /// #pkgName FGUI包名
  2. /// #panelName UIPanel名字
  3. /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
  4. /// 该脚本由模板创建
  5. /// created by cb 2024
  6. using FairyGUI;
  7. namespace FL.FGUI
  8. {
  9. public partial class <#UIName>View : IGListItemHandle
  10. {
  11. public int ItemIndex { get; private set; }
  12. void IGListItemHandle.OnRefresh(int index, object data)
  13. {
  14. ItemIndex = index;
  15. //Ctrl.OnRefresh(index, data as GListData);
  16. throw new System.NotImplementedException("业务需要实现: <#UIName>ViewCtrl.OnRefresh()");
  17. }
  18. }
  19. }