12345678910111213141516171819202122232425 |
- ---@class KLUILifetimeGiftPackageItemView:UIKmlLuaViewBase
- ---@field root UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field titleText UIKmlLuaControl
- ---@field FlagImg UIKmlLuaControl
- ---@field img6 UIKmlLuaControl
- ---@field DiscountText UIKmlLuaControl
- ---@field countText UIKmlLuaControl
- ---@field timeText UIKmlLuaControl
- ---@field scrollview1 UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field itemContent UIKmlLuaControl
- ---@field buyBtn UIKmlLuaControl
- ---@field redPoint UIKmlLuaControl
- local KLUILifetimeGiftPackageItemView = {}
- setmetatable(KLUILifetimeGiftPackageItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/LifetimeGift/Item/KLUILifetimeGiftPackage/KLUILifetimeGiftPackageItemKml'
- KLUILifetimeGiftPackageItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUILifetimeGiftPackageItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUILifetimeGiftPackageItemView.content)
- end
- return KLUILifetimeGiftPackageItemView
|