如何使用按钮awt /关闭窗口?

时间:2017-11-18 18:32:45

标签: java button fonts awt textarea

晚上好! 我有理解的问题,如何使用按钮的实现(awt) 如何在每次点击时增加回答字体,而不仅仅是一次? 附:我如何才能在我的框架(300x300)的边框中实现textArea,并在南方有一个buttonPanel的位置?

    public class GUI extends Frame {

    public GUI() throws HeadlessException {
        Frame frame = new Frame();
        frame.setVisible(true);
        frame.setTitle("Test window");
        frame.setSize(300, 300);

        frame.addWindowListener(new WindowAdapter() {
            @Override
            public void windowClosing(WindowEvent e) {
                //System.exit(0);
                frame.dispose();
            }
        });

        String fontName = "Arial";
        int fontStyle = 10;
        int fontSize = 12;

        Font font = new Font(fontName, fontStyle, fontSize);
        Panel mainPanel = new Panel();
        Panel textPlacePanel = new Panel();
        Panel buttonPlacePanel = new Panel();
        Button increaseButton = new Button("Increase");


        Button decreaseButton = new Button("Decrease");
        Label label = new Label("Font size");
        TextArea textArea = new TextArea();
        textArea.setFont(font);

        frame.add(mainPanel,BorderLayout.CENTER);
        frame.add(buttonPlacePanel,BorderLayout.SOUTH);
        frame.add(textPlacePanel,BorderLayout.CENTER);

        buttonPlacePanel.add(label);
        buttonPlacePanel.add(increaseButton);
        buttonPlacePanel.add(decreaseButton);
        textPlacePanel.add(textArea);

        increaseButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                int i = font.getSize();
                Font font = new Font(fontName,fontStyle,++i);
                textArea.setFont(font);
            }
        });
        decreaseButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                int i = font.getSize();
                Font font = new Font(fontName,fontStyle,--i);
                textArea.setFont(font);
            }
        });

    }
    public static void main(String[] args) {
        GUI gui = new GUI();
    }
}

1 个答案:

答案 0 :(得分:1)

  

如何在每次点击时增加答案等字体

所以,你的问题就在这里......

int i = font.getSize();
Font font = new Font(fontName, fontStyle, i);

您正在使用在构造函数中创建的font实例,但随后您创建了Font的新本地实例(在ActionListener的上下文中)并应用该实例到TextArea,这意味着基本大小始终为12。

相反,请使用Font#deriveFont

public class GUI extends Frame {

    private Font font;
    // Don't use hard coded values, use the constent names, its easier
    // to read
    private int fontStyle = Font.PLAIN;
    private int fontSize = 12;

    public GUI() {
        String fontName = "Arial";
        font = new Font(fontName, fontStyle, fontSize);

        //...
        increaseButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                font.deriveFont(++fontSize);
                textArea.setFont(font);
            }
        });
        //...
  

我怎样才能在我的框架(300x300)的边框中实现textArea,并在南方有一个buttonPanel的位置?

BorderLayout只会管理添加到其管理的五个可用位置之一的最后一个组件。我不知道mainPanel正在做什么,但它有点毫无意义,所以我摆脱了它。

此外,Panel的默认布局为Flowlayout,不确定为什么要将文本区域包装在一个中,但我将布局管理器更改为更多内容有用

Font font = new Font(fontName, fontStyle, fontSize);
//Panel mainPanel = new Panel();
Panel textPlacePanel = new Panel(new BorderLayout());
Panel buttonPlacePanel = new Panel(new GridLayout(1, 3));
Button increaseButton = new Button("Increase");

Button decreaseButton = new Button("Decrease");
Label label = new Label("Font size");
TextArea textArea = new TextArea();
textArea.setFont(font);

//frame.add(mainPanel, BorderLayout.CENTER);
frame.add(buttonPlacePanel, BorderLayout.SOUTH);
frame.add(textPlacePanel, BorderLayout.CENTER);

我还会使用pack而不是setSie,但这可能需要一些额外的配置,因为AWT已经在主流使用了17年,所以我不会这样做。小心尝试并记住你可能需要做些什么来纠正。建议,考虑使用Swing或JavaFX,您将获得更好的支持