KLRechargePanelView.lua 744 B

1234567891011121314151617181920
  1. ---@class KLRechargePanelView:UIKmlLuaViewBase
  2. ---@field Panel UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field title UIKmlLuaControl
  5. ---@field scrollview UIKmlLuaControl
  6. ---@field gridview11 UIKmlLuaControl
  7. ---@field RechargeGoodsList UIKmlLuaControl
  8. ---@field img1 UIKmlLuaControl
  9. ---@field refreshTime UIKmlLuaControl
  10. local KLRechargePanelView = {}
  11. setmetatable(KLRechargePanelView,UIKmlLuaViewBase)
  12. local kmlPath = 'dev/outui/ShopMain/Panel/KLRecharge/KLRechargePanelKml'
  13. KLRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  14. ---@param parent UIKmlLuaControl
  15. function KLRechargePanelView:Init(parent)
  16. self:InitRoot(parent,kmlPath,KLRechargePanelView.content)
  17. end
  18. return KLRechargePanelView