12345678910111213141516171819 |
- ---@class KLUILifetimeGiftPanelView:UIKmlLuaViewBase
- ---@field root UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field mask UIKmlLuaControl
- ---@field img4 UIKmlLuaControl
- ---@field scrollview2 UIKmlLuaControl
- ---@field layout3 UIKmlLuaControl
- ---@field RewardContent UIKmlLuaControl
- local KLUILifetimeGiftPanelView = {}
- setmetatable(KLUILifetimeGiftPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/LifetimeGift/Panel/KLUILifetimeGift/KLUILifetimeGiftPanelKml'
- KLUILifetimeGiftPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUILifetimeGiftPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUILifetimeGiftPanelView.content)
- end
- return KLUILifetimeGiftPanelView
|