12345678910111213 |
- ---@class KLLockPanelView:UIKmlLuaViewBase
- ---@field Slider UIKmlLuaControl
- local KLLockPanelView = {}
- setmetatable(KLLockPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Setting/Panel/KLLock/KLLockPanelKml'
- KLLockPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLLockPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLLockPanelView.content)
- end
- return KLLockPanelView
|