KLEquipAppendUIPanelView.lua 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ---@class KLEquipAppendUIPanelView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field BG UIKmlLuaControl
  4. ---@field Title UIKmlLuaControl
  5. ---@field BGInner_2 UIKmlLuaControl
  6. ---@field ToggleGroupSource UIKmlLuaControl
  7. ---@field equipBtn UIKmlLuaControl
  8. ---@field bagBtn UIKmlLuaControl
  9. ---@field CloseButton UIKmlLuaControl
  10. ---@field appendMasterBtn UIKmlLuaControl
  11. ---@field strengthIcon UIKmlLuaControl
  12. ---@field equipAttribute UIKmlLuaControl
  13. ---@field arrContent UIKmlLuaControl
  14. ---@field gridview3 UIKmlLuaControl
  15. ---@field strength_list UIKmlLuaControl
  16. ---@field strengthIcon_1 UIKmlLuaControl
  17. ---@field text11 UIKmlLuaControl
  18. ---@field StrengthCustomScrollView UIKmlLuaControl
  19. ---@field gridview15 UIKmlLuaControl
  20. ---@field cost_list UIKmlLuaControl
  21. ---@field strengthButton UIKmlLuaControl
  22. ---@field failTips UIKmlLuaControl
  23. ---@field strengthLevelBg UIKmlLuaControl
  24. ---@field strengthIntro UIKmlLuaControl
  25. ---@field preLevel UIKmlLuaControl
  26. ---@field arrow UIKmlLuaControl
  27. ---@field nextLevel UIKmlLuaControl
  28. ---@field equipName UIKmlLuaControl
  29. ---@field line_1 UIKmlLuaControl
  30. ---@field line_2 UIKmlLuaControl
  31. ---@field liuguangInfo UIKmlLuaControl
  32. ---@field successIcon UIKmlLuaControl
  33. ---@field baseSuccessRatioText UIKmlLuaControl
  34. ---@field maxStrengthLevelBg UIKmlLuaControl
  35. ---@field maxStrengthIntro UIKmlLuaControl
  36. ---@field maxLevel UIKmlLuaControl
  37. ---@field maxLevelTips UIKmlLuaControl
  38. ---@field noticeText UIKmlLuaControl
  39. ---@field item_model UIKmlLuaControl
  40. ---@field append_fail UIKmlLuaControl
  41. ---@field append_ok UIKmlLuaControl
  42. local KLEquipAppendUIPanelView = {}
  43. setmetatable(KLEquipAppendUIPanelView,UIKmlLuaViewBase)
  44. local kmlPath = 'dev/outui/Equip/Panel/KLEquipAppendUI/KLEquipAppendUIPanelKml'
  45. KLEquipAppendUIPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  46. ---@param parent UIKmlLuaControl
  47. function KLEquipAppendUIPanelView:Init(parent)
  48. self:InitRoot(parent,kmlPath,KLEquipAppendUIPanelView.content)
  49. end
  50. return KLEquipAppendUIPanelView