KLPopoverPanelView.lua 556 B

123456789101112131415
  1. ---@class KLPopoverPanelView:UIKmlLuaViewBase
  2. ---@field Bg UIKmlLuaControl
  3. ---@field ScrollView UIKmlLuaControl
  4. ---@field leftdatalist UIKmlLuaControl
  5. local KLPopoverPanelView = {}
  6. setmetatable(KLPopoverPanelView,UIKmlLuaViewBase)
  7. local kmlPath = 'dev/ui/Preview/Panel/KLPopover/KLPopoverPanelKml'
  8. KLPopoverPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  9. ---@param parent UIKmlLuaControl
  10. function KLPopoverPanelView:Init(parent)
  11. self:InitRoot(parent,kmlPath,KLPopoverPanelView.content)
  12. end
  13. return KLPopoverPanelView