12345678910111213141516171819202122232425262728293031 |
- ---@class KLUnionMemberInfoPanelView:UIKmlLuaViewBase
- ---@field btn_PanelClose UIKmlLuaControl
- ---@field HeadPortrait UIKmlLuaControl
- ---@field MemberNameText UIKmlLuaControl
- ---@field MemberLevelText UIKmlLuaControl
- ---@field panel_manager UIKmlLuaControl
- ---@field tog_SetType1 UIKmlLuaControl
- ---@field tog_SetType2 UIKmlLuaControl
- ---@field tog_SetType3 UIKmlLuaControl
- ---@field tog_SetType4 UIKmlLuaControl
- ---@field tog_SetType5 UIKmlLuaControl
- ---@field tog_SetType6 UIKmlLuaControl
- ---@field PlayerDetailBtn UIKmlLuaControl
- ---@field AddFriendBtn UIKmlLuaControl
- ---@field PrivateChatBtn UIKmlLuaControl
- ---@field CancelManageBtn UIKmlLuaControl
- ---@field ConfirmManageBtn UIKmlLuaControl
- ---@field Bg1 UIKmlLuaControl
- ---@field DIY_Image UIKmlLuaControl
- ---@field grey UIKmlLuaControl
- local KLUnionMemberInfoPanelView = {}
- setmetatable(KLUnionMemberInfoPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Union/Panel/KLUnionMemberInfo/KLUnionMemberInfoPanelKml'
- KLUnionMemberInfoPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUnionMemberInfoPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUnionMemberInfoPanelView.content)
- end
- return KLUnionMemberInfoPanelView
|