KLArchangelBreakthroughPanelView.lua 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ---@class KLArchangelBreakthroughPanelView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field BG UIKmlLuaControl
  4. ---@field noselect UIKmlLuaControl
  5. ---@field StrengthCustomScrollView UIKmlLuaControl
  6. ---@field gridview15 UIKmlLuaControl
  7. ---@field cost_list UIKmlLuaControl
  8. ---@field BreakthroughBtn UIKmlLuaControl
  9. ---@field failTips UIKmlLuaControl
  10. ---@field strengthIcon_1 UIKmlLuaControl
  11. ---@field text11 UIKmlLuaControl
  12. ---@field hidepanel UIKmlLuaControl
  13. ---@field top_level UIKmlLuaControl
  14. ---@field bg UIKmlLuaControl
  15. ---@field attrName UIKmlLuaControl
  16. ---@field preValue UIKmlLuaControl
  17. ---@field nextValue UIKmlLuaControl
  18. ---@field arrow1 UIKmlLuaControl
  19. ---@field strengthIcon UIKmlLuaControl
  20. ---@field equipAttribute UIKmlLuaControl
  21. ---@field BGInner_2 UIKmlLuaControl
  22. ---@field strengthLevelBg UIKmlLuaControl
  23. ---@field strengthIntro UIKmlLuaControl
  24. ---@field preLevel UIKmlLuaControl
  25. ---@field arrow UIKmlLuaControl
  26. ---@field nextLevel UIKmlLuaControl
  27. ---@field maxLevelTips UIKmlLuaControl
  28. ---@field equipName UIKmlLuaControl
  29. ---@field item_model UIKmlLuaControl
  30. ---@field line_1 UIKmlLuaControl
  31. ---@field line_2 UIKmlLuaControl
  32. ---@field Title UIKmlLuaControl
  33. ---@field noticeText UIKmlLuaControl
  34. ---@field CloseButton UIKmlLuaControl
  35. ---@field effectfail UIKmlLuaControl
  36. ---@field effectSucceed UIKmlLuaControl
  37. ---@field noselect_img UIKmlLuaControl
  38. ---@field btn_tips UIKmlLuaControl
  39. local KLArchangelBreakthroughPanelView = {}
  40. setmetatable(KLArchangelBreakthroughPanelView,UIKmlLuaViewBase)
  41. local kmlPath = 'dev/outui/Archangel/Panel/KLArchangelBreakthrough/KLArchangelBreakthroughPanelKml'
  42. KLArchangelBreakthroughPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  43. ---@param parent UIKmlLuaControl
  44. function KLArchangelBreakthroughPanelView:Init(parent)
  45. self:InitRoot(parent,kmlPath,KLArchangelBreakthroughPanelView.content)
  46. end
  47. return KLArchangelBreakthroughPanelView