123456789101112 |
- ---@class KLTopPanelView:UIKmlLuaViewBase
- local KLTopPanelView = {}
- setmetatable(KLTopPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Common/Panel/KLTop/KLTopPanelKml'
- KLTopPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLTopPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLTopPanelView.content)
- end
- return KLTopPanelView
|