KLUIMasterTalentExchangeExpPanelView.lua 901 B

1234567891011121314151617181920
  1. ---@class KLUIMasterTalentExchangeExpPanelView:UIKmlLuaViewBase
  2. ---@field MaskCloseButton UIKmlLuaControl
  3. ---@field img1 UIKmlLuaControl
  4. ---@field Text UIKmlLuaControl
  5. ---@field scrollview UIKmlLuaControl
  6. ---@field layout4 UIKmlLuaControl
  7. ---@field DataList UIKmlLuaControl
  8. ---@field CloseButton UIKmlLuaControl
  9. ---@field title UIKmlLuaControl
  10. local KLUIMasterTalentExchangeExpPanelView = {}
  11. setmetatable(KLUIMasterTalentExchangeExpPanelView,UIKmlLuaViewBase)
  12. local kmlPath = 'dev/outui/MasterTalent/Panel/KLUIMasterTalentExchangeExp/KLUIMasterTalentExchangeExpPanelKml'
  13. KLUIMasterTalentExchangeExpPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  14. ---@param parent UIKmlLuaControl
  15. function KLUIMasterTalentExchangeExpPanelView:Init(parent)
  16. self:InitRoot(parent,kmlPath,KLUIMasterTalentExchangeExpPanelView.content)
  17. end
  18. return KLUIMasterTalentExchangeExpPanelView