1234567891011121314151617181920 |
- ---@class KLOpenServiceGiftItemView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field SpLight UIKmlLuaControl
- ---@field ItemIcon UIKmlLuaControl
- ---@field ItemTex UIKmlLuaControl
- ---@field text5 UIKmlLuaControl
- ---@field redDot UIKmlLuaControl
- ---@field bg_Btn UIKmlLuaControl
- ---@field get UIKmlLuaControl
- local KLOpenServiceGiftItemView = {}
- setmetatable(KLOpenServiceGiftItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/OpenService/Item/KLOpenServiceGift/KLOpenServiceGiftItemKml'
- KLOpenServiceGiftItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLOpenServiceGiftItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLOpenServiceGiftItemView.content)
- end
- return KLOpenServiceGiftItemView
|