KLArmbandUpgradePanelView.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ---@class KLArmbandUpgradePanelView:UIKmlLuaViewBase
  2. ---@field bottomArmbandBg UIKmlLuaControl
  3. ---@field title UIKmlLuaControl
  4. ---@field CloseButton UIKmlLuaControl
  5. ---@field UpgradeBtn UIKmlLuaControl
  6. ---@field StrengthenBtn UIKmlLuaControl
  7. ---@field armbandBg UIKmlLuaControl
  8. ---@field armbandicon UIKmlLuaControl
  9. ---@field armbandname UIKmlLuaControl
  10. ---@field layout_armbandstar UIKmlLuaControl
  11. ---@field datalist_armbandstar UIKmlLuaControl
  12. ---@field KmlEquipReborn UIKmlLuaControl
  13. ---@field equipbg UIKmlLuaControl
  14. ---@field strengthIntro UIKmlLuaControl
  15. ---@field preLevel UIKmlLuaControl
  16. ---@field arrow UIKmlLuaControl
  17. ---@field nextLevel UIKmlLuaControl
  18. ---@field resultAnim UIKmlLuaControl
  19. ---@field resultLv UIKmlLuaControl
  20. ---@field resultAnimText UIKmlLuaControl
  21. ---@field title_di UIKmlLuaControl
  22. ---@field arr_title UIKmlLuaControl
  23. ---@field armbandArrview UIKmlLuaControl
  24. ---@field armbandlayout UIKmlLuaControl
  25. ---@field arrData_list UIKmlLuaControl
  26. ---@field fulllevelCost UIKmlLuaControl
  27. ---@field armbandtip UIKmlLuaControl
  28. ---@field costBg UIKmlLuaControl
  29. ---@field costItem UIKmlLuaControl
  30. ---@field costName UIKmlLuaControl
  31. ---@field costNum UIKmlLuaControl
  32. ---@field costAdd UIKmlLuaControl
  33. ---@field OperateBtn UIKmlLuaControl
  34. ---@field btntip UIKmlLuaControl
  35. ---@field fulllevel UIKmlLuaControl
  36. ---@field btnarmtip UIKmlLuaControl
  37. local KLArmbandUpgradePanelView = {}
  38. setmetatable(KLArmbandUpgradePanelView,UIKmlLuaViewBase)
  39. local kmlPath = 'dev/outui/Union/Panel/KLArmbandUpgrade/KLArmbandUpgradePanelKml'
  40. KLArmbandUpgradePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  41. ---@param parent UIKmlLuaControl
  42. function KLArmbandUpgradePanelView:Init(parent)
  43. self:InitRoot(parent,kmlPath,KLArmbandUpgradePanelView.content)
  44. end
  45. return KLArmbandUpgradePanelView