KLUIMasterTalentColumnItemView.lua 683 B

123456789101112131415
  1. ---@class KLUIMasterTalentColumnItemView:UIKmlLuaViewBase
  2. ---@field SkillScrollview UIKmlLuaControl
  3. ---@field layout5 UIKmlLuaControl
  4. ---@field SkillDataList UIKmlLuaControl
  5. local KLUIMasterTalentColumnItemView = {}
  6. setmetatable(KLUIMasterTalentColumnItemView,UIKmlLuaViewBase)
  7. local kmlPath = 'dev/outui/MasterTalent/Item/KLUIMasterTalentColumn/KLUIMasterTalentColumnItemKml'
  8. KLUIMasterTalentColumnItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  9. ---@param parent UIKmlLuaControl
  10. function KLUIMasterTalentColumnItemView:Init(parent)
  11. self:InitRoot(parent,kmlPath,KLUIMasterTalentColumnItemView.content)
  12. end
  13. return KLUIMasterTalentColumnItemView