12345678910111213141516171819202122232425262728 |
- ---@class KLUITeamTipsPanelView:UIKmlLuaViewBase
- ---@field closeButton UIKmlLuaControl
- ---@field sp_careerIcon UIKmlLuaControl
- ---@field lab_name UIKmlLuaControl
- ---@field lab_level UIKmlLuaControl
- ---@field lab_career UIKmlLuaControl
- ---@field lab_union UIKmlLuaControl
- ---@field btGridView UIKmlLuaControl
- ---@field lockButton UIKmlLuaControl
- ---@field chatButton UIKmlLuaControl
- ---@field joinButton UIKmlLuaControl
- ---@field invitationButton UIKmlLuaControl
- ---@field reqPointButton UIKmlLuaControl
- ---@field leaveButton UIKmlLuaControl
- ---@field kickButton UIKmlLuaControl
- ---@field upCaptainButton UIKmlLuaControl
- ---@field selectPlayerButton UIKmlLuaControl
- local KLUITeamTipsPanelView = {}
- setmetatable(KLUITeamTipsPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Team/Panel/KLUITeamTips/KLUITeamTipsPanelKml'
- KLUITeamTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUITeamTipsPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUITeamTipsPanelView.content)
- end
- return KLUITeamTipsPanelView
|