123456789101112131415161718192021222324 |
- ---@class KLUIRechargeDirectPanelView:UIKmlLuaViewBase
- ---@field panel1 UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field scrollview1 UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field giftDataList UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- ---@field text3 UIKmlLuaControl
- ---@field refreshTime UIKmlLuaControl
- ---@field buyAllBtn UIKmlLuaControl
- ---@field priceText UIKmlLuaControl
- ---@field oldText UIKmlLuaControl
- ---@field text7 UIKmlLuaControl
- ---@field text6 UIKmlLuaControl
- local KLUIRechargeDirectPanelView = {}
- setmetatable(KLUIRechargeDirectPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/RunActive_RechargeDirect/Panel/KLUIRechargeDirect/KLUIRechargeDirectPanelKml'
- KLUIRechargeDirectPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIRechargeDirectPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLUIRechargeDirectPanelView.content)
- end
- return KLUIRechargeDirectPanelView
|