KLUITeamWindowPanelView.lua 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---@class KLUITeamWindowPanelView:UIKmlLuaViewBase
  2. ---@field img_17 UIKmlLuaControl
  3. ---@field MemberPanel UIKmlLuaControl
  4. ---@field sc_member UIKmlLuaControl
  5. ---@field Content_Members UIKmlLuaControl
  6. ---@field Content_Members_list UIKmlLuaControl
  7. ---@field Members_list UIKmlLuaControl
  8. ---@field btn_invitation UIKmlLuaControl
  9. ---@field text_23 UIKmlLuaControl
  10. ---@field btn_team UIKmlLuaControl
  11. ---@field text_25 UIKmlLuaControl
  12. ---@field NoMemberPanel UIKmlLuaControl
  13. ---@field text_27 UIKmlLuaControl
  14. ---@field btn_joinTeam UIKmlLuaControl
  15. ---@field text_29 UIKmlLuaControl
  16. ---@field btn_createTeam UIKmlLuaControl
  17. ---@field text_31 UIKmlLuaControl
  18. ---@field tog_autoJoin UIKmlLuaControl
  19. ---@field text_33 UIKmlLuaControl
  20. ---@field go_playerPanelBg UIKmlLuaControl
  21. ---@field go_playerPanelBgIcon UIKmlLuaControl
  22. ---@field sp_playerPanelBg UIKmlLuaControl
  23. ---@field CloseSelectPlayerUIButton UIKmlLuaControl
  24. ---@field ButtonGridView UIKmlLuaControl
  25. ---@field LockButton UIKmlLuaControl
  26. ---@field ChatButton UIKmlLuaControl
  27. ---@field KickButton UIKmlLuaControl
  28. ---@field PromotedButton UIKmlLuaControl
  29. ---@field SelectPlayerButton UIKmlLuaControl
  30. ---@field ReqPointButton UIKmlLuaControl
  31. ---@field LeaveTeamButton UIKmlLuaControl
  32. local KLUITeamWindowPanelView = {}
  33. setmetatable(KLUITeamWindowPanelView,UIKmlLuaViewBase)
  34. local kmlPath = 'dev/ui/Team/Panel/KLUITeamWindow/KLUITeamWindowPanelKml'
  35. KLUITeamWindowPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  36. ---@param parent UIKmlLuaControl
  37. function KLUITeamWindowPanelView:Init(parent)
  38. self:InitRoot(parent,kmlPath,KLUITeamWindowPanelView.content)
  39. end
  40. return KLUITeamWindowPanelView