12345678910111213141516 |
- ---@class KLUnionElectionReplaceItemView:UIKmlLuaViewBase
- ---@field btnBg UIKmlLuaControl
- ---@field txtName UIKmlLuaControl
- ---@field txtLevel UIKmlLuaControl
- ---@field txtSupports UIKmlLuaControl
- local KLUnionElectionReplaceItemView = {}
- setmetatable(KLUnionElectionReplaceItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Union/Item/KLUnionElectionReplace/KLUnionElectionReplaceItemKml'
- KLUnionElectionReplaceItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUnionElectionReplaceItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUnionElectionReplaceItemView.content)
- end
- return KLUnionElectionReplaceItemView
|