KLUIRechargeDirectPanelView.lua 991 B

123456789101112131415161718192021222324
  1. ---@class KLUIRechargeDirectPanelView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field scrollview1 UIKmlLuaControl
  5. ---@field layout2 UIKmlLuaControl
  6. ---@field giftDataList UIKmlLuaControl
  7. ---@field img1 UIKmlLuaControl
  8. ---@field text3 UIKmlLuaControl
  9. ---@field refreshTime UIKmlLuaControl
  10. ---@field buyAllBtn UIKmlLuaControl
  11. ---@field priceText UIKmlLuaControl
  12. ---@field oldText UIKmlLuaControl
  13. ---@field text7 UIKmlLuaControl
  14. ---@field text6 UIKmlLuaControl
  15. local KLUIRechargeDirectPanelView = {}
  16. setmetatable(KLUIRechargeDirectPanelView,UIKmlLuaViewBase)
  17. local kmlPath = 'dev/outui/RunActive_RechargeDirect/Panel/KLUIRechargeDirect/KLUIRechargeDirectPanelKml'
  18. KLUIRechargeDirectPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  19. ---@param parent UIKmlLuaControl
  20. function KLUIRechargeDirectPanelView:Init(parent)
  21. self:InitRoot(parent,kmlPath,KLUIRechargeDirectPanelView.content)
  22. end
  23. return KLUIRechargeDirectPanelView