KLOpenServiceGiftInnerPanelView.lua 721 B

12345678910111213141516
  1. ---@class KLOpenServiceGiftInnerPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field DIY_giftScrollView UIKmlLuaControl
  4. ---@field giftDataList UIKmlLuaControl
  5. ---@field SpTips UIKmlLuaControl
  6. local KLOpenServiceGiftInnerPanelView = {}
  7. setmetatable(KLOpenServiceGiftInnerPanelView,UIKmlLuaViewBase)
  8. local kmlPath = 'dev/outui/OpenService/Panel/KLOpenServiceGiftInner/KLOpenServiceGiftInnerPanelKml'
  9. KLOpenServiceGiftInnerPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  10. ---@param parent UIKmlLuaControl
  11. function KLOpenServiceGiftInnerPanelView:Init(parent)
  12. self:InitRoot(parent,kmlPath,KLOpenServiceGiftInnerPanelView.content)
  13. end
  14. return KLOpenServiceGiftInnerPanelView