KLDailyActivePanelView.lua 993 B

12345678910111213141516171819202122232425
  1. ---@class KLDailyActivePanelView:UIKmlLuaViewBase
  2. ---@field datalist_active UIKmlLuaControl
  3. ---@field txt_cur_active_num UIKmlLuaControl
  4. ---@field icon_get_5 UIKmlLuaControl
  5. ---@field icon_get_4 UIKmlLuaControl
  6. ---@field icon_get_3 UIKmlLuaControl
  7. ---@field icon_get_2 UIKmlLuaControl
  8. ---@field icon_get_1 UIKmlLuaControl
  9. ---@field icon_box_5 UIKmlLuaControl
  10. ---@field icon_box_4 UIKmlLuaControl
  11. ---@field icon_box_3 UIKmlLuaControl
  12. ---@field icon_box_2 UIKmlLuaControl
  13. ---@field icon_box_1 UIKmlLuaControl
  14. ---@field slider_active_num UIKmlLuaControl
  15. local KLDailyActivePanelView = {}
  16. setmetatable(KLDailyActivePanelView,UIKmlLuaViewBase)
  17. local kmlPath = 'dev/outui/DailyGoal/Panel/KLDailyActive/KLDailyActivePanelKml'
  18. KLDailyActivePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  19. ---@param parent UIKmlLuaControl
  20. function KLDailyActivePanelView:Init(parent)
  21. self:InitRoot(parent,kmlPath,KLDailyActivePanelView.content)
  22. end
  23. return KLDailyActivePanelView