KLMainOperateAddRechargePanelView.lua 821 B

1234567891011121314151617
  1. ---@class KLMainOperateAddRechargePanelView: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 KLMainOperateAddRechargePanelView = {}
  9. setmetatable(KLMainOperateAddRechargePanelView,UIKmlLuaViewBase)
  10. local kmlPath = 'dev/outui/MainOperateActivity/Panel/KLMainOperateAddRecharge/KLMainOperateAddRechargePanelKml'
  11. KLMainOperateAddRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  12. ---@param parent UIKmlLuaControl
  13. function KLMainOperateAddRechargePanelView:Init(parent)
  14. self:InitRoot(parent,kmlPath,KLMainOperateAddRechargePanelView.content)
  15. end
  16. return KLMainOperateAddRechargePanelView