⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 flowlayoutpanel.java

📁 Java实例入门
💻 JAVA
字号:
package layouttest;import java.awt.*;import javax.swing.*;public class FlowLayoutPanel extends JPanel {  FlowLayout flowLayout1 = new FlowLayout();  JButton jButton1 = new JButton();  JButton jButton2 = new JButton();  JButton jButton3 = new JButton();  JButton jButton4 = new JButton();  public FlowLayoutPanel() {    try {      jbInit();    }    catch(Exception ex) {      ex.printStackTrace();    }  }  void jbInit() throws Exception {    jButton1.setText("这个按钮宽度比较大");    this.setLayout(flowLayout1);    jButton2.setText("短");    jButton3.setText("长度适中");    jButton4.setText("长度适中");    this.add(jButton1, null);    this.add(jButton2, null);    this.add(jButton3, null);    this.add(jButton4, null);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -