This example retrieves all of a container's children in an array:
// Get children
Component[] components = container.getComponents();
for (int i=0; i<components.length; i++) {
// Get the component's bounds
Rectangle bounds = components[i].getBounds();
}
This example retrieves all components individually:
// Get number of children int count = container.getComponentCount(); for (int i=0; i<count; i++) { Component c = container.getComponent(i); }
|
e572. Getting the Child Components of a Container
最新推荐文章于 2025-07-17 10:55:42 发布