1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- ---@class KLActivityComboPanelView:UIKmlLuaViewBase
- ---@field bgClose UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field bg1 UIKmlLuaControl
- ---@field comboTitle UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field togglegroup UIKmlLuaControl
- ---@field comboTitleicon UIKmlLuaControl
- ---@field levelContent UIKmlLuaControl
- ---@field levelLayout UIKmlLuaControl
- ---@field levelList 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 countTxt UIKmlLuaControl
- ---@field img63 UIKmlLuaControl
- ---@field text64 UIKmlLuaControl
- ---@field rewardList1 UIKmlLuaControl
- ---@field layout67 UIKmlLuaControl
- ---@field rewardList UIKmlLuaControl
- ---@field img7 UIKmlLuaControl
- ---@field text8 UIKmlLuaControl
- ---@field ticketBtn UIKmlLuaControl
- ---@field ticketCount UIKmlLuaControl
- ---@field ticketItem UIKmlLuaControl
- ---@field addCountBtn UIKmlLuaControl
- ---@field desBtn UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field sweepBtn UIKmlLuaControl
- ---@field enterBtn UIKmlLuaControl
- ---@field text_btnTips UIKmlLuaControl
- ---@field sweep_panel UIKmlLuaControl
- ---@field sweep_prefab UIKmlLuaControl
- ---@field ClickMask UIKmlLuaControl
- ---@field InputFieldLevel UIKmlLuaControl
- ---@field Text UIKmlLuaControl
- ---@field TextTotalPrice UIKmlLuaControl
- ---@field TotalPrice UIKmlLuaControl
- ---@field BtnBuy UIKmlLuaControl
- ---@field BtnText UIKmlLuaControl
- ---@field BtnLevelMinus UIKmlLuaControl
- ---@field BtnLevelAdd UIKmlLuaControl
- ---@field sweepCount UIKmlLuaControl
- local KLActivityComboPanelView = {}
- setmetatable(KLActivityComboPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLActivityCombo/KLActivityComboPanelKml'
- KLActivityComboPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLActivityComboPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLActivityComboPanelView.content)
- end
- return KLActivityComboPanelView
|