KLEquipStrengthUIPanelView.lua 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. ---@class KLEquipStrengthUIPanelView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field BG UIKmlLuaControl
  4. ---@field BGInner_2 UIKmlLuaControl
  5. ---@field successIcon UIKmlLuaControl
  6. ---@field baseSuccessRatioText UIKmlLuaControl
  7. ---@field layout_19 UIKmlLuaControl
  8. ---@field panel_20 UIKmlLuaControl
  9. ---@field strengthMasterBtn UIKmlLuaControl
  10. ---@field panel_22 UIKmlLuaControl
  11. ---@field liuGuangBtn UIKmlLuaControl
  12. ---@field strengthIcon UIKmlLuaControl
  13. ---@field arrContent UIKmlLuaControl
  14. ---@field gridview3 UIKmlLuaControl
  15. ---@field strength_list UIKmlLuaControl
  16. ---@field equipAttribute UIKmlLuaControl
  17. ---@field strengthIcon_1 UIKmlLuaControl
  18. ---@field text11 UIKmlLuaControl
  19. ---@field StrengthCustomScrollView UIKmlLuaControl
  20. ---@field gridview15 UIKmlLuaControl
  21. ---@field cost_list UIKmlLuaControl
  22. ---@field strengthButton UIKmlLuaControl
  23. ---@field failTips UIKmlLuaControl
  24. ---@field strengthLevelBg UIKmlLuaControl
  25. ---@field strengthIntro UIKmlLuaControl
  26. ---@field preLevel UIKmlLuaControl
  27. ---@field arrow UIKmlLuaControl
  28. ---@field nextLevel UIKmlLuaControl
  29. ---@field Title UIKmlLuaControl
  30. ---@field maxStrengthLevelBg UIKmlLuaControl
  31. ---@field maxStrengthIntro UIKmlLuaControl
  32. ---@field maxLevel UIKmlLuaControl
  33. ---@field maxLevelTips UIKmlLuaControl
  34. ---@field strength_fail UIKmlLuaControl
  35. ---@field strength_ok UIKmlLuaControl
  36. ---@field equipName UIKmlLuaControl
  37. ---@field line_1 UIKmlLuaControl
  38. ---@field line_2 UIKmlLuaControl
  39. ---@field liuguangInfo UIKmlLuaControl
  40. ---@field noticeText UIKmlLuaControl
  41. ---@field item_model UIKmlLuaControl
  42. ---@field ToggleGroupSource UIKmlLuaControl
  43. ---@field equipBtn UIKmlLuaControl
  44. ---@field bagBtn UIKmlLuaControl
  45. ---@field CloseButton UIKmlLuaControl
  46. ---@field equip_show_tips UIKmlLuaControl
  47. ---@field strength_suc_bg UIKmlLuaControl
  48. ---@field closeMask UIKmlLuaControl
  49. ---@field mask_item UIKmlLuaControl
  50. ---@field mask_text UIKmlLuaControl
  51. local KLEquipStrengthUIPanelView = {}
  52. setmetatable(KLEquipStrengthUIPanelView,UIKmlLuaViewBase)
  53. local kmlPath = 'dev/outui/Equip/Panel/KLEquipStrengthUI/KLEquipStrengthUIPanelKml'
  54. KLEquipStrengthUIPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  55. ---@param parent UIKmlLuaControl
  56. function KLEquipStrengthUIPanelView:Init(parent)
  57. self:InitRoot(parent,kmlPath,KLEquipStrengthUIPanelView.content)
  58. end
  59. return KLEquipStrengthUIPanelView