KLCopyTeamPanelView.lua 816 B

12345678910111213141516171819202122
  1. ---@class KLCopyTeamPanelView:UIKmlLuaViewBase
  2. ---@field title UIKmlLuaControl
  3. ---@field ticketCount UIKmlLuaControl
  4. ---@field countDown UIKmlLuaControl
  5. ---@field BtnDissolve UIKmlLuaControl
  6. ---@field closeBtn UIKmlLuaControl
  7. ---@field Btcanel UIKmlLuaControl
  8. ---@field Btnok UIKmlLuaControl
  9. ---@field ticketBtn UIKmlLuaControl
  10. ---@field addBtn UIKmlLuaControl
  11. ---@field ticketModel UIKmlLuaControl
  12. local KLCopyTeamPanelView = {}
  13. setmetatable(KLCopyTeamPanelView,UIKmlLuaViewBase)
  14. local kmlPath = 'dev/outui/Activity/Panel/KLCopyTeam/KLCopyTeamPanelKml'
  15. KLCopyTeamPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  16. ---@param parent UIKmlLuaControl
  17. function KLCopyTeamPanelView:Init(parent)
  18. self:InitRoot(parent,kmlPath,KLCopyTeamPanelView.content)
  19. end
  20. return KLCopyTeamPanelView