在Mac上的NetBeans中使用AWT构建基本记事本

时间:2017-06-13 15:26:39

标签: java netbeans awt menubar notepad

此代码在Windows上运行良好,但在我的Macbook Air上运行不正常。为什么?没有菜单栏可见;只有文本区域在输出中可见。

image

import java.awt.*;

public class Notepad extends Frame {
    public Notepad()
    {
        setTitle("Untitled-Notepad");
        TextArea t1 = new TextArea(50,80);

        MenuBar mb = new MenuBar();
        Menu file = new Menu("File");
        MenuItem n1 = new MenuItem("New");

        file.add(n1);
        mb.add(file);
        setMenuBar(mb);

        add(t1);

        setSize(350,450);
        setVisible(true);
        setLayout(null);
    }

    public static void main(String[] args) {
        Notepad n = new Notepad();
    }
}

1 个答案:

答案 0 :(得分:1)

它出现在“系统菜单栏”中。

System ToolBar

请参阅标题栏上方“NotePad”旁边的内容。