123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ---@class KLUITeamWindowPanelView:UIKmlLuaViewBase
- ---@field img_17 UIKmlLuaControl
- ---@field MemberPanel UIKmlLuaControl
- ---@field sc_member UIKmlLuaControl
- ---@field Content_Members UIKmlLuaControl
- ---@field Content_Members_list UIKmlLuaControl
- ---@field Members_list UIKmlLuaControl
- ---@field btn_invitation UIKmlLuaControl
- ---@field text_23 UIKmlLuaControl
- ---@field btn_team UIKmlLuaControl
- ---@field text_25 UIKmlLuaControl
- ---@field NoMemberPanel UIKmlLuaControl
- ---@field text_27 UIKmlLuaControl
- ---@field btn_joinTeam UIKmlLuaControl
- ---@field text_29 UIKmlLuaControl
- ---@field btn_createTeam UIKmlLuaControl
- ---@field text_31 UIKmlLuaControl
- ---@field tog_autoJoin UIKmlLuaControl
- ---@field text_33 UIKmlLuaControl
- ---@field go_playerPanelBg UIKmlLuaControl
- ---@field go_playerPanelBgIcon UIKmlLuaControl
- ---@field sp_playerPanelBg UIKmlLuaControl
- ---@field CloseSelectPlayerUIButton UIKmlLuaControl
- ---@field ButtonGridView UIKmlLuaControl
- ---@field LockButton UIKmlLuaControl
- ---@field ChatButton UIKmlLuaControl
- ---@field KickButton UIKmlLuaControl
- ---@field PromotedButton UIKmlLuaControl
- ---@field SelectPlayerButton UIKmlLuaControl
- ---@field ReqPointButton UIKmlLuaControl
- ---@field LeaveTeamButton UIKmlLuaControl
- local KLUITeamWindowPanelView = {}
- setmetatable(KLUITeamWindowPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Team/Panel/KLUITeamWindow/KLUITeamWindowPanelKml'
- KLUITeamWindowPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUITeamWindowPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUITeamWindowPanelView.content)
- end
- return KLUITeamWindowPanelView
|