1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- ---@class KLRechargeActivityPanelView:UIKmlLuaViewBase
- ---@field img1 UIKmlLuaControl
- ---@field TogglePanel UIKmlLuaControl
- ---@field BtnView UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field activeDataList UIKmlLuaControl
- ---@field activeToggleGroup UIKmlLuaControl
- ---@field LevelGiftPanel UIKmlLuaControl
- ---@field Bg UIKmlLuaControl
- ---@field DIY_Text_Level UIKmlLuaControl
- ---@field img_Text1 UIKmlLuaControl
- ---@field img_triggerBg UIKmlLuaControl
- ---@field img_triggerName UIKmlLuaControl
- ---@field ItemBoxPanel UIKmlLuaControl
- ---@field ItemBoxLayout UIKmlLuaControl
- ---@field ItemBoxDataList UIKmlLuaControl
- ---@field SingleGiftPanel UIKmlLuaControl
- ---@field Bg1 UIKmlLuaControl
- ---@field img4 UIKmlLuaControl
- ---@field img5 UIKmlLuaControl
- ---@field text9 UIKmlLuaControl
- ---@field SingleBuyBtn UIKmlLuaControl
- ---@field layout1 UIKmlLuaControl
- ---@field SingleBuyCount UIKmlLuaControl
- ---@field Singlezuanshi UIKmlLuaControl
- ---@field SingleGiftItems UIKmlLuaControl
- ---@field SingleGift1 UIKmlLuaControl
- ---@field SingleGift2 UIKmlLuaControl
- ---@field SingleGift3 UIKmlLuaControl
- ---@field SingleGift4 UIKmlLuaControl
- ---@field SingleGetZuanShiBtn UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field CloseButton UIKmlLuaControl
- ---@field DIY_TimePanel UIKmlLuaControl
- ---@field text11 UIKmlLuaControl
- ---@field DIY_TimeText UIKmlLuaControl
- local KLRechargeActivityPanelView = {}
- setmetatable(KLRechargeActivityPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Recharge/Panel/KLRechargeActivity/KLRechargeActivityPanelKml'
- KLRechargeActivityPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLRechargeActivityPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLRechargeActivityPanelView.content)
- end
- return KLRechargeActivityPanelView
|