KLFriendInfoItemView.lua 889 B

1234567891011121314151617181920212223
  1. ---@class KLFriendInfoItemView:UIKmlLuaViewBase
  2. ---@field FriendInfo UIKmlLuaControl
  3. ---@field KmlFriendListItem UIKmlLuaControl
  4. ---@field friend_select UIKmlLuaControl
  5. ---@field friend_bg UIKmlLuaControl
  6. ---@field Mask UIKmlLuaControl
  7. ---@field Icon UIKmlLuaControl
  8. ---@field friend_level UIKmlLuaControl
  9. ---@field friend_name UIKmlLuaControl
  10. ---@field friend_union_name UIKmlLuaControl
  11. ---@field friend_message UIKmlLuaControl
  12. ---@field TextOnline UIKmlLuaControl
  13. local KLFriendInfoItemView = {}
  14. setmetatable(KLFriendInfoItemView,UIKmlLuaViewBase)
  15. local kmlPath = 'dev/ui/FriendSys/Item/KLFriendInfo/KLFriendInfoItemKml'
  16. KLFriendInfoItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  17. ---@param parent UIKmlLuaControl
  18. function KLFriendInfoItemView:Init(parent)
  19. self:InitRoot(parent,kmlPath,KLFriendInfoItemView.content)
  20. end
  21. return KLFriendInfoItemView