KLMainRechargePanelView.lua 846 B

123456789101112131415161718192021
  1. ---@class KLMainRechargePanelView:UIKmlLuaViewBase
  2. ---@field rechargePanel UIKmlLuaControl
  3. ---@field txt_title UIKmlLuaControl
  4. ---@field btn_close UIKmlLuaControl
  5. ---@field togglegroup UIKmlLuaControl
  6. ---@field scrollview_tog UIKmlLuaControl
  7. ---@field layout6 UIKmlLuaControl
  8. ---@field TogInfoList UIKmlLuaControl
  9. ---@field img_rechargeMask UIKmlLuaControl
  10. ---@field subParent UIKmlLuaControl
  11. local KLMainRechargePanelView = {}
  12. setmetatable(KLMainRechargePanelView,UIKmlLuaViewBase)
  13. local kmlPath = 'dev/outui/MainRecharge/Panel/KLMainRecharge/KLMainRechargePanelKml'
  14. KLMainRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  15. ---@param parent UIKmlLuaControl
  16. function KLMainRechargePanelView:Init(parent)
  17. self:InitRoot(parent,kmlPath,KLMainRechargePanelView.content)
  18. end
  19. return KLMainRechargePanelView