---@class KLUIModelItemPanelView:UIKmlLuaViewBase ---@field UIModelItemTemplate UIKmlLuaControl ---@field Image UIKmlLuaControl ---@field ImageCareer UIKmlLuaControl ---@field DeleteBtn UIKmlLuaControl ---@field Name UIKmlLuaControl ---@field Level UIKmlLuaControl ---@field ModelBtn UIKmlLuaControl local KLUIModelItemPanelView = {} setmetatable(KLUIModelItemPanelView,UIKmlLuaViewBase) local kmlPath = 'dev/ui/CreateRole/Panel/KLUIModel/KLUIModelItemPanelKml' KLUIModelItemPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt') ---@param parent UIKmlLuaControl function KLUIModelItemPanelView:Init(parent) self:InitRoot(parent,kmlPath, KLUIModelItemPanelView.content) end return KLUIModelItemPanelView