KLUnionMemberInfoPanelView.lua 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. ---@class KLUnionMemberInfoPanelView:UIKmlLuaViewBase
  2. ---@field btn_PanelClose UIKmlLuaControl
  3. ---@field HeadPortrait UIKmlLuaControl
  4. ---@field MemberNameText UIKmlLuaControl
  5. ---@field MemberLevelText UIKmlLuaControl
  6. ---@field panel_manager UIKmlLuaControl
  7. ---@field tog_SetType1 UIKmlLuaControl
  8. ---@field tog_SetType2 UIKmlLuaControl
  9. ---@field tog_SetType3 UIKmlLuaControl
  10. ---@field tog_SetType4 UIKmlLuaControl
  11. ---@field tog_SetType5 UIKmlLuaControl
  12. ---@field tog_SetType6 UIKmlLuaControl
  13. ---@field PlayerDetailBtn UIKmlLuaControl
  14. ---@field AddFriendBtn UIKmlLuaControl
  15. ---@field PrivateChatBtn UIKmlLuaControl
  16. ---@field CancelManageBtn UIKmlLuaControl
  17. ---@field ConfirmManageBtn UIKmlLuaControl
  18. ---@field Bg1 UIKmlLuaControl
  19. ---@field DIY_Image UIKmlLuaControl
  20. ---@field grey UIKmlLuaControl
  21. local KLUnionMemberInfoPanelView = {}
  22. setmetatable(KLUnionMemberInfoPanelView,UIKmlLuaViewBase)
  23. local kmlPath = 'dev/ui/Union/Panel/KLUnionMemberInfo/KLUnionMemberInfoPanelKml'
  24. KLUnionMemberInfoPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  25. ---@param parent UIKmlLuaControl
  26. function KLUnionMemberInfoPanelView:Init(parent)
  27. self:InitRoot(parent,kmlPath,KLUnionMemberInfoPanelView.content)
  28. end
  29. return KLUnionMemberInfoPanelView