123456789101112131415161718192021 |
- ---@class KLNoobPlayerPackPanelView:UIKmlLuaViewBase
- ---@field panel1 UIKmlLuaControl
- ---@field PackMainBG UIKmlLuaControl
- ---@field PackTitleImg UIKmlLuaControl
- ---@field PackInfo UIKmlLuaControl
- ---@field PackInfoScrollView UIKmlLuaControl
- ---@field gridview2 UIKmlLuaControl
- ---@field PackItemList UIKmlLuaControl
- ---@field TimeRemainingText UIKmlLuaControl
- ---@field txt_showTime UIKmlLuaControl
- local KLNoobPlayerPackPanelView = {}
- setmetatable(KLNoobPlayerPackPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MainRecharge/Panel/KLNoobPlayerPack/KLNoobPlayerPackPanelKml'
- KLNoobPlayerPackPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLNoobPlayerPackPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLNoobPlayerPackPanelView.content)
- end
- return KLNoobPlayerPackPanelView
|