123456789101112 |
- ---@class KLRenderPanelView:UIKmlLuaViewBase
- local KLRenderPanelView = {}
- setmetatable(KLRenderPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/AppearGroup/Panel/KLRender/KLRenderPanelKml'
- KLRenderPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLRenderPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLRenderPanelView.content)
- end
- return KLRenderPanelView
|