KLUILifetimeGiftPanelView.lua 756 B

12345678910111213141516171819
  1. ---@class KLUILifetimeGiftPanelView:UIKmlLuaViewBase
  2. ---@field root UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field mask UIKmlLuaControl
  5. ---@field img4 UIKmlLuaControl
  6. ---@field scrollview2 UIKmlLuaControl
  7. ---@field layout3 UIKmlLuaControl
  8. ---@field RewardContent UIKmlLuaControl
  9. local KLUILifetimeGiftPanelView = {}
  10. setmetatable(KLUILifetimeGiftPanelView,UIKmlLuaViewBase)
  11. local kmlPath = 'dev/outui/LifetimeGift/Panel/KLUILifetimeGift/KLUILifetimeGiftPanelKml'
  12. KLUILifetimeGiftPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  13. ---@param parent UIKmlLuaControl
  14. function KLUILifetimeGiftPanelView:Init(parent)
  15. self:InitRoot(parent,kmlPath,KLUILifetimeGiftPanelView.content)
  16. end
  17. return KLUILifetimeGiftPanelView