123456789101112131415161718192021 |
- ---@class KLWeekDailyPackRechargePanelView:UIKmlLuaViewBase
- ---@field panel1 UIKmlLuaControl
- ---@field DailyPackMainBG UIKmlLuaControl
- ---@field DailyPackTitleImg UIKmlLuaControl
- ---@field DailyPackInfo UIKmlLuaControl
- ---@field DailyPackInfoScrollView UIKmlLuaControl
- ---@field gridview2 UIKmlLuaControl
- ---@field DailyPackItemList UIKmlLuaControl
- ---@field TimeRemainingText UIKmlLuaControl
- ---@field txt_showTime UIKmlLuaControl
- local KLWeekDailyPackRechargePanelView = {}
- setmetatable(KLWeekDailyPackRechargePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MainRecharge/Panel/KLWeekDailyPackRecharge/KLWeekDailyPackRechargePanelKml'
- KLWeekDailyPackRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLWeekDailyPackRechargePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLWeekDailyPackRechargePanelView.content)
- end
- return KLWeekDailyPackRechargePanelView
|