123456789101112131415161718 |
- ---@class KLDailyAddRechargePanelView:UIKmlLuaViewBase
- ---@field img_bg UIKmlLuaControl
- ---@field img_title UIKmlLuaControl
- ---@field txt_showTime UIKmlLuaControl
- ---@field scrollview_bg UIKmlLuaControl
- ---@field layout4 UIKmlLuaControl
- ---@field showItemInfoList UIKmlLuaControl
- local KLDailyAddRechargePanelView = {}
- setmetatable(KLDailyAddRechargePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MainRecharge/Panel/KLDailyAddRecharge/KLDailyAddRechargePanelKml'
- KLDailyAddRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLDailyAddRechargePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLDailyAddRechargePanelView.content)
- end
- return KLDailyAddRechargePanelView
|