KLActivityComboPanelView.lua 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ---@class KLActivityComboPanelView:UIKmlLuaViewBase
  2. ---@field bgClose UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field bg1 UIKmlLuaControl
  5. ---@field comboTitle UIKmlLuaControl
  6. ---@field closeBtn UIKmlLuaControl
  7. ---@field togglegroup UIKmlLuaControl
  8. ---@field comboTitleicon UIKmlLuaControl
  9. ---@field levelContent UIKmlLuaControl
  10. ---@field levelLayout UIKmlLuaControl
  11. ---@field levelList UIKmlLuaControl
  12. ---@field img45 UIKmlLuaControl
  13. ---@field text46 UIKmlLuaControl
  14. ---@field level UIKmlLuaControl
  15. ---@field img54 UIKmlLuaControl
  16. ---@field text55 UIKmlLuaControl
  17. ---@field defense UIKmlLuaControl
  18. ---@field img57 UIKmlLuaControl
  19. ---@field text58 UIKmlLuaControl
  20. ---@field openTime UIKmlLuaControl
  21. ---@field img60 UIKmlLuaControl
  22. ---@field text61 UIKmlLuaControl
  23. ---@field countTxt UIKmlLuaControl
  24. ---@field img63 UIKmlLuaControl
  25. ---@field text64 UIKmlLuaControl
  26. ---@field rewardList1 UIKmlLuaControl
  27. ---@field layout67 UIKmlLuaControl
  28. ---@field rewardList UIKmlLuaControl
  29. ---@field img7 UIKmlLuaControl
  30. ---@field text8 UIKmlLuaControl
  31. ---@field ticketBtn UIKmlLuaControl
  32. ---@field ticketCount UIKmlLuaControl
  33. ---@field ticketItem UIKmlLuaControl
  34. ---@field addCountBtn UIKmlLuaControl
  35. ---@field desBtn UIKmlLuaControl
  36. ---@field layout2 UIKmlLuaControl
  37. ---@field sweepBtn UIKmlLuaControl
  38. ---@field enterBtn UIKmlLuaControl
  39. ---@field text_btnTips UIKmlLuaControl
  40. ---@field sweep_panel UIKmlLuaControl
  41. ---@field sweep_prefab UIKmlLuaControl
  42. ---@field ClickMask UIKmlLuaControl
  43. ---@field InputFieldLevel UIKmlLuaControl
  44. ---@field Text UIKmlLuaControl
  45. ---@field TextTotalPrice UIKmlLuaControl
  46. ---@field TotalPrice UIKmlLuaControl
  47. ---@field BtnBuy UIKmlLuaControl
  48. ---@field BtnText UIKmlLuaControl
  49. ---@field BtnLevelMinus UIKmlLuaControl
  50. ---@field BtnLevelAdd UIKmlLuaControl
  51. ---@field sweepCount UIKmlLuaControl
  52. local KLActivityComboPanelView = {}
  53. setmetatable(KLActivityComboPanelView,UIKmlLuaViewBase)
  54. local kmlPath = 'dev/outui/Activity/Panel/KLActivityCombo/KLActivityComboPanelKml'
  55. KLActivityComboPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  56. ---@param parent UIKmlLuaControl
  57. function KLActivityComboPanelView:Init(parent)
  58. self:InitRoot(parent,kmlPath,KLActivityComboPanelView.content)
  59. end
  60. return KLActivityComboPanelView