FlowLayoutDemo.java
上传用户:szfcled
上传日期:2022-06-12
资源大小:236k
文件大小:1k
源码类别:

文件格式

开发平台:

Java

  1. import java.awt.*;
  2. import javax.swing.*;
  3. public class FlowLayoutDemo {
  4. private JFrame frame;
  5. private JButton button1,button2,button3;
  6. public static void main(String args[]) {
  7. FlowLayoutDemo that = new FlowLayoutDemo ();
  8. that.go();
  9. }
  10. public void go() {
  11. frame = new JFrame("Flow Layout");
  12. Container contentPane = frame.getContentPane();
  13. //为内容窗格设置FlowLayout布局管理器
  14. contentPane.setLayout(new FlowLayout()); 
  15. button1 = new JButton("图像增强");
  16. button2 = new JButton("图像恢复");
  17. button3 = new JButton("图像分割");
  18. contentPane.add(button1);
  19. contentPane.add(button2);
  20. contentPane.add(button3);
  21. frame.setSize(200,100);
  22. frame.setVisible(true);
  23. }