123456789101112131415161718192021222324252627282930 |
- ---@class KLUnionElectionAndReplacePanelView:UIKmlLuaViewBase
- ---@field BackGround UIKmlLuaControl
- ---@field Bg UIKmlLuaControl
- ---@field TitleImage UIKmlLuaControl
- ---@field txtCountDown UIKmlLuaControl
- ---@field scrollTitle UIKmlLuaControl
- ---@field nameList UIKmlLuaControl
- ---@field levelList UIKmlLuaControl
- ---@field ticketList UIKmlLuaControl
- ---@field replaceLevel UIKmlLuaControl
- ---@field scrollview3 UIKmlLuaControl
- ---@field layout4 UIKmlLuaControl
- ---@field CostBg UIKmlLuaControl
- ---@field btnAdd UIKmlLuaControl
- ---@field text12 UIKmlLuaControl
- ---@field txtCost UIKmlLuaControl
- ---@field item UIKmlLuaControl
- ---@field btnJoin UIKmlLuaControl
- ---@field btnClose UIKmlLuaControl
- local KLUnionElectionAndReplacePanelView = {}
- setmetatable(KLUnionElectionAndReplacePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Union/Panel/KLUnionElectionAndReplace/KLUnionElectionAndReplacePanelKml'
- KLUnionElectionAndReplacePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUnionElectionAndReplacePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUnionElectionAndReplacePanelView.content)
- end
- return KLUnionElectionAndReplacePanelView
|