1234567891011121314 |
- ---@class KLFriendChatViewItemView:UIKmlLuaViewBase
- ---@field chat_view UIKmlLuaControl
- ---@field chat_data_list UIKmlLuaControl
- local KLFriendChatViewItemView = {}
- setmetatable(KLFriendChatViewItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/FriendSys/Item/KLFriendChatView/KLFriendChatViewItemKml'
- KLFriendChatViewItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLFriendChatViewItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLFriendChatViewItemView.content)
- end
- return KLFriendChatViewItemView
|