KLUIMonthGainItemTipsPanelView.lua 844 B

1234567891011121314151617181920
  1. ---@class KLUIMonthGainItemTipsPanelView:UIKmlLuaViewBase
  2. ---@field CloseBG UIKmlLuaControl
  3. ---@field bgImg UIKmlLuaControl
  4. ---@field title UIKmlLuaControl
  5. ---@field bg UIKmlLuaControl
  6. ---@field scrollview UIKmlLuaControl
  7. ---@field layout UIKmlLuaControl
  8. ---@field rewards UIKmlLuaControl
  9. ---@field showTxt UIKmlLuaControl
  10. local KLUIMonthGainItemTipsPanelView = {}
  11. setmetatable(KLUIMonthGainItemTipsPanelView,UIKmlLuaViewBase)
  12. local kmlPath = 'dev/outui/RechargeMonthlycard/Panel/KLUIMonthGainItemTipsPanel/KLUIMonthGainItemTipsPanelKml'
  13. KLUIMonthGainItemTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  14. ---@param parent UIKmlLuaControl
  15. function KLUIMonthGainItemTipsPanelView:Init(parent)
  16. self:InitRoot(parent,kmlPath,KLUIMonthGainItemTipsPanelView.content)
  17. end
  18. return KLUIMonthGainItemTipsPanelView