123456789101112131415161718192021222324252627282930 |
- ---@class KLDailyPackRechargePanelView:UIKmlLuaViewBase
- ---@field panel1 UIKmlLuaControl
- ---@field DailyPackMainBG UIKmlLuaControl
- ---@field DailyPackTitleImg UIKmlLuaControl
- ---@field DailyPackInfo UIKmlLuaControl
- ---@field DailyPackInfoScrollView UIKmlLuaControl
- ---@field gridview2 UIKmlLuaControl
- ---@field DailyPackItemList UIKmlLuaControl
- ---@field buyAllGift_btn UIKmlLuaControl
- ---@field originalPrice UIKmlLuaControl
- ---@field originalPriceNum UIKmlLuaControl
- ---@field allBuyText UIKmlLuaControl
- ---@field text1 UIKmlLuaControl
- ---@field selectItemPanel UIKmlLuaControl
- ---@field selectItemCloseBtn UIKmlLuaControl
- ---@field selectItemTitle UIKmlLuaControl
- ---@field selectItemOkBtn UIKmlLuaControl
- ---@field selectItemInfoGridView UIKmlLuaControl
- ---@field selectItemInfoDataList UIKmlLuaControl
- local KLDailyPackRechargePanelView = {}
- setmetatable(KLDailyPackRechargePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MainRecharge/Panel/KLDailyPackRecharge/KLDailyPackRechargePanelKml'
- KLDailyPackRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLDailyPackRechargePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLDailyPackRechargePanelView.content)
- end
- return KLDailyPackRechargePanelView
|