KLUIChatItemView.lua 596 B

1234567891011121314151617
  1. ---@class KLUIChatItemView:UIKmlLuaViewBase
  2. ---@field icon_root UIKmlLuaControl
  3. ---@field icon UIKmlLuaControl
  4. ---@field name UIKmlLuaControl
  5. ---@field qipao UIKmlLuaControl
  6. ---@field richT UIKmlLuaControl
  7. local KLUIChatItemView = {}
  8. setmetatable(KLUIChatItemView,UIKmlLuaViewBase)
  9. local kmlPath = 'dev/ui/Chat/Item/KLUIChatItem/KLUIChatItemKml'
  10. KLUIChatItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  11. ---@param parent UIKmlLuaControl
  12. function KLUIChatItemView:Init(parent)
  13. self:InitRoot(parent,kmlPath,KLUIChatItemView.content)
  14. end
  15. return KLUIChatItemView