Flex 中可调整大小的组件

发布于 2024-12-12 17:57:06 字数 388 浏览 2 评论 0原文

我在 Flex 中使用这个可调整大小的组件,具有“手柄”来拖动它们并调整它们的大小。

http://www.rogue-development.com/blog2/2007/05/first-look-at-a-flex-component-to-resize-on-screen-objects/

但是附加功能不存在删除所选组件

我尝试过,但不知道如何删除选定的组件?

谁能帮助我吗?

I am using this resizable components in flex having "handles" to drag and resize them.

http://www.rogue-development.com/blog2/2007/05/first-look-at-a-flex-component-to-resize-on-screen-objects/

But additional feature of deleting the selected components is not present.

I tried but didn't know how to delete the selected components ?

Can anyone help me ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静水深流 2024-12-19 17:57:06

您可以使用 removeChild() 方法,或者如果您正在处理 Spark 组件,则 removeElement()方法。从概念上讲是这样的:

myParentContainer.removeChild(myChild);
// remove event listeenrs for mychild;
myChild = null;

You can remove a component from it's parent using the removeChild() method, or if you're dealing with a spark component the removeElement() method. Conceptually like this:

myParentContainer.removeChild(myChild);
// remove event listeenrs for mychild;
myChild = null;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文