123456789101112131415 |
- ---@class KLPushGiftBtnItemView:UIKmlLuaViewBase
- ---@field GiftBtn UIKmlLuaControl
- ---@field Time UIKmlLuaControl
- ---@field BtnText UIKmlLuaControl
- local KLPushGiftBtnItemView = {}
- setmetatable(KLPushGiftBtnItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Recharge/Item/KLPushGiftBtn/KLPushGiftBtnItemKml'
- KLPushGiftBtnItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLPushGiftBtnItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLPushGiftBtnItemView.content)
- end
- return KLPushGiftBtnItemView
|