KLBagItemItemView.lua 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. ---@class KLBagItemItemView:UIKmlLuaViewBase
  2. ---@field bag_item_ UIKmlLuaControl
  3. ---@field empty UIKmlLuaControl
  4. ---@field item_model_ UIKmlLuaControl
  5. ---@field fluoriteLevel_ UIKmlLuaControl
  6. ---@field strengthLevel_ UIKmlLuaControl
  7. ---@field appendLevel_ UIKmlLuaControl
  8. ---@field bg UIKmlLuaControl
  9. ---@field selectImg UIKmlLuaControl
  10. ---@field selectTagImg UIKmlLuaControl
  11. ---@field quality_ UIKmlLuaControl
  12. ---@field wave1 UIKmlLuaControl
  13. ---@field wave2 UIKmlLuaControl
  14. ---@field wave3 UIKmlLuaControl
  15. ---@field wave4 UIKmlLuaControl
  16. ---@field holdImg_ UIKmlLuaControl
  17. ---@field tipsIcon_ UIKmlLuaControl
  18. ---@field arrow_ UIKmlLuaControl
  19. ---@field puton UIKmlLuaControl
  20. ---@field equipInfo UIKmlLuaControl
  21. local KLBagItemItemView = {}
  22. setmetatable(KLBagItemItemView,UIKmlLuaViewBase)
  23. local kmlPath = 'dev/ui/Common/Item/KLBagItem/KLBagItemItemKml'
  24. KLBagItemItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  25. ---@param parent UIKmlLuaControl
  26. function KLBagItemItemView:Init(parent)
  27. self:InitRoot(parent,kmlPath,KLBagItemItemView.content)
  28. end
  29. return KLBagItemItemView