KLFriendUIItemView.lua 970 B

12345678910111213141516171819202122232425
  1. ---@class KLFriendUIItemView:UIKmlLuaViewBase
  2. ---@field FriendUI UIKmlLuaControl
  3. ---@field FriendUI_Root UIKmlLuaControl
  4. ---@field EnemyContent UIKmlLuaControl
  5. ---@field enemy_log_data_list UIKmlLuaControl
  6. ---@field friend_count UIKmlLuaControl
  7. ---@field friend_scrollview UIKmlLuaControl
  8. ---@field friend_layout UIKmlLuaControl
  9. ---@field friend_line UIKmlLuaControl
  10. ---@field BtnAdd UIKmlLuaControl
  11. ---@field ChatContent UIKmlLuaControl
  12. ---@field BlackListContent UIKmlLuaControl
  13. ---@field TextBlackInfo UIKmlLuaControl
  14. ---@field BtnCancelForbid UIKmlLuaControl
  15. local KLFriendUIItemView = {}
  16. setmetatable(KLFriendUIItemView,UIKmlLuaViewBase)
  17. local kmlPath = 'dev/ui/FriendSys/Item/KLFriendUI/KLFriendUIItemKml'
  18. KLFriendUIItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  19. ---@param parent UIKmlLuaControl
  20. function KLFriendUIItemView:Init(parent)
  21. self:InitRoot(parent,kmlPath,KLFriendUIItemView.content)
  22. end
  23. return KLFriendUIItemView