1234567891011121314151617 |
- ---@class KLUICostMatItemView:UIKmlLuaViewBase
- ---@field BG UIKmlLuaControl
- ---@field Model UIKmlLuaControl
- ---@field TextName UIKmlLuaControl
- ---@field TextCount UIKmlLuaControl
- ---@field addButton UIKmlLuaControl
- local KLUICostMatItemView = {}
- setmetatable(KLUICostMatItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Common/Item/KLUICostMat/KLUICostMatItemKml'
- KLUICostMatItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUICostMatItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUICostMatItemView.content)
- end
- return KLUICostMatItemView
|