KLUIRechargeDirectGiftItemView.lua 915 B

123456789101112131415161718192021
  1. ---@class KLUIRechargeDirectGiftItemView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field nameText UIKmlLuaControl
  5. ---@field items UIKmlLuaControl
  6. ---@field layout2 UIKmlLuaControl
  7. ---@field itemsDataList UIKmlLuaControl
  8. ---@field buyBtn UIKmlLuaControl
  9. ---@field priceText UIKmlLuaControl
  10. ---@field countText UIKmlLuaControl
  11. ---@field redDot UIKmlLuaControl
  12. local KLUIRechargeDirectGiftItemView = {}
  13. setmetatable(KLUIRechargeDirectGiftItemView,UIKmlLuaViewBase)
  14. local kmlPath = 'dev/outui/RunActive_RechargeDirect/Item/KLUIRechargeDirectGift/KLUIRechargeDirectGiftItemKml'
  15. KLUIRechargeDirectGiftItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  16. ---@param parent UIKmlLuaControl
  17. function KLUIRechargeDirectGiftItemView:Init(parent)
  18. self:InitRoot(parent,kmlPath,KLUIRechargeDirectGiftItemView.content)
  19. end
  20. return KLUIRechargeDirectGiftItemView