12345678910111213141516171819 |
- ---@class KLPlayVideoPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field mask UIKmlLuaControl
- ---@field Close UIKmlLuaControl
- ---@field text3 UIKmlLuaControl
- ---@field image UIKmlLuaControl
- ---@field VideoPlayer UIKmlLuaControl
- ---@field btn_open UIKmlLuaControl
- local KLPlayVideoPanelView = {}
- setmetatable(KLPlayVideoPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Recharge/Panel/KLPlayVideo/KLPlayVideoPanelKml'
- KLPlayVideoPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLPlayVideoPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLPlayVideoPanelView.content)
- end
- return KLPlayVideoPanelView
|