KLPushGiftBtnItemView.lua 581 B

123456789101112131415
  1. ---@class KLPushGiftBtnItemView:UIKmlLuaViewBase
  2. ---@field GiftBtn UIKmlLuaControl
  3. ---@field Time UIKmlLuaControl
  4. ---@field BtnText UIKmlLuaControl
  5. local KLPushGiftBtnItemView = {}
  6. setmetatable(KLPushGiftBtnItemView,UIKmlLuaViewBase)
  7. local kmlPath = 'dev/outui/Recharge/Item/KLPushGiftBtn/KLPushGiftBtnItemKml'
  8. KLPushGiftBtnItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  9. ---@param parent UIKmlLuaControl
  10. function KLPushGiftBtnItemView:Init(parent)
  11. self:InitRoot(parent,kmlPath,KLPushGiftBtnItemView.content)
  12. end
  13. return KLPushGiftBtnItemView