KLSiegeRewardPanelView.lua 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. ---@class KLSiegeRewardPanelView:UIKmlLuaViewBase
  2. ---@field img_33 UIKmlLuaControl
  3. ---@field img_34 UIKmlLuaControl
  4. ---@field btn_close UIKmlLuaControl
  5. ---@field img_36 UIKmlLuaControl
  6. ---@field line1 UIKmlLuaControl
  7. ---@field line2 UIKmlLuaControl
  8. ---@field img_36 UIKmlLuaControl
  9. ---@field left UIKmlLuaControl
  10. ---@field LeftTitleIcon UIKmlLuaControl
  11. ---@field LeftTitleText UIKmlLuaControl
  12. ---@field scrollview1 UIKmlLuaControl
  13. ---@field layout2 UIKmlLuaControl
  14. ---@field title1 UIKmlLuaControl
  15. ---@field img1 UIKmlLuaControl
  16. ---@field text2 UIKmlLuaControl
  17. ---@field img5 UIKmlLuaControl
  18. ---@field LeftInfo1 UIKmlLuaControl
  19. ---@field LeftInfoText1 UIKmlLuaControl
  20. ---@field title2 UIKmlLuaControl
  21. ---@field img7 UIKmlLuaControl
  22. ---@field text8 UIKmlLuaControl
  23. ---@field img9 UIKmlLuaControl
  24. ---@field LeftInfo2 UIKmlLuaControl
  25. ---@field LeftInfoText2 UIKmlLuaControl
  26. ---@field title3 UIKmlLuaControl
  27. ---@field img12 UIKmlLuaControl
  28. ---@field text13 UIKmlLuaControl
  29. ---@field img13 UIKmlLuaControl
  30. ---@field LeftInfo3 UIKmlLuaControl
  31. ---@field LeftInfoText3 UIKmlLuaControl
  32. ---@field title4 UIKmlLuaControl
  33. ---@field img8 UIKmlLuaControl
  34. ---@field text9 UIKmlLuaControl
  35. ---@field img16 UIKmlLuaControl
  36. ---@field LeftInfo4 UIKmlLuaControl
  37. ---@field LeftInfoText4 UIKmlLuaControl
  38. ---@field mid UIKmlLuaControl
  39. ---@field MidTitleIcon UIKmlLuaControl
  40. ---@field text3 UIKmlLuaControl
  41. ---@field scrollview4 UIKmlLuaControl
  42. ---@field layout5 UIKmlLuaControl
  43. ---@field panel1 UIKmlLuaControl
  44. ---@field img2 UIKmlLuaControl
  45. ---@field text4 UIKmlLuaControl
  46. ---@field img6 UIKmlLuaControl
  47. ---@field img35 UIKmlLuaControl
  48. ---@field layout7 UIKmlLuaControl
  49. ---@field text10 UIKmlLuaControl
  50. ---@field Reward1 UIKmlLuaControl
  51. ---@field Reward1Scrollview UIKmlLuaControl
  52. ---@field layout21 UIKmlLuaControl
  53. ---@field Reward1DataList UIKmlLuaControl
  54. ---@field layout36 UIKmlLuaControl
  55. ---@field text37 UIKmlLuaControl
  56. ---@field Reward2 UIKmlLuaControl
  57. ---@field Reward2Scrollview UIKmlLuaControl
  58. ---@field layout40 UIKmlLuaControl
  59. ---@field Reward2DataList UIKmlLuaControl
  60. ---@field panel11 UIKmlLuaControl
  61. ---@field img14 UIKmlLuaControl
  62. ---@field text15 UIKmlLuaControl
  63. ---@field img17 UIKmlLuaControl
  64. ---@field layout18 UIKmlLuaControl
  65. ---@field text19 UIKmlLuaControl
  66. ---@field Reward3 UIKmlLuaControl
  67. ---@field Reward3Scrollview UIKmlLuaControl
  68. ---@field layout46 UIKmlLuaControl
  69. ---@field Reward3DataList UIKmlLuaControl
  70. ---@field right UIKmlLuaControl
  71. ---@field img3 UIKmlLuaControl
  72. ---@field text5 UIKmlLuaControl
  73. ---@field panel9 UIKmlLuaControl
  74. ---@field img10 UIKmlLuaControl
  75. ---@field text11 UIKmlLuaControl
  76. ---@field Reward4Scrollview UIKmlLuaControl
  77. ---@field layout41 UIKmlLuaControl
  78. ---@field Reward4DataList UIKmlLuaControl
  79. local KLSiegeRewardPanelView = {}
  80. setmetatable(KLSiegeRewardPanelView,UIKmlLuaViewBase)
  81. local kmlPath = 'dev/outui/LoranSiege/Panel/KLSiegeReward/KLSiegeRewardPanelKml'
  82. KLSiegeRewardPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  83. ---@param parent UIKmlLuaControl
  84. function KLSiegeRewardPanelView:Init(parent)
  85. self:InitRoot(parent,kmlPath,KLSiegeRewardPanelView.content)
  86. end
  87. return KLSiegeRewardPanelView