12345678910111213141516 |
- ---@class KLOpenServiceGiftInnerPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field DIY_giftScrollView UIKmlLuaControl
- ---@field giftDataList UIKmlLuaControl
- ---@field SpTips UIKmlLuaControl
- local KLOpenServiceGiftInnerPanelView = {}
- setmetatable(KLOpenServiceGiftInnerPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/OpenService/Panel/KLOpenServiceGiftInner/KLOpenServiceGiftInnerPanelKml'
- KLOpenServiceGiftInnerPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLOpenServiceGiftInnerPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLOpenServiceGiftInnerPanelView.content)
- end
- return KLOpenServiceGiftInnerPanelView
|