KLEquipJewelryPanelView.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ---@class KLEquipJewelryPanelView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field BG UIKmlLuaControl
  4. ---@field tips UIKmlLuaControl
  5. ---@field bg2 UIKmlLuaControl
  6. ---@field BGInner_2 UIKmlLuaControl
  7. ---@field item_model UIKmlLuaControl
  8. ---@field equipName UIKmlLuaControl
  9. ---@field line_1 UIKmlLuaControl
  10. ---@field line_2 UIKmlLuaControl
  11. ---@field success_ok UIKmlLuaControl
  12. ---@field success_anim UIKmlLuaControl
  13. ---@field successText UIKmlLuaControl
  14. ---@field maxLevelTips UIKmlLuaControl
  15. ---@field LevelButton UIKmlLuaControl
  16. ---@field LevelButtonRedPoint UIKmlLuaControl
  17. ---@field strengthLevelBg UIKmlLuaControl
  18. ---@field strengthIntro UIKmlLuaControl
  19. ---@field preLevel UIKmlLuaControl
  20. ---@field arrow UIKmlLuaControl
  21. ---@field nextLevel UIKmlLuaControl
  22. ---@field LevelIcon UIKmlLuaControl
  23. ---@field equipAttribute UIKmlLuaControl
  24. ---@field arrContent UIKmlLuaControl
  25. ---@field gridview3 UIKmlLuaControl
  26. ---@field Attr_list UIKmlLuaControl
  27. ---@field Excellenceicon UIKmlLuaControl
  28. ---@field text11 UIKmlLuaControl
  29. ---@field scrollView UIKmlLuaControl
  30. ---@field gridview15 UIKmlLuaControl
  31. ---@field Exce_list UIKmlLuaControl
  32. ---@field Material UIKmlLuaControl
  33. ---@field text3 UIKmlLuaControl
  34. ---@field scrollview4 UIKmlLuaControl
  35. ---@field gridview5 UIKmlLuaControl
  36. ---@field cost_List UIKmlLuaControl
  37. ---@field Title UIKmlLuaControl
  38. ---@field CloseBtn UIKmlLuaControl
  39. local KLEquipJewelryPanelView = {}
  40. setmetatable(KLEquipJewelryPanelView,UIKmlLuaViewBase)
  41. local kmlPath = 'dev/outui/Equip/Panel/KLEquipJewelry/KLEquipJewelryPanelKml'
  42. KLEquipJewelryPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  43. ---@param parent UIKmlLuaControl
  44. function KLEquipJewelryPanelView:Init(parent)
  45. self:InitRoot(parent,kmlPath,KLEquipJewelryPanelView.content)
  46. end
  47. return KLEquipJewelryPanelView