Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在运行时通过鼠标拖动动态创建了一些形状,现在我想删除白板上的任何选定项目。我该如何实现。目前我可以通过“removeChild()”方法删除最后一个绘制的项目,但不能删除以前的项目。请帮忙。
提前致谢。
幸运的是,我很快就得到了答案。要在运行时删除多个项目,我已经动态地为它们分配了 ID,并完成了以下操作:
parentComponent.removeChild(parent.getChildByName("itemName"));
在尝试这个之前我正在做
parentComponent.removeChild(item);
干杯!!!