我想要做的是将我的组件靠近我的应用程序的右侧。第二种选择是将其放在指定的 x,y 坐标中。但是我试过setBounds()
setLocation()
了add(component, BorderLayout.LINE_END)
。没有什么对我有用。我的代码有什么问题?
public class MapaSwiata extends JPanel implements ActionListener {
private BufferedImage mapa;
private File imageFile;
public MapaSwiata(){
super();
imageFile = new File("C:\\Users\\Katie\\Documents\\Eclipse\\Samolot\\src\\Pics\\img_mapa.jpg");
try {
mapa = ImageIO.read(imageFile);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
JOutlookBar outlookBar = new JOutlookBar();
outlookBar.addBar( "Pogoda", getDummyPanel("One"));
outlookBar.addBar( "Informacje o locie", getDummyPanel("Two" ));
outlookBar.addBar( "Rozkład Lotow", getDummyPanel( "Three" ) );
outlookBar.setVisibleBar( 2 );
add(outlookBar, BorderLayout.LINE_END);
}
public static JPanel getDummyPanel( String name )
{
JPanel panel = new JPanel( new BorderLayout() );
panel.add( new JLabel( name, JLabel.CENTER ) );
return panel;
}
@Override
public void actionPerformed(ActionEvent arg0) {
// TODO Auto-generated method stub
}
@Override
public void paintComponent(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
g2d.drawImage(mapa, 0, 0, getWidth()-300, getHeight()-150, null);
}
}
我还尝试放入一个JButton
或其他东西。一切总是出现在应用程序的顶部中心。对不起变量的波兰名称。
提前致谢