KLStrengthenItemView.lua 979 B

1234567891011121314151617181920212223242526
  1. ---@class KLStrengthenItemView:UIKmlLuaViewBase
  2. ---@field img16 UIKmlLuaControl
  3. ---@field item69 UIKmlLuaControl
  4. ---@field item70 UIKmlLuaControl
  5. ---@field item79 UIKmlLuaControl
  6. ---@field ReciveImg1_ UIKmlLuaControl
  7. ---@field ReciveImg2_ UIKmlLuaControl
  8. ---@field ReciveImg3_ UIKmlLuaControl
  9. ---@field text75 UIKmlLuaControl
  10. ---@field text76 UIKmlLuaControl
  11. ---@field text77 UIKmlLuaControl
  12. ---@field text78 UIKmlLuaControl
  13. ---@field HighlightImg1_ UIKmlLuaControl
  14. ---@field HighlightImg2_ UIKmlLuaControl
  15. ---@field HighlightImg3_ UIKmlLuaControl
  16. local KLStrengthenItemView = {}
  17. setmetatable(KLStrengthenItemView,UIKmlLuaViewBase)
  18. local kmlPath = 'dev/outui/ServerActivity/Item/KLStrengthen/KLStrengthenItemKml'
  19. KLStrengthenItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  20. ---@param parent UIKmlLuaControl
  21. function KLStrengthenItemView:Init(parent)
  22. self:InitRoot(parent,kmlPath,KLStrengthenItemView.content)
  23. end
  24. return KLStrengthenItemView