KLTopPanelView.lua 410 B

123456789101112
  1. ---@class KLTopPanelView:UIKmlLuaViewBase
  2. local KLTopPanelView = {}
  3. setmetatable(KLTopPanelView,UIKmlLuaViewBase)
  4. local kmlPath = 'dev/ui/Common/Panel/KLTop/KLTopPanelKml'
  5. KLTopPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  6. ---@param parent UIKmlLuaControl
  7. function KLTopPanelView:Init(parent)
  8. self:InitRoot(parent,kmlPath,KLTopPanelView.content)
  9. end
  10. return KLTopPanelView