KLUICostMatItemView.lua 627 B

1234567891011121314151617
  1. ---@class KLUICostMatItemView:UIKmlLuaViewBase
  2. ---@field BG UIKmlLuaControl
  3. ---@field Model UIKmlLuaControl
  4. ---@field TextName UIKmlLuaControl
  5. ---@field TextCount UIKmlLuaControl
  6. ---@field addButton UIKmlLuaControl
  7. local KLUICostMatItemView = {}
  8. setmetatable(KLUICostMatItemView,UIKmlLuaViewBase)
  9. local kmlPath = 'dev/ui/Common/Item/KLUICostMat/KLUICostMatItemKml'
  10. KLUICostMatItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  11. ---@param parent UIKmlLuaControl
  12. function KLUICostMatItemView:Init(parent)
  13. self:InitRoot(parent,kmlPath,KLUICostMatItemView.content)
  14. end
  15. return KLUICostMatItemView