1234567891011121314 |
- ---@class KLMonthCardRechargePanelView:UIKmlLuaViewBase
- ---@field clickMask UIKmlLuaControl
- ---@field prefab_webview UIKmlLuaControl
- local KLMonthCardRechargePanelView = {}
- setmetatable(KLMonthCardRechargePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/WebView/Panel/KLMonthCardRecharge/KLMonthCardRechargePanelKml'
- KLMonthCardRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMonthCardRechargePanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLMonthCardRechargePanelView.content)
- end
- return KLMonthCardRechargePanelView
|