KLOpenServiceWingTaskChapterItemView.lua 1.0 KB

123456789101112131415161718192021222324
  1. ---@class KLOpenServiceWingTaskChapterItemView:UIKmlLuaViewBase
  2. ---@field ItemIcon UIKmlLuaControl
  3. ---@field Highlights UIKmlLuaControl
  4. ---@field HighlightsSelect UIKmlLuaControl
  5. ---@field img_common UIKmlLuaControl
  6. ---@field img_select UIKmlLuaControl
  7. ---@field icon_close UIKmlLuaControl
  8. ---@field AngleBG UIKmlLuaControl
  9. ---@field bg UIKmlLuaControl
  10. ---@field Angle UIKmlLuaControl
  11. ---@field img8 UIKmlLuaControl
  12. ---@field Des UIKmlLuaControl
  13. ---@field btn_Chapter UIKmlLuaControl
  14. local KLOpenServiceWingTaskChapterItemView = {}
  15. setmetatable(KLOpenServiceWingTaskChapterItemView,UIKmlLuaViewBase)
  16. local kmlPath = 'dev/outui/WingTask/Item/KLOpenServiceWingTaskChapter/KLOpenServiceWingTaskChapterItemKml'
  17. KLOpenServiceWingTaskChapterItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  18. ---@param parent UIKmlLuaControl
  19. function KLOpenServiceWingTaskChapterItemView:Init(parent)
  20. self:InitRoot(parent,kmlPath,KLOpenServiceWingTaskChapterItemView.content)
  21. end
  22. return KLOpenServiceWingTaskChapterItemView