KLUIMasterTalentMainPanelView.lua 944 B

1234567891011121314151617181920212223
  1. ---@class KLUIMasterTalentMainPanelView:UIKmlLuaViewBase
  2. ---@field Mask UIKmlLuaControl
  3. ---@field img2 UIKmlLuaControl
  4. ---@field img1 UIKmlLuaControl
  5. ---@field img3 UIKmlLuaControl
  6. ---@field TalentBG UIKmlLuaControl
  7. ---@field CloseButton UIKmlLuaControl
  8. ---@field Title UIKmlLuaControl
  9. ---@field ToggleGroup UIKmlLuaControl
  10. ---@field TitleToggleList UIKmlLuaControl
  11. ---@field gridview26 UIKmlLuaControl
  12. ---@field TitleDatalist UIKmlLuaControl
  13. local KLUIMasterTalentMainPanelView = {}
  14. setmetatable(KLUIMasterTalentMainPanelView,UIKmlLuaViewBase)
  15. local kmlPath = 'dev/outui/MasterTalent/Panel/KLUIMasterTalentMain/KLUIMasterTalentMainPanelKml'
  16. KLUIMasterTalentMainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  17. ---@param parent UIKmlLuaControl
  18. function KLUIMasterTalentMainPanelView:Init(parent)
  19. self:InitRoot(parent,kmlPath,KLUIMasterTalentMainPanelView.content)
  20. end
  21. return KLUIMasterTalentMainPanelView