有没有人知道是否可以更改BorderFactory.createEmptyBorder()
方法提供的空白区域的颜色。默认情况下,它总是将其设置为白色 - 我想将其设置为我的JFrame背景的任何颜色(即灰色)。
答案 0 :(得分:3)
你想要一个有颜色的空边框?空边框的意思是它不占用空间。没有空间的东西不能有颜色。你想要一个行边框吗?
答案 1 :(得分: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);
}
}
答案 2 :(得分:1)
为什么当我有一个空边框时光标会显示,但是当我使用任何其他边框类型时,光标不显示?
因为空边框是唯一不绘制的Border
。任何其他类型的边框都将在文本窗格光标上绘制。
将文本窗格放在具有背景颜色的JPanel
内部也不起作用,因为您的文本窗格将在父JPanel
之后绘制。
答案 3 :(得分:0)
设置文本字段的背景颜色并将其设置为不透明可修复此