KLRechargeActivityPanelView.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ---@class KLRechargeActivityPanelView:UIKmlLuaViewBase
  2. ---@field img1 UIKmlLuaControl
  3. ---@field TogglePanel UIKmlLuaControl
  4. ---@field BtnView UIKmlLuaControl
  5. ---@field layout2 UIKmlLuaControl
  6. ---@field activeDataList UIKmlLuaControl
  7. ---@field activeToggleGroup UIKmlLuaControl
  8. ---@field LevelGiftPanel UIKmlLuaControl
  9. ---@field Bg UIKmlLuaControl
  10. ---@field DIY_Text_Level UIKmlLuaControl
  11. ---@field img_Text1 UIKmlLuaControl
  12. ---@field img_triggerBg UIKmlLuaControl
  13. ---@field img_triggerName UIKmlLuaControl
  14. ---@field ItemBoxPanel UIKmlLuaControl
  15. ---@field ItemBoxLayout UIKmlLuaControl
  16. ---@field ItemBoxDataList UIKmlLuaControl
  17. ---@field SingleGiftPanel UIKmlLuaControl
  18. ---@field Bg1 UIKmlLuaControl
  19. ---@field img4 UIKmlLuaControl
  20. ---@field img5 UIKmlLuaControl
  21. ---@field text9 UIKmlLuaControl
  22. ---@field SingleBuyBtn UIKmlLuaControl
  23. ---@field layout1 UIKmlLuaControl
  24. ---@field SingleBuyCount UIKmlLuaControl
  25. ---@field Singlezuanshi UIKmlLuaControl
  26. ---@field SingleGiftItems UIKmlLuaControl
  27. ---@field SingleGift1 UIKmlLuaControl
  28. ---@field SingleGift2 UIKmlLuaControl
  29. ---@field SingleGift3 UIKmlLuaControl
  30. ---@field SingleGift4 UIKmlLuaControl
  31. ---@field SingleGetZuanShiBtn UIKmlLuaControl
  32. ---@field img2 UIKmlLuaControl
  33. ---@field CloseButton UIKmlLuaControl
  34. ---@field DIY_TimePanel UIKmlLuaControl
  35. ---@field text11 UIKmlLuaControl
  36. ---@field DIY_TimeText UIKmlLuaControl
  37. local KLRechargeActivityPanelView = {}
  38. setmetatable(KLRechargeActivityPanelView,UIKmlLuaViewBase)
  39. local kmlPath = 'dev/outui/Recharge/Panel/KLRechargeActivity/KLRechargeActivityPanelKml'
  40. KLRechargeActivityPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  41. ---@param parent UIKmlLuaControl
  42. function KLRechargeActivityPanelView:Init(parent)
  43. self:InitRoot(parent,kmlPath,KLRechargeActivityPanelView.content)
  44. end
  45. return KLRechargeActivityPanelView