KLOpenServerPanelView.lua 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. ---@class KLOpenServerPanelView:UIKmlLuaViewBase
  2. ---@field mask UIKmlLuaControl
  3. ---@field img1 UIKmlLuaControl
  4. ---@field img6 UIKmlLuaControl
  5. ---@field CloseImg UIKmlLuaControl
  6. ---@field panel2 UIKmlLuaControl
  7. ---@field ToggleGroupLevel UIKmlLuaControl
  8. ---@field scrollview1 UIKmlLuaControl
  9. ---@field gridview1 UIKmlLuaControl
  10. ---@field datalist1 UIKmlLuaControl
  11. ---@field BossKillPanel UIKmlLuaControl
  12. ---@field panel6 UIKmlLuaControl
  13. ---@field img8 UIKmlLuaControl
  14. ---@field img2 UIKmlLuaControl
  15. ---@field panel10 UIKmlLuaControl
  16. ---@field img7 UIKmlLuaControl
  17. ---@field text8 UIKmlLuaControl
  18. ---@field text2 UIKmlLuaControl
  19. ---@field text4 UIKmlLuaControl
  20. ---@field text11 UIKmlLuaControl
  21. ---@field text12 UIKmlLuaControl
  22. ---@field text13 UIKmlLuaControl
  23. ---@field panel13 UIKmlLuaControl
  24. ---@field img14 UIKmlLuaControl
  25. ---@field cut_area_up UIKmlLuaControl
  26. ---@field cut_area_down UIKmlLuaControl
  27. ---@field cut_area_right UIKmlLuaControl
  28. ---@field scrollview17 UIKmlLuaControl
  29. ---@field datalist34 UIKmlLuaControl
  30. ---@field StrengthenPanel UIKmlLuaControl
  31. ---@field panel3 UIKmlLuaControl
  32. ---@field img5 UIKmlLuaControl
  33. ---@field img15 UIKmlLuaControl
  34. ---@field panel4 UIKmlLuaControl
  35. ---@field img13 UIKmlLuaControl
  36. ---@field text15 UIKmlLuaControl
  37. ---@field text16 UIKmlLuaControl
  38. ---@field text17 UIKmlLuaControl
  39. ---@field text5 UIKmlLuaControl
  40. ---@field text6 UIKmlLuaControl
  41. ---@field text7 UIKmlLuaControl
  42. ---@field text9 UIKmlLuaControl
  43. ---@field panel17 UIKmlLuaControl
  44. ---@field img18 UIKmlLuaControl
  45. ---@field datalist83 UIKmlLuaControl
  46. ---@field panel86 UIKmlLuaControl
  47. ---@field panel86bg UIKmlLuaControl
  48. ---@field text87 UIKmlLuaControl
  49. ---@field text89 UIKmlLuaControl
  50. ---@field scrollview90 UIKmlLuaControl
  51. ---@field gridview91 UIKmlLuaControl
  52. ---@field datalist92 UIKmlLuaControl
  53. ---@field bgReciveImg UIKmlLuaControl
  54. ---@field light_btn2 UIKmlLuaControl
  55. ---@field button2 UIKmlLuaControl
  56. ---@field text103 UIKmlLuaControl
  57. ---@field text66s UIKmlLuaControl
  58. ---@field EquipDropPanel UIKmlLuaControl
  59. ---@field panel1 UIKmlLuaControl
  60. ---@field img17 UIKmlLuaControl
  61. ---@field img20 UIKmlLuaControl
  62. ---@field panel21 UIKmlLuaControl
  63. ---@field img22 UIKmlLuaControl
  64. ---@field text24 UIKmlLuaControl
  65. ---@field text26 UIKmlLuaControl
  66. ---@field text28 UIKmlLuaControl
  67. ---@field text29 UIKmlLuaControl
  68. ---@field panel27 UIKmlLuaControl
  69. ---@field img19 UIKmlLuaControl
  70. ---@field cut_area_up2 UIKmlLuaControl
  71. ---@field cut_area_down2 UIKmlLuaControl
  72. ---@field cut_area_right2 UIKmlLuaControl
  73. ---@field datalist54 UIKmlLuaControl
  74. ---@field AthleticsPanel UIKmlLuaControl
  75. ---@field paneltip UIKmlLuaControl
  76. ---@field imgtip UIKmlLuaControl
  77. ---@field btntip UIKmlLuaControl
  78. ---@field panelmid UIKmlLuaControl
  79. ---@field imgmid UIKmlLuaControl
  80. ---@field datalistMid UIKmlLuaControl
  81. ---@field panelbot UIKmlLuaControl
  82. ---@field panelbotbg UIKmlLuaControl
  83. ---@field textmyrank UIKmlLuaControl
  84. ---@field textrank UIKmlLuaControl
  85. ---@field scrollviewbot UIKmlLuaControl
  86. ---@field gridviewbot UIKmlLuaControl
  87. ---@field datalistbot UIKmlLuaControl
  88. ---@field botReciveImg UIKmlLuaControl
  89. ---@field light_btn22 UIKmlLuaControl
  90. ---@field button22 UIKmlLuaControl
  91. ---@field text77s UIKmlLuaControl
  92. ---@field textrankLv UIKmlLuaControl
  93. ---@field panel12 UIKmlLuaControl
  94. ---@field text10 UIKmlLuaControl
  95. ---@field countdown1 UIKmlLuaControl
  96. local KLOpenServerPanelView = {}
  97. setmetatable(KLOpenServerPanelView,UIKmlLuaViewBase)
  98. local kmlPath = 'dev/outui/ServerActivity/Panel/KLOpenServer/KLOpenServerPanelKml'
  99. KLOpenServerPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  100. ---@param parent UIKmlLuaControl
  101. function KLOpenServerPanelView:Init(parent)
  102. self:InitRoot(parent,kmlPath,KLOpenServerPanelView.content)
  103. end
  104. return KLOpenServerPanelView