1234567891011121314151617181920 |
- ---@class KLRechargePanelView:UIKmlLuaViewBase
- ---@field Panel UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field scrollview UIKmlLuaControl
- ---@field gridview11 UIKmlLuaControl
- ---@field RechargeGoodsList UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- ---@field refreshTime UIKmlLuaControl
- local KLRechargePanelView = {}
- setmetatable(KLRechargePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/ShopMain/Panel/KLRecharge/KLRechargePanelKml'
- KLRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLRechargePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLRechargePanelView.content)
- end
- return KLRechargePanelView
|