1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- ---@class KLActivityDetailPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field bg1 UIKmlLuaControl
- ---@field bgClose UIKmlLuaControl
- ---@field devilTitle UIKmlLuaControl
- ---@field bloodTitle UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field togglegroup UIKmlLuaControl
- ---@field devilTitleicon UIKmlLuaControl
- ---@field bloodTitleicon UIKmlLuaControl
- ---@field levelContent UIKmlLuaControl
- ---@field layout4 UIKmlLuaControl
- ---@field img45 UIKmlLuaControl
- ---@field text46 UIKmlLuaControl
- ---@field level UIKmlLuaControl
- ---@field img54 UIKmlLuaControl
- ---@field text55 UIKmlLuaControl
- ---@field defense UIKmlLuaControl
- ---@field img57 UIKmlLuaControl
- ---@field text58 UIKmlLuaControl
- ---@field openTime UIKmlLuaControl
- ---@field img60 UIKmlLuaControl
- ---@field text61 UIKmlLuaControl
- ---@field nextOpenTime UIKmlLuaControl
- ---@field openTxt UIKmlLuaControl
- ---@field img63 UIKmlLuaControl
- ---@field text64 UIKmlLuaControl
- ---@field rewardList UIKmlLuaControl
- ---@field layout67 UIKmlLuaControl
- ---@field img7 UIKmlLuaControl
- ---@field text8 UIKmlLuaControl
- ---@field ticketBtn UIKmlLuaControl
- ---@field ticketCount UIKmlLuaControl
- ---@field addCountBtn UIKmlLuaControl
- ---@field enterBtn UIKmlLuaControl
- ---@field desBtn UIKmlLuaControl
- ---@field leftcount UIKmlLuaControl
- ---@field ticketModel UIKmlLuaControl
- ---@field ticketBtn UIKmlLuaControl
- ---@field levelList UIKmlLuaControl
- ---@field ticketModel UIKmlLuaControl
- ---@field levelLayout UIKmlLuaControl
- local KLActivityDetailPanelView = {}
- setmetatable(KLActivityDetailPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLActivityDetail/KLActivityDetailPanelKml'
- KLActivityDetailPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLActivityDetailPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLActivityDetailPanelView.content)
- end
- return KLActivityDetailPanelView
|