KLFirstChargePanelView.lua 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. ---@class KLFirstChargePanelView:UIKmlLuaViewBase
  2. ---@field UIFirstChargePanel UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field btn_Close UIKmlLuaControl
  5. ---@field font_ad UIKmlLuaControl
  6. ---@field font_ad2 UIKmlLuaControl
  7. ---@field font_ad3 UIKmlLuaControl
  8. ---@field font_advertising UIKmlLuaControl
  9. ---@field bg1 UIKmlLuaControl
  10. ---@field Image1 UIKmlLuaControl
  11. ---@field RebateText UIKmlLuaControl
  12. ---@field model_image UIKmlLuaControl
  13. ---@field Model_item UIKmlLuaControl
  14. ---@field img_amount UIKmlLuaControl
  15. ---@field number UIKmlLuaControl
  16. ---@field panel_68 UIKmlLuaControl
  17. ---@field img_69 UIKmlLuaControl
  18. ---@field img_70 UIKmlLuaControl
  19. ---@field img_71 UIKmlLuaControl
  20. ---@field img_72 UIKmlLuaControl
  21. ---@field text_recharge_num UIKmlLuaControl
  22. ---@field text_reward_num UIKmlLuaControl
  23. ---@field img1 UIKmlLuaControl
  24. ---@field btn_charge UIKmlLuaControl
  25. ---@field GetText UIKmlLuaControl
  26. ---@field ChargeText UIKmlLuaControl
  27. ---@field hasReceive_text UIKmlLuaControl
  28. ---@field btn_tips UIKmlLuaControl
  29. ---@field bg_content UIKmlLuaControl
  30. ---@field scrollviewItemList UIKmlLuaControl
  31. ---@field layout2 UIKmlLuaControl
  32. ---@field list_item UIKmlLuaControl
  33. ---@field Viewport UIKmlLuaControl
  34. ---@field Text_accumulation UIKmlLuaControl
  35. ---@field Text1 UIKmlLuaControl
  36. ---@field Text_tips UIKmlLuaControl
  37. ---@field Text11 UIKmlLuaControl
  38. ---@field Imager11 UIKmlLuaControl
  39. ---@field ToggleGroup UIKmlLuaControl
  40. ---@field panel_day3 UIKmlLuaControl
  41. ---@field panel_day2 UIKmlLuaControl
  42. ---@field panel_day1 UIKmlLuaControl
  43. ---@field togText_day1 UIKmlLuaControl
  44. ---@field red1 UIKmlLuaControl
  45. ---@field togText_day2 UIKmlLuaControl
  46. ---@field red2 UIKmlLuaControl
  47. ---@field togText_day3 UIKmlLuaControl
  48. ---@field red3 UIKmlLuaControl
  49. ---@field Text3 UIKmlLuaControl
  50. ---@field ShowInfoText UIKmlLuaControl
  51. ---@field img_text4 UIKmlLuaControl
  52. ---@field img_text1 UIKmlLuaControl
  53. local KLFirstChargePanelView = {}
  54. setmetatable(KLFirstChargePanelView,UIKmlLuaViewBase)
  55. local kmlPath = 'dev/outui/FirstCharge/Panel/KLFirstCharge/KLFirstChargePanelKml'
  56. KLFirstChargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  57. ---@param parent UIKmlLuaControl
  58. function KLFirstChargePanelView:Init(parent)
  59. self:InitRoot(parent,kmlPath,KLFirstChargePanelView.content)
  60. end
  61. return KLFirstChargePanelView