1234567891011121314151617181920 |
- ---@class KLUIMonthGainItemTipsPanelView:UIKmlLuaViewBase
- ---@field CloseBG UIKmlLuaControl
- ---@field bgImg UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field scrollview UIKmlLuaControl
- ---@field layout UIKmlLuaControl
- ---@field rewards UIKmlLuaControl
- ---@field showTxt UIKmlLuaControl
- local KLUIMonthGainItemTipsPanelView = {}
- setmetatable(KLUIMonthGainItemTipsPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/RechargeMonthlycard/Panel/KLUIMonthGainItemTipsPanel/KLUIMonthGainItemTipsPanelKml'
- KLUIMonthGainItemTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIMonthGainItemTipsPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIMonthGainItemTipsPanelView.content)
- end
- return KLUIMonthGainItemTipsPanelView
|