KLArcWeapActivityPanelView.lua 938 B

1234567891011121314151617181920212223
  1. ---@class KLArcWeapActivityPanelView:UIKmlLuaViewBase
  2. ---@field ArcWeapPanel UIKmlLuaControl
  3. ---@field TopPart UIKmlLuaControl
  4. ---@field txt_tips UIKmlLuaControl
  5. ---@field txt_showTime UIKmlLuaControl
  6. ---@field reward UIKmlLuaControl
  7. ---@field model UIKmlLuaControl
  8. ---@field btn_getBigReward UIKmlLuaControl
  9. ---@field MiddlePart UIKmlLuaControl
  10. ---@field scrollview_show UIKmlLuaControl
  11. ---@field layout6 UIKmlLuaControl
  12. ---@field showInfoList UIKmlLuaControl
  13. local KLArcWeapActivityPanelView = {}
  14. setmetatable(KLArcWeapActivityPanelView,UIKmlLuaViewBase)
  15. local kmlPath = 'dev/outui/MainActivity/Panel/KLArcWeapActivity/KLArcWeapActivityPanelKml'
  16. KLArcWeapActivityPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  17. ---@param parent UIKmlLuaControl
  18. function KLArcWeapActivityPanelView:Init(parent)
  19. self:InitRoot(parent,kmlPath,KLArcWeapActivityPanelView.content)
  20. end
  21. return KLArcWeapActivityPanelView