KLOpenServerAthleticsGiftItemView.lua 939 B

123456789101112131415161718192021
  1. ---@class KLOpenServerAthleticsGiftItemView:UIKmlLuaViewBase
  2. ---@field UIOpenServerGiftTemplate UIKmlLuaControl
  3. ---@field giftCost UIKmlLuaControl
  4. ---@field remainCount UIKmlLuaControl
  5. ---@field gridview85 UIKmlLuaControl
  6. ---@field buyButton UIKmlLuaControl
  7. ---@field Red UIKmlLuaControl
  8. ---@field layout89 UIKmlLuaControl
  9. ---@field GiftBtnText UIKmlLuaControl
  10. ---@field giftzuanshi UIKmlLuaControl
  11. local KLOpenServerAthleticsGiftItemView = {}
  12. setmetatable(KLOpenServerAthleticsGiftItemView,UIKmlLuaViewBase)
  13. local kmlPath = 'dev/outui/OpenServerAthletics/Item/KLOpenServerAthleticsGift/KLOpenServerAthleticsGiftItemKml'
  14. KLOpenServerAthleticsGiftItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  15. ---@param parent UIKmlLuaControl
  16. function KLOpenServerAthleticsGiftItemView:Init(parent)
  17. self:InitRoot(parent,kmlPath,KLOpenServerAthleticsGiftItemView.content)
  18. end
  19. return KLOpenServerAthleticsGiftItemView