KLRechargePushPanelView.lua 870 B

1234567891011121314151617181920212223
  1. ---@class KLRechargePushPanelView:UIKmlLuaViewBase
  2. ---@field Bg UIKmlLuaControl
  3. ---@field ImageTitle UIKmlLuaControl
  4. ---@field img3 UIKmlLuaControl
  5. ---@field img4 UIKmlLuaControl
  6. ---@field img5 UIKmlLuaControl
  7. ---@field Texts UIKmlLuaControl
  8. ---@field BuyBtn UIKmlLuaControl
  9. ---@field Item_model UIKmlLuaControl
  10. ---@field scrollview1 UIKmlLuaControl
  11. ---@field gridview2 UIKmlLuaControl
  12. ---@field CloseBtn UIKmlLuaControl
  13. local KLRechargePushPanelView = {}
  14. setmetatable(KLRechargePushPanelView,UIKmlLuaViewBase)
  15. local kmlPath = 'dev/outui/Recharge/Panel/KLRechargePush/KLRechargePushPanelKml'
  16. KLRechargePushPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  17. ---@param parent UIKmlLuaControl
  18. function KLRechargePushPanelView:Init(parent)
  19. self:InitRoot(parent,kmlPath,KLRechargePushPanelView.content)
  20. end
  21. return KLRechargePushPanelView