123456789101112131415161718192021 |
- ---@class KLUIRechargeDirectGiftItemView:UIKmlLuaViewBase
- ---@field panel1 UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field nameText UIKmlLuaControl
- ---@field items UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field itemsDataList UIKmlLuaControl
- ---@field buyBtn UIKmlLuaControl
- ---@field priceText UIKmlLuaControl
- ---@field countText UIKmlLuaControl
- ---@field redDot UIKmlLuaControl
- local KLUIRechargeDirectGiftItemView = {}
- setmetatable(KLUIRechargeDirectGiftItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/RunActive_RechargeDirect/Item/KLUIRechargeDirectGift/KLUIRechargeDirectGiftItemKml'
- KLUIRechargeDirectGiftItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIRechargeDirectGiftItemView:Init(parent)
- self:InitRoot(parent,kmlPath,KLUIRechargeDirectGiftItemView.content)
- end
- return KLUIRechargeDirectGiftItemView
|