1234567891011121314151617181920212223242526272829303132333435 |
- ---@class KLUnionElectionVotePanelView:UIKmlLuaViewBase
- ---@field btnMask UIKmlLuaControl
- ---@field Bg UIKmlLuaControl
- ---@field btnConfirm UIKmlLuaControl
- ---@field btnCancel UIKmlLuaControl
- ---@field btnClose UIKmlLuaControl
- ---@field BgCost UIKmlLuaControl
- ---@field text14 UIKmlLuaControl
- ---@field txtCost UIKmlLuaControl
- ---@field itemCost UIKmlLuaControl
- ---@field img7 UIKmlLuaControl
- ---@field BgOwn UIKmlLuaControl
- ---@field text10 UIKmlLuaControl
- ---@field txtOwn UIKmlLuaControl
- ---@field itemOwn UIKmlLuaControl
- ---@field img13 UIKmlLuaControl
- ---@field BgNum UIKmlLuaControl
- ---@field text15 UIKmlLuaControl
- ---@field txtNum UIKmlLuaControl
- ---@field img18 UIKmlLuaControl
- ---@field btnMinus UIKmlLuaControl
- ---@field btnAdd UIKmlLuaControl
- ---@field text2 UIKmlLuaControl
- ---@field imgTitle UIKmlLuaControl
- local KLUnionElectionVotePanelView = {}
- setmetatable(KLUnionElectionVotePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Union/Panel/KLUnionElectionVote/KLUnionElectionVotePanelKml'
- KLUnionElectionVotePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUnionElectionVotePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUnionElectionVotePanelView.content)
- end
- return KLUnionElectionVotePanelView
|