KLDailyGoalMainPanelView.lua 855 B

123456789101112131415161718192021
  1. ---@class KLDailyGoalMainPanelView:UIKmlLuaViewBase
  2. ---@field img_27 UIKmlLuaControl
  3. ---@field img_28 UIKmlLuaControl
  4. ---@field btn_close UIKmlLuaControl
  5. ---@field tab_toggle_group UIKmlLuaControl
  6. ---@field layout_31 UIKmlLuaControl
  7. ---@field toggle_tab_daily_active UIKmlLuaControl
  8. ---@field text_33 UIKmlLuaControl
  9. ---@field toggle_tab_activity UIKmlLuaControl
  10. ---@field text_35 UIKmlLuaControl
  11. local KLDailyGoalMainPanelView = {}
  12. setmetatable(KLDailyGoalMainPanelView,UIKmlLuaViewBase)
  13. local kmlPath = 'dev/outui/DailyGoal/Panel/KLDailyGoalMain/KLDailyGoalMainPanelKml'
  14. KLDailyGoalMainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  15. ---@param parent UIKmlLuaControl
  16. function KLDailyGoalMainPanelView:Init(parent)
  17. self:InitRoot(parent,kmlPath,KLDailyGoalMainPanelView.content)
  18. end
  19. return KLDailyGoalMainPanelView