何时设置 GUI 组件的位置、宽度和高度?如果正在使用布局管理器,这些字段如何影响?我有一个包含两个滑块的面板,我想在其中一个旁边绘制一个矩形。这是我的代码,用于初始化我的 GUI 组件并在其中一个滑块旁边用矩形绘制它们:
public PhotoSliders()
{
initComponents(); //from the netbeans GUI designer
}
public void setColorRect() //initialize a colored rectangle
{
colorRect = new ColorRect(Color.RED, (double)(emSlider.getX())/getWidth(), (double)(emSlider.getY())/getHeight());
}
public void paintComponent(Graphics g)
{
super.paintComponent(g);
colorRect.paintColorRect(g, getWidth(), getHeight());
}
我发现 emSlider.getX()、emSlider.getY()、getWidth() 和 getHeight() 最初都是 0。当我调整我的小程序的大小并因此导致它被重新绘制时,这些字段不再为零。为什么它们最初都是零?这是我的小程序类中的代码:
public void init() //initialize the Applet Class
{
setLayout(new BorderLayout());
slidersPanel = new PhotoSliders();
JPanel north = new JPanel(new BorderLayout());
north.add(slidersPanel, BorderLayout.WEST);
add(north, BorderLayout.NORTH);
add(photoEffect, BorderLayout.CENTER);
slidersPanel.setColorRect();
}
public void paint(Graphics g) //paint the photoEffect
{
super.paint(g);
slidersPanel.setColorRect();
}