KLUITeamTipsPanelView.lua 1.1 KB

12345678910111213141516171819202122232425262728
  1. ---@class KLUITeamTipsPanelView:UIKmlLuaViewBase
  2. ---@field closeButton UIKmlLuaControl
  3. ---@field sp_careerIcon UIKmlLuaControl
  4. ---@field lab_name UIKmlLuaControl
  5. ---@field lab_level UIKmlLuaControl
  6. ---@field lab_career UIKmlLuaControl
  7. ---@field lab_union UIKmlLuaControl
  8. ---@field btGridView UIKmlLuaControl
  9. ---@field lockButton UIKmlLuaControl
  10. ---@field chatButton UIKmlLuaControl
  11. ---@field joinButton UIKmlLuaControl
  12. ---@field invitationButton UIKmlLuaControl
  13. ---@field reqPointButton UIKmlLuaControl
  14. ---@field leaveButton UIKmlLuaControl
  15. ---@field kickButton UIKmlLuaControl
  16. ---@field upCaptainButton UIKmlLuaControl
  17. ---@field selectPlayerButton UIKmlLuaControl
  18. local KLUITeamTipsPanelView = {}
  19. setmetatable(KLUITeamTipsPanelView,UIKmlLuaViewBase)
  20. local kmlPath = 'dev/ui/Team/Panel/KLUITeamTips/KLUITeamTipsPanelKml'
  21. KLUITeamTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  22. ---@param parent UIKmlLuaControl
  23. function KLUITeamTipsPanelView:Init(parent)
  24. self:InitRoot(parent,kmlPath,KLUITeamTipsPanelView.content)
  25. end
  26. return KLUITeamTipsPanelView