KLOpenServiceWingTaskPanelView.lua 1001 B

123456789101112131415161718192021222324
  1. ---@class KLOpenServiceWingTaskPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field ChapterContent UIKmlLuaControl
  4. ---@field chapterDataList UIKmlLuaControl
  5. ---@field DIY_TaskScrollView UIKmlLuaControl
  6. ---@field layout4 UIKmlLuaControl
  7. ---@field taskDataList UIKmlLuaControl
  8. ---@field EquipItem UIKmlLuaControl
  9. ---@field title UIKmlLuaControl
  10. ---@field chapter UIKmlLuaControl
  11. ---@field txt_chapter UIKmlLuaControl
  12. ---@field img_Get UIKmlLuaControl
  13. ---@field btn_Get UIKmlLuaControl
  14. local KLOpenServiceWingTaskPanelView = {}
  15. setmetatable(KLOpenServiceWingTaskPanelView,UIKmlLuaViewBase)
  16. local kmlPath = 'dev/outui/WingTask/Panel/KLOpenServiceWingTask/KLOpenServiceWingTaskPanelKml'
  17. KLOpenServiceWingTaskPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  18. ---@param parent UIKmlLuaControl
  19. function KLOpenServiceWingTaskPanelView:Init(parent)
  20. self:InitRoot(parent,kmlPath,KLOpenServiceWingTaskPanelView.content)
  21. end
  22. return KLOpenServiceWingTaskPanelView