KLUserCenterPanelView.lua 550 B

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