12345678910111213141516171819202122232425262728293031 |
- ---@class KLEveryDayGiftRechargePanelView:UIKmlLuaViewBase
- ---@field panel1 UIKmlLuaControl
- ---@field DailyPackMainBG UIKmlLuaControl
- ---@field everyDayGiftTitleImg UIKmlLuaControl
- ---@field everydayTaskText UIKmlLuaControl
- ---@field TaskInfoPanel UIKmlLuaControl
- ---@field scrollview104 UIKmlLuaControl
- ---@field gridview105 UIKmlLuaControl
- ---@field taskList UIKmlLuaControl
- ---@field prefab3 UIKmlLuaControl
- ---@field prefab4 UIKmlLuaControl
- ---@field AllRewardPanel UIKmlLuaControl
- ---@field roundsNum UIKmlLuaControl
- ---@field AllRewardTitleImg UIKmlLuaControl
- ---@field FreeBtn UIKmlLuaControl
- ---@field FreeBtnRedPoint UIKmlLuaControl
- ---@field FreeGetImg UIKmlLuaControl
- ---@field allRewardScrollView UIKmlLuaControl
- ---@field gridview8 UIKmlLuaControl
- ---@field rewardShowDataList UIKmlLuaControl
- local KLEveryDayGiftRechargePanelView = {}
- setmetatable(KLEveryDayGiftRechargePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MainRecharge/Panel/KLEveryDayGiftRecharge/KLEveryDayGiftRechargePanelKml'
- KLEveryDayGiftRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLEveryDayGiftRechargePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLEveryDayGiftRechargePanelView.content)
- end
- return KLEveryDayGiftRechargePanelView
|