KLAthleticsItemView.lua 711 B

12345678910111213141516171819
  1. ---@class KLAthleticsItemView:UIKmlLuaViewBase
  2. ---@field imgbg UIKmlLuaControl
  3. ---@field imgsort UIKmlLuaControl
  4. ---@field textsort UIKmlLuaControl
  5. ---@field scrollview UIKmlLuaControl
  6. ---@field layout UIKmlLuaControl
  7. ---@field rewards_data UIKmlLuaControl
  8. ---@field name UIKmlLuaControl
  9. local KLAthleticsItemView = {}
  10. setmetatable(KLAthleticsItemView,UIKmlLuaViewBase)
  11. local kmlPath = 'dev/outui/ServerActivity/Item/KLAthletics/KLAthleticsItemKml'
  12. KLAthleticsItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  13. ---@param parent UIKmlLuaControl
  14. function KLAthleticsItemView:Init(parent)
  15. self:InitRoot(parent,kmlPath,KLAthleticsItemView.content)
  16. end
  17. return KLAthleticsItemView