KLLockPanelView.lua 453 B

12345678910111213
  1. ---@class KLLockPanelView:UIKmlLuaViewBase
  2. ---@field Slider UIKmlLuaControl
  3. local KLLockPanelView = {}
  4. setmetatable(KLLockPanelView,UIKmlLuaViewBase)
  5. local kmlPath = 'dev/ui/Setting/Panel/KLLock/KLLockPanelKml'
  6. KLLockPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  7. ---@param parent UIKmlLuaControl
  8. function KLLockPanelView:Init(parent)
  9. self:InitRoot(parent,kmlPath,KLLockPanelView.content)
  10. end
  11. return KLLockPanelView