KLUIRechargeMonthlycardPanelView.lua 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. ---@class KLUIRechargeMonthlycardPanelView:UIKmlLuaViewBase
  2. ---@field UIRechargeMonthlycardPanel UIKmlLuaControl
  3. ---@field card_bg UIKmlLuaControl
  4. ---@field white UIKmlLuaControl
  5. ---@field whiteTxt UIKmlLuaControl
  6. ---@field MonthCardBtn UIKmlLuaControl
  7. ---@field MonthBtnText UIKmlLuaControl
  8. ---@field whiteRed UIKmlLuaControl
  9. ---@field show UIKmlLuaControl
  10. ---@field showtext UIKmlLuaControl
  11. ---@field showtext2 UIKmlLuaControl
  12. ---@field RewardScrollView UIKmlLuaControl
  13. ---@field Viewport UIKmlLuaControl
  14. ---@field RewardContent UIKmlLuaControl
  15. ---@field NormalRewardViewList UIKmlLuaControl
  16. ---@field NormalLayout UIKmlLuaControl
  17. ---@field DataNormalRewardList UIKmlLuaControl
  18. ---@field TipText UIKmlLuaControl
  19. ---@field delete UIKmlLuaControl
  20. ---@field EndTimeText UIKmlLuaControl
  21. ---@field whiteSelectImg UIKmlLuaControl
  22. ---@field whiteCardExpText UIKmlLuaControl
  23. ---@field whiteCardHookText UIKmlLuaControl
  24. ---@field whiteCoinTxt UIKmlLuaControl
  25. ---@field whiteCoinItem UIKmlLuaControl
  26. ---@field gold UIKmlLuaControl
  27. ---@field goldTxt UIKmlLuaControl
  28. ---@field GoldMonthCardBtn UIKmlLuaControl
  29. ---@field GoldMonthBtnText UIKmlLuaControl
  30. ---@field goldRed UIKmlLuaControl
  31. ---@field show_1 UIKmlLuaControl
  32. ---@field Goldshowtext UIKmlLuaControl
  33. ---@field showtext2_1 UIKmlLuaControl
  34. ---@field RewardGoldScrollView UIKmlLuaControl
  35. ---@field Viewport_1 UIKmlLuaControl
  36. ---@field Gold_RewardContent UIKmlLuaControl
  37. ---@field GoldRewardViewList UIKmlLuaControl
  38. ---@field layout3 UIKmlLuaControl
  39. ---@field DataGoldRewardList UIKmlLuaControl
  40. ---@field GoldTipText UIKmlLuaControl
  41. ---@field delete_1 UIKmlLuaControl
  42. ---@field GoldEndTimeText UIKmlLuaControl
  43. ---@field goldSelectImg UIKmlLuaControl
  44. ---@field goldCardExpText UIKmlLuaControl
  45. ---@field goldCardHookText UIKmlLuaControl
  46. ---@field goldCoinTxt UIKmlLuaControl
  47. ---@field goldCoinItem UIKmlLuaControl
  48. ---@field bg_bottom UIKmlLuaControl
  49. ---@field AllCardBtn UIKmlLuaControl
  50. ---@field AllCardBtnText UIKmlLuaControl
  51. local KLUIRechargeMonthlycardPanelView = {}
  52. setmetatable(KLUIRechargeMonthlycardPanelView,UIKmlLuaViewBase)
  53. local kmlPath = 'dev/outui/RechargeMonthlycard/Panel/KLUIRechargeMonthlycard/KLUIRechargeMonthlycardPanelKml'
  54. KLUIRechargeMonthlycardPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  55. ---@param parent UIKmlLuaControl
  56. function KLUIRechargeMonthlycardPanelView:Init(parent)
  57. self:InitRoot(parent,kmlPath,KLUIRechargeMonthlycardPanelView.content)
  58. end
  59. return KLUIRechargeMonthlycardPanelView