12345678910111213141516171819202122232425 |
- ---@class KLFriendUIItemView:UIKmlLuaViewBase
- ---@field FriendUI UIKmlLuaControl
- ---@field FriendUI_Root UIKmlLuaControl
- ---@field EnemyContent UIKmlLuaControl
- ---@field enemy_log_data_list UIKmlLuaControl
- ---@field friend_count UIKmlLuaControl
- ---@field friend_scrollview UIKmlLuaControl
- ---@field friend_layout UIKmlLuaControl
- ---@field friend_line UIKmlLuaControl
- ---@field BtnAdd UIKmlLuaControl
- ---@field ChatContent UIKmlLuaControl
- ---@field BlackListContent UIKmlLuaControl
- ---@field TextBlackInfo UIKmlLuaControl
- ---@field BtnCancelForbid UIKmlLuaControl
- local KLFriendUIItemView = {}
- setmetatable(KLFriendUIItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/FriendSys/Item/KLFriendUI/KLFriendUIItemKml'
- KLFriendUIItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLFriendUIItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLFriendUIItemView.content)
- end
- return KLFriendUIItemView
|