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