1234567891011121314151617 |
- ---@class KLUIChatItemView:UIKmlLuaViewBase
- ---@field icon_root UIKmlLuaControl
- ---@field icon UIKmlLuaControl
- ---@field name UIKmlLuaControl
- ---@field qipao UIKmlLuaControl
- ---@field richT UIKmlLuaControl
- local KLUIChatItemView = {}
- setmetatable(KLUIChatItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Chat/Item/KLUIChatItem/KLUIChatItemKml'
- KLUIChatItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIChatItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIChatItemView.content)
- end
- return KLUIChatItemView
|