KLOpenServerAthleticsPanelView.lua 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ---@class KLOpenServerAthleticsPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field img3 UIKmlLuaControl
  4. ---@field TradePageList UIKmlLuaControl
  5. ---@field layout5 UIKmlLuaControl
  6. ---@field BtnRanking UIKmlLuaControl
  7. ---@field Red1 UIKmlLuaControl
  8. ---@field BtnChallenge UIKmlLuaControl
  9. ---@field BtnLimitIcon UIKmlLuaControl
  10. ---@field Red2 UIKmlLuaControl
  11. ---@field BtnGiftBag UIKmlLuaControl
  12. ---@field Red3 UIKmlLuaControl
  13. ---@field BtnList UIKmlLuaControl
  14. ---@field layout6 UIKmlLuaControl
  15. ---@field BtnDataList UIKmlLuaControl
  16. ---@field RankPanel UIKmlLuaControl
  17. ---@field RankList UIKmlLuaControl
  18. ---@field UIOpenServerRankingDataList UIKmlLuaControl
  19. ---@field TxtTimePrefix UIKmlLuaControl
  20. ---@field Mintxt UIKmlLuaControl
  21. ---@field Tiptxt UIKmlLuaControl
  22. ---@field MidText UIKmlLuaControl
  23. ---@field PersonPanel UIKmlLuaControl
  24. ---@field PersonList UIKmlLuaControl
  25. ---@field UIPersonChallengeDataList UIKmlLuaControl
  26. ---@field PersonLastitem UIKmlLuaControl
  27. ---@field PersonLastCount UIKmlLuaControl
  28. ---@field PersonLastItemList UIKmlLuaControl
  29. ---@field layout59 UIKmlLuaControl
  30. ---@field PersonLastLimitAward UIKmlLuaControl
  31. ---@field PersonLastEndIcon UIKmlLuaControl
  32. ---@field PersonLastLimitTime UIKmlLuaControl
  33. ---@field PersonLastBtnGo UIKmlLuaControl
  34. ---@field PersonLastjindu_count UIKmlLuaControl
  35. ---@field Red4 UIKmlLuaControl
  36. ---@field PersonLastFinished UIKmlLuaControl
  37. ---@field GiftPanel UIKmlLuaControl
  38. ---@field GiftList UIKmlLuaControl
  39. ---@field GiftListDataList UIKmlLuaControl
  40. local KLOpenServerAthleticsPanelView = {}
  41. setmetatable(KLOpenServerAthleticsPanelView,UIKmlLuaViewBase)
  42. local kmlPath = 'dev/outui/OpenServerAthletics/Panel/KLOpenServerAthletics/KLOpenServerAthleticsPanelKml'
  43. KLOpenServerAthleticsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  44. ---@param parent UIKmlLuaControl
  45. function KLOpenServerAthleticsPanelView:Init(parent)
  46. self:InitRoot(parent,kmlPath,KLOpenServerAthleticsPanelView.content)
  47. end
  48. return KLOpenServerAthleticsPanelView