KLNoobPlayerPackPanelView.lua 869 B

123456789101112131415161718192021
  1. ---@class KLNoobPlayerPackPanelView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field PackMainBG UIKmlLuaControl
  4. ---@field PackTitleImg UIKmlLuaControl
  5. ---@field PackInfo UIKmlLuaControl
  6. ---@field PackInfoScrollView UIKmlLuaControl
  7. ---@field gridview2 UIKmlLuaControl
  8. ---@field PackItemList UIKmlLuaControl
  9. ---@field TimeRemainingText UIKmlLuaControl
  10. ---@field txt_showTime UIKmlLuaControl
  11. local KLNoobPlayerPackPanelView = {}
  12. setmetatable(KLNoobPlayerPackPanelView,UIKmlLuaViewBase)
  13. local kmlPath = 'dev/outui/MainRecharge/Panel/KLNoobPlayerPack/KLNoobPlayerPackPanelKml'
  14. KLNoobPlayerPackPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  15. ---@param parent UIKmlLuaControl
  16. function KLNoobPlayerPackPanelView:Init(parent)
  17. self:InitRoot(parent,kmlPath,KLNoobPlayerPackPanelView.content)
  18. end
  19. return KLNoobPlayerPackPanelView