12345678910111213141516171819202122232425 |
- /// #pkgName FGUI包名
- /// #panelName UIPanel名字
- /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
- /// 该脚本由模板创建
- /// created by cb 2024
- using FairyGUI;
- using XGame.Database;
- namespace FL.FGUI
- {
- public partial class PartnerEpiBagListItemView : IGListItemHandle
- {
- public int ItemIndex { get; private set; }
- void IGListItemHandle.OnRefresh(int index, object data)
- {
- ItemIndex = index;
- if (data is EpigraphTable table)
- {
- Ctrl.OnRefresh(index, table);
- }
-
- }
- }
- }
|