123456789101112131415 |
- ---@class KLUIMasterTalentColumnItemView:UIKmlLuaViewBase
- ---@field SkillScrollview UIKmlLuaControl
- ---@field layout5 UIKmlLuaControl
- ---@field SkillDataList UIKmlLuaControl
- local KLUIMasterTalentColumnItemView = {}
- setmetatable(KLUIMasterTalentColumnItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MasterTalent/Item/KLUIMasterTalentColumn/KLUIMasterTalentColumnItemKml'
- KLUIMasterTalentColumnItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIMasterTalentColumnItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIMasterTalentColumnItemView.content)
- end
- return KLUIMasterTalentColumnItemView
|