KLWeekDailyPackRechargePanelView.lua 957 B

123456789101112131415161718192021
  1. ---@class KLWeekDailyPackRechargePanelView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field DailyPackMainBG UIKmlLuaControl
  4. ---@field DailyPackTitleImg UIKmlLuaControl
  5. ---@field DailyPackInfo UIKmlLuaControl
  6. ---@field DailyPackInfoScrollView UIKmlLuaControl
  7. ---@field gridview2 UIKmlLuaControl
  8. ---@field DailyPackItemList UIKmlLuaControl
  9. ---@field TimeRemainingText UIKmlLuaControl
  10. ---@field txt_showTime UIKmlLuaControl
  11. local KLWeekDailyPackRechargePanelView = {}
  12. setmetatable(KLWeekDailyPackRechargePanelView,UIKmlLuaViewBase)
  13. local kmlPath = 'dev/outui/MainRecharge/Panel/KLWeekDailyPackRecharge/KLWeekDailyPackRechargePanelKml'
  14. KLWeekDailyPackRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  15. ---@param parent UIKmlLuaControl
  16. function KLWeekDailyPackRechargePanelView:Init(parent)
  17. self:InitRoot(parent,kmlPath,KLWeekDailyPackRechargePanelView.content)
  18. end
  19. return KLWeekDailyPackRechargePanelView