KLOpenServiceGiftItemView.lua 781 B

1234567891011121314151617181920
  1. ---@class KLOpenServiceGiftItemView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field SpLight UIKmlLuaControl
  4. ---@field ItemIcon UIKmlLuaControl
  5. ---@field ItemTex UIKmlLuaControl
  6. ---@field text5 UIKmlLuaControl
  7. ---@field redDot UIKmlLuaControl
  8. ---@field bg_Btn UIKmlLuaControl
  9. ---@field get UIKmlLuaControl
  10. local KLOpenServiceGiftItemView = {}
  11. setmetatable(KLOpenServiceGiftItemView,UIKmlLuaViewBase)
  12. local kmlPath = 'dev/outui/OpenService/Item/KLOpenServiceGift/KLOpenServiceGiftItemKml'
  13. KLOpenServiceGiftItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  14. ---@param parent UIKmlLuaControl
  15. function KLOpenServiceGiftItemView:Init(parent)
  16. self:InitRoot(parent,kmlPath,KLOpenServiceGiftItemView.content)
  17. end
  18. return KLOpenServiceGiftItemView