KLUISkillInfoPanelView.lua 868 B

12345678910111213141516171819202122
  1. ---@class KLUISkillInfoPanelView:UIKmlLuaViewBase
  2. ---@field KmlXWSkillInfoUI UIKmlLuaControl
  3. ---@field SkillTogGroup UIKmlLuaControl
  4. ---@field TextTitle UIKmlLuaControl
  5. ---@field BtnSkillSetting UIKmlLuaControl
  6. ---@field closeBtn UIKmlLuaControl
  7. ---@field listMask UIKmlLuaControl
  8. ---@field loopscrollview UIKmlLuaControl
  9. ---@field loopscrollviewData UIKmlLuaControl
  10. ---@field pageList UIKmlLuaControl
  11. ---@field pageData UIKmlLuaControl
  12. local KLUISkillInfoPanelView = {}
  13. setmetatable(KLUISkillInfoPanelView,UIKmlLuaViewBase)
  14. local kmlPath = 'dev/ui/Skill/Panel/KLUISkillInfo/KLUISkillInfoPanelKml'
  15. KLUISkillInfoPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  16. ---@param parent UIKmlLuaControl
  17. function KLUISkillInfoPanelView:Init(parent)
  18. self:InitRoot(parent,kmlPath,KLUISkillInfoPanelView.content)
  19. end
  20. return KLUISkillInfoPanelView