123456789101112131415 |
- ---@class KLUnionReplaceItemView:UIKmlLuaViewBase
- ---@field Bg UIKmlLuaControl
- ---@field txtName UIKmlLuaControl
- ---@field txtLv UIKmlLuaControl
- local KLUnionReplaceItemView = {}
- setmetatable(KLUnionReplaceItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Union/Item/KLUnionReplace/KLUnionReplaceItemKml'
- KLUnionReplaceItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUnionReplaceItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUnionReplaceItemView.content)
- end
- return KLUnionReplaceItemView
|