有谁知道是否可以更改该BorderFactory.createEmptyBorder()
方法提供的空白空间的颜色。默认情况下,它总是将其设置为白色 - 我想将其设置为我的 JFrame 背景的任何颜色(即灰色)。
问问题
3661 次
4 回答
3
你想要一个有颜色的空边框吗?空边框的要点是它不占用空间。没有空间的东西不可能有颜色。你想要一个线条边框吗?
于 2013-01-15T16:35:56.917 回答
2
将空边框和颜色(或“非”用于纯色)应用于添加到内容窗格的面板。
import java.awt.*;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
public class PlainColoredEmptyBorder {
public static void main(String[] args) {
Runnable r = new Runnable() {
@Override
public void run() {
// the GUI as seen by the user (without frame)
JPanel gui = new JPanel(new BorderLayout());
gui.setBorder(new EmptyBorder(20, 30, 20, 30));
JTree tree = new JTree();
tree.setVisibleRowCount(4);
gui.add(new JScrollPane(tree));
gui.setBackground(Color.BLUE);
JFrame f = new JFrame("Demo");
f.add(gui);
// Ensures JVM closes after frame(s) closed and
// all non-daemon threads are finished
f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
// See http://stackoverflow.com/a/7143398/418556 for demo.
f.setLocationByPlatform(true);
// ensures the frame is the minimum size it needs to be
// in order display the components within it
f.pack();
// should be done last, to avoid flickering, moving,
// resizing artifacts.
f.setVisible(true);
}
};
// Swing GUIs should be created and updated on the EDT
// http://docs.oracle.com/javase/tutorial/uiswing/concurrency/initial.html
SwingUtilities.invokeLater(r);
}
}
于 2013-01-16T01:48:26.777 回答
1
为什么当我有一个空边框时光标会出现,而当我使用任何其他边框类型时却没有?
因为空边框是唯一Border
不绘制的。任何其他类型的边框都将绘制在文本窗格光标上。
将您的文本窗格放在JPanel
具有背景颜色的 a 中也不起作用,因为您的文本窗格将在 parent 之后绘制JPanel
。
于 2013-01-15T19:40:19.523 回答
0
设置文本字段的背景颜色并将其设置为不透明可以解决此问题
于 2013-01-16T10:47:26.530 回答