我想知道是否可以创建一个Java类,允许在Java框架中设置所有JTextField的高度,而不是手动更改。
答案 0 :(得分:2)
这取决于布局的结构。
基本上,您需要遍历框架(及其容器)的组件层级,以查找JTextField
的实例
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Container;
import java.awt.EventQueue;
import java.util.ArrayList;
import java.util.List;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
public class WalkComponentTree {
public static void main(String[] args) {
new WalkComponentTree();
}
public WalkComponentTree() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException ex) {
} catch (InstantiationException ex) {
} catch (IllegalAccessException ex) {
} catch (UnsupportedLookAndFeelException ex) {
}
JFrame frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
List<JTextField> fields = getTextFields(frame.getContentPane());
}
});
}
public List<JTextField> getTextFields(Container container) {
List<JTextField> fields = new ArrayList<JTextField>(25);
for (Component comp : container.getComponents()) {
if (comp instanceof JTextField) {
fields.add((JTextField)comp);
} else if (comp instanceof Container) {
fields.addAll(getTextFields((Container)comp));
}
}
return fields;
}
public class TestPane extends JPanel {
public TestPane() {
add(new JTextField());
}
}
}
我应该注意,像这样修改任何组件的大小可能是一个非常糟糕的主意。除了可能涉及(多个)布局管理器之外,它将显着改变UI的当前外观并且可能导致更多问题然后它的价值(例如,这将获取可编辑的组合框;))
答案 1 :(得分:0)
您可以修改外观以实现此目的:Modifying the Look and Feel