如何获取JFrame中的所有元素?
2022-09-02 05:18:58
我有这个代码来获取我需要的所有元素并进行一些处理。问题是我需要指定每个面板,我必须获取其中的元素。
for (Component c : panCrawling.getComponents()) {
//processing
}
for (Component c : panFile.getComponents()) {
//processing
}
for (Component c : panThread.getComponents()) {
//processing
}
for (Component c : panLog.getComponents()) {
//processing
}
//continue to all panels
我想做这样的事情,并获取所有元素,而无需指定所有面板名称。我是怎么做到的。下面的代码未获取所有元素。
for (Component c : this.getComponents()) {
//processing
}