如何使用面板将小程序/帧分成两部分并在它们之间执行事件



我想做的程序是使用面板将小程序/框架(awt(分成两部分。第一个面板包含四个按钮,分别命名椭圆、矩形、圆形和三角形。拿一个按钮询问坐标,在另一个面板上做一个图形。

请有人向我解释这个概念或工作,因为我不擅长布局并且知道用于从一个面板传达到另一个面板的方法。谢谢

我建议从布局管理器开始..如果你想让 2 个 JPanels 彼此相邻,你可以使用 GridLayout 管理器。 它需要 2 个参数,其中一个重载的构造函数需要 4 个参数。

setLayout(new GridLayout(rows, columns)); //one commonly used constructor
setLayout(new GridLayout(rows, columns, horizontalSpacePixels, verticleSpace));

GridLayout,当使用时,将重塑形状以适应最大的组件,并使网格的每个部分大小相等 - 但是当您在GridLayout中使用GridLayout时,情况并非如此(内部GridLayout可能太大而无法适应外部GridLayout放在它上面的限制。 如果我只是做

JFrame jf = new JFrame("Laying the grid out");
jf.setLayout(new GridLayout(5, 5));
JPanel[] jp = new JPanel[25];
JLabel[] jl = new JLabel[25];
for(int i = 0; i < 25; i++) {
    jp[i] = new JPanel();
    jp[i].setBackground(Color.YELLOW);
    jl[i] = new JLabel("This is label no. " + (i+1));
    jp[i].add(jl[i]);
}
//now to add all 25 components in the 5x5 grid; you simply add them, and it
//automatically positions the jpanels in the order that you place them.. left to right.
for(int i = 0; i < 25; i++)
    jf.add(jp[i]);

下面是一个示例程序,它涉及一个简单的 GridLayout,以及一个通过更改 JPanel 的颜色之一来响应按钮事件的 actionListener。

    import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Gui {
    private JPanel p2;
    private JLabel side2;
    private JFrame jf;
    public static void main(String[] args){
        new Gui();
    }
    public Gui(){
        jf = new JFrame("Holds 2 panels side by side.");
        jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        jf.setLayout(new GridLayout(1, 2));
        JPanel p1 = new JPanel();
        p2 = new JPanel();
        p1.setBackground(Color.BLACK);
        p2.setBackground(Color.BLACK);
        p1.setLayout(new BoxLayout(p1, BoxLayout.X_AXIS));
        JLabel[] space = new JLabel[20];
        for(int i = 0; i < 20; i++)
            space[i] = new JLabel(" ");
        JButton jb1 = new JButton("Button 1");
        JButton jb2 = new JButton("Button 2");
        jb1.addActionListener(new BListen());
        jb2.addActionListener(new BListen());
        p1.add(space[0]);
        p1.add(jb1);
        p1.add(space[1]);
        p1.add(jb2);
        p1.add(space[2]);
        jf.add(p1);
        side2 = new JLabel("Change the color here with the buttons there.");
        side2.setForeground(Color.GREEN);
        p2.add(side2);
        jf.add(p2);
        jf.setSize(600, 200);
        jf.setVisible(true);
    }
    private class BListen implements ActionListener {
        public void actionPerformed(ActionEvent e) {
            String buttonClicked = e.getActionCommand();
            if(buttonClicked.equals("Button 1")) {
                JOptionPane.showMessageDialog(null, "You pressed Button 1.");
                p2.setBackground(Color.BLUE);
                side2.setForeground(Color.MAGENTA);
                jf.setVisible(true);
        }
            else if(buttonClicked.equals("Button 2")) {
                JOptionPane.showMessageDialog(null, "You pressed Button 2.");
                p2.setBackground(Color.ORANGE);
                side2.setForeground(Color.DARK_GRAY);
                jf.setVisible(true);
            }
        }
    }
}

相关内容

  • 没有找到相关文章

最新更新