KLEquipJewelryActivePanelView.lua 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. ---@class KLEquipJewelryActivePanelView:UIKmlLuaViewBase
  2. ---@field panel2 UIKmlLuaControl
  3. ---@field maskBtn UIKmlLuaControl
  4. ---@field img3 UIKmlLuaControl
  5. ---@field scrollview1 UIKmlLuaControl
  6. ---@field gridview15 UIKmlLuaControl
  7. ---@field cost_list UIKmlLuaControl
  8. ---@field img1 UIKmlLuaControl
  9. ---@field text3 UIKmlLuaControl
  10. ---@field Level UIKmlLuaControl
  11. ---@field img4 UIKmlLuaControl
  12. ---@field text5 UIKmlLuaControl
  13. ---@field Add UIKmlLuaControl
  14. ---@field img8 UIKmlLuaControl
  15. ---@field count UIKmlLuaControl
  16. ---@field itemModel UIKmlLuaControl
  17. ---@field ActiveBtn UIKmlLuaControl
  18. ---@field CloseBtn UIKmlLuaControl
  19. ---@field img2 UIKmlLuaControl
  20. ---@field activeIcon UIKmlLuaControl
  21. local KLEquipJewelryActivePanelView = {}
  22. setmetatable(KLEquipJewelryActivePanelView,UIKmlLuaViewBase)
  23. local kmlPath = 'dev/outui/Equip/Panel/KLEquipJewelryActive/KLEquipJewelryActivePanelKml'
  24. KLEquipJewelryActivePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  25. ---@param parent UIKmlLuaControl
  26. function KLEquipJewelryActivePanelView:Init(parent)
  27. self:InitRoot(parent,kmlPath,KLEquipJewelryActivePanelView.content)
  28. end
  29. return KLEquipJewelryActivePanelView