Đang chuẩn bị liên kết để tải về tài liệu:
Lập trình Java cơ bản : GUI nâng cao part 6
Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Tham khảo tài liệu 'lập trình java cơ bản : gui nâng cao part 6', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Ví dụ về Frame Menu và Dialog 31 Ví dụ về Frame Menu và Dialog import java.awt. import java.awt.event. public class DemoFrame3 public static void main String args MyFrame myFrame new MyFrame Example on my frame myFrame.setSize 500 400 myFrame.setVisible true myFrame.addWindowListener new WindowAdapter public void windowClosing WindowEvent e System.exit 0 Ví dụ về Frame Menu và Dialog class MyFrame extends Frame implements ActionListener private MenuBar menuBar private Menu menu private MenuItem circleItem rectItem public MyFrame String title super title menuBar new MenuBar setMenuBar menuBar menu new Menu Draw menuBar.add menu circleItem new MenuItem Circle rectItem new MenuItem Rectangle menu.add circleItem menu.add rectItem circleItem.addActionListener this rectItem.addActionListener this