KLUIMasterTalentWashUpPanelView.lua 1.1 KB

1234567891011121314151617181920212223242526272829
  1. ---@class KLUIMasterTalentWashUpPanelView:UIKmlLuaViewBase
  2. ---@field MaskCloseButton UIKmlLuaControl
  3. ---@field BG UIKmlLuaControl
  4. ---@field title UIKmlLuaControl
  5. ---@field CloseButton UIKmlLuaControl
  6. ---@field Info UIKmlLuaControl
  7. ---@field img2 UIKmlLuaControl
  8. ---@field Text UIKmlLuaControl
  9. ---@field img4 UIKmlLuaControl
  10. ---@field Text2 UIKmlLuaControl
  11. ---@field CancelButton UIKmlLuaControl
  12. ---@field OkButton UIKmlLuaControl
  13. ---@field Cost UIKmlLuaControl
  14. ---@field CostBG UIKmlLuaControl
  15. ---@field CostItem UIKmlLuaControl
  16. ---@field textCost UIKmlLuaControl
  17. ---@field text14 UIKmlLuaControl
  18. ---@field img1 UIKmlLuaControl
  19. local KLUIMasterTalentWashUpPanelView = {}
  20. setmetatable(KLUIMasterTalentWashUpPanelView,UIKmlLuaViewBase)
  21. local kmlPath = 'dev/outui/MasterTalent/Panel/KLUIMasterTalentWashUp/KLUIMasterTalentWashUpPanelKml'
  22. KLUIMasterTalentWashUpPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  23. ---@param parent UIKmlLuaControl
  24. function KLUIMasterTalentWashUpPanelView:Init(parent)
  25. self:InitRoot(parent,kmlPath,KLUIMasterTalentWashUpPanelView.content)
  26. end
  27. return KLUIMasterTalentWashUpPanelView