KLPlayVideoPanelView.lua 702 B

12345678910111213141516171819
  1. ---@class KLPlayVideoPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field mask UIKmlLuaControl
  4. ---@field Close UIKmlLuaControl
  5. ---@field text3 UIKmlLuaControl
  6. ---@field image UIKmlLuaControl
  7. ---@field VideoPlayer UIKmlLuaControl
  8. ---@field btn_open UIKmlLuaControl
  9. local KLPlayVideoPanelView = {}
  10. setmetatable(KLPlayVideoPanelView,UIKmlLuaViewBase)
  11. local kmlPath = 'dev/outui/Recharge/Panel/KLPlayVideo/KLPlayVideoPanelKml'
  12. KLPlayVideoPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  13. ---@param parent UIKmlLuaControl
  14. function KLPlayVideoPanelView:Init(parent)
  15. self:InitRoot(parent,kmlPath,KLPlayVideoPanelView.content)
  16. end
  17. return KLPlayVideoPanelView