KLEveryDayGiftRechargePanelView.lua 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. ---@class KLEveryDayGiftRechargePanelView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field DailyPackMainBG UIKmlLuaControl
  4. ---@field everyDayGiftTitleImg UIKmlLuaControl
  5. ---@field everydayTaskText UIKmlLuaControl
  6. ---@field TaskInfoPanel UIKmlLuaControl
  7. ---@field scrollview104 UIKmlLuaControl
  8. ---@field gridview105 UIKmlLuaControl
  9. ---@field taskList UIKmlLuaControl
  10. ---@field prefab3 UIKmlLuaControl
  11. ---@field prefab4 UIKmlLuaControl
  12. ---@field AllRewardPanel UIKmlLuaControl
  13. ---@field roundsNum UIKmlLuaControl
  14. ---@field AllRewardTitleImg UIKmlLuaControl
  15. ---@field FreeBtn UIKmlLuaControl
  16. ---@field FreeBtnRedPoint UIKmlLuaControl
  17. ---@field FreeGetImg UIKmlLuaControl
  18. ---@field allRewardScrollView UIKmlLuaControl
  19. ---@field gridview8 UIKmlLuaControl
  20. ---@field rewardShowDataList UIKmlLuaControl
  21. local KLEveryDayGiftRechargePanelView = {}
  22. setmetatable(KLEveryDayGiftRechargePanelView,UIKmlLuaViewBase)
  23. local kmlPath = 'dev/outui/MainRecharge/Panel/KLEveryDayGiftRecharge/KLEveryDayGiftRechargePanelKml'
  24. KLEveryDayGiftRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  25. ---@param parent UIKmlLuaControl
  26. function KLEveryDayGiftRechargePanelView:Init(parent)
  27. self:InitRoot(parent,kmlPath,KLEveryDayGiftRechargePanelView.content)
  28. end
  29. return KLEveryDayGiftRechargePanelView