KLDailyAddRechargePanelView.lua 765 B

123456789101112131415161718
  1. ---@class KLDailyAddRechargePanelView:UIKmlLuaViewBase
  2. ---@field img_bg UIKmlLuaControl
  3. ---@field img_title UIKmlLuaControl
  4. ---@field txt_showTime UIKmlLuaControl
  5. ---@field scrollview_bg UIKmlLuaControl
  6. ---@field layout4 UIKmlLuaControl
  7. ---@field showItemInfoList UIKmlLuaControl
  8. local KLDailyAddRechargePanelView = {}
  9. setmetatable(KLDailyAddRechargePanelView,UIKmlLuaViewBase)
  10. local kmlPath = 'dev/outui/MainRecharge/Panel/KLDailyAddRecharge/KLDailyAddRechargePanelKml'
  11. KLDailyAddRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  12. ---@param parent UIKmlLuaControl
  13. function KLDailyAddRechargePanelView:Init(parent)
  14. self:InitRoot(parent,kmlPath,KLDailyAddRechargePanelView.content)
  15. end
  16. return KLDailyAddRechargePanelView