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