KLCommonGainItemShowPanelView.lua 858 B

1234567891011121314151617181920
  1. ---@class KLCommonGainItemShowPanelView:UIKmlLuaViewBase
  2. ---@field 11 UIKmlLuaControl
  3. ---@field CloseBG UIKmlLuaControl
  4. ---@field bgImg UIKmlLuaControl
  5. ---@field title UIKmlLuaControl
  6. ---@field bg UIKmlLuaControl
  7. ---@field scrollviewList UIKmlLuaControl
  8. ---@field gridview23 UIKmlLuaControl
  9. ---@field rewards UIKmlLuaControl
  10. ---@field showTxt UIKmlLuaControl
  11. local KLCommonGainItemShowPanelView = {}
  12. setmetatable(KLCommonGainItemShowPanelView,UIKmlLuaViewBase)
  13. local kmlPath = 'dev/outui/OperateActivity/Panel/KLCommonGainItemShow/KLCommonGainItemShowPanelKml'
  14. KLCommonGainItemShowPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  15. ---@param parent UIKmlLuaControl
  16. function KLCommonGainItemShowPanelView:Init(parent)
  17. self:InitRoot(parent,kmlPath,KLCommonGainItemShowPanelView.content)
  18. end
  19. return KLCommonGainItemShowPanelView