KLUIOpenServiceArchangelWelfarePanelView.lua 1.3 KB

1234567891011121314151617181920212223242526272829
  1. ---@class KLUIOpenServiceArchangelWelfarePanelView:UIKmlLuaViewBase
  2. ---@field UIOpenServiceArchangelWelfarePanel UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field progress_attach UIKmlLuaControl
  5. ---@field icon UIKmlLuaControl
  6. ---@field num UIKmlLuaControl
  7. ---@field ScheduleScrollView UIKmlLuaControl
  8. ---@field Viewport UIKmlLuaControl
  9. ---@field ScheduleContent UIKmlLuaControl
  10. ---@field ScheduleRewardViewList UIKmlLuaControl
  11. ---@field DataScheduleRewardList UIKmlLuaControl
  12. ---@field WelfScrollView UIKmlLuaControl
  13. ---@field Viewport_1 UIKmlLuaControl
  14. ---@field WelfContent UIKmlLuaControl
  15. ---@field WelfRewardViewList UIKmlLuaControl
  16. ---@field DataWelfRewardList UIKmlLuaControl
  17. ---@field EndText UIKmlLuaControl
  18. ---@field Text UIKmlLuaControl
  19. local KLUIOpenServiceArchangelWelfarePanelView = {}
  20. setmetatable(KLUIOpenServiceArchangelWelfarePanelView,UIKmlLuaViewBase)
  21. local kmlPath = 'dev/outui/OpenServiceArchangelWelfare/Panel/KLUIOpenServiceArchangelWelfare/KLUIOpenServiceArchangelWelfarePanelKml'
  22. KLUIOpenServiceArchangelWelfarePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  23. ---@param parent UIKmlLuaControl
  24. function KLUIOpenServiceArchangelWelfarePanelView:Init(parent)
  25. self:InitRoot(parent,kmlPath,KLUIOpenServiceArchangelWelfarePanelView.content)
  26. end
  27. return KLUIOpenServiceArchangelWelfarePanelView