KLFriendChatViewItemView.lua 584 B

1234567891011121314
  1. ---@class KLFriendChatViewItemView:UIKmlLuaViewBase
  2. ---@field chat_view UIKmlLuaControl
  3. ---@field chat_data_list UIKmlLuaControl
  4. local KLFriendChatViewItemView = {}
  5. setmetatable(KLFriendChatViewItemView,UIKmlLuaViewBase)
  6. local kmlPath = 'dev/ui/FriendSys/Item/KLFriendChatView/KLFriendChatViewItemKml'
  7. KLFriendChatViewItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  8. ---@param parent UIKmlLuaControl
  9. function KLFriendChatViewItemView:Init(parent)
  10. self:InitRoot(parent,kmlPath,KLFriendChatViewItemView.content)
  11. end
  12. return KLFriendChatViewItemView