1234567891011121314151617181920212223 |
- ---@class KLFriendInfoItemView:UIKmlLuaViewBase
- ---@field FriendInfo UIKmlLuaControl
- ---@field KmlFriendListItem UIKmlLuaControl
- ---@field friend_select UIKmlLuaControl
- ---@field friend_bg UIKmlLuaControl
- ---@field Mask UIKmlLuaControl
- ---@field Icon UIKmlLuaControl
- ---@field friend_level UIKmlLuaControl
- ---@field friend_name UIKmlLuaControl
- ---@field friend_union_name UIKmlLuaControl
- ---@field friend_message UIKmlLuaControl
- ---@field TextOnline UIKmlLuaControl
- local KLFriendInfoItemView = {}
- setmetatable(KLFriendInfoItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/FriendSys/Item/KLFriendInfo/KLFriendInfoItemKml'
- KLFriendInfoItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLFriendInfoItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLFriendInfoItemView.content)
- end
- return KLFriendInfoItemView
|