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

📄 mainframe_aboutbox.java

📁 完成编译器的基本功能,并且有界面,简单好用
💻 JAVA
字号:
package compiler.Frame;

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2007</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class MainFrame_AboutBox
    extends JDialog implements ActionListener {
      JPanel panel1 = new JPanel();
      JPanel panel2 = new JPanel();
      JPanel insetsPanel1 = new JPanel();
      JPanel insetsPanel2 = new JPanel();
      JPanel insetsPanel3 = new JPanel();
      JButton button1 = new JButton();
      JLabel imageLabel = new JLabel();
      JLabel label1 = new JLabel();
      JLabel label2 = new JLabel();
      JLabel label3 = new JLabel();
      JLabel label4 = new JLabel();
      ImageIcon image1 = new ImageIcon();
      BorderLayout borderLayout1 = new BorderLayout();
      BorderLayout borderLayout2 = new BorderLayout();
      FlowLayout flowLayout1 = new FlowLayout();
      GridLayout gridLayout1 = new GridLayout();
      String product = "商品库存管理系统";
      String version = "1.0";
      String copyright = "Copyright (c) 2007";
      String comments = "版权:燕山大学";

      public MainFrame_AboutBox(Frame parent) {
            super(parent);
            try {
                  setDefaultCloseOperation(DISPOSE_ON_CLOSE);
                  jbInit();
            }
            catch (Exception exception) {
                  exception.printStackTrace();
            }
      }

      public MainFrame_AboutBox() {
            this(null);
      }

      /**
       * Component initialization.
       *
       * @throws java.lang.Exception
       */
      private void jbInit() throws Exception {
            ImageIcon about = new ImageIcon(MainFrame.class.getResource(
                "/compiler/img/about.png"));
            imageLabel.setIcon(about);
            setTitle("关于软件");
            panel1.setLayout(borderLayout1);
            panel2.setLayout(borderLayout2);
            insetsPanel1.setLayout(flowLayout1);
            insetsPanel2.setLayout(flowLayout1);
            insetsPanel2.setBorder(BorderFactory.createEmptyBorder(10, 10, 10,
                10));
            gridLayout1.setRows(4);
            gridLayout1.setColumns(1);
            label1.setText(product);
            label2.setText(version);
            label3.setText(copyright);
            label4.setText(comments);
            insetsPanel3.setLayout(gridLayout1);
            insetsPanel3.setBorder(BorderFactory.createEmptyBorder(10, 60, 10,
                10));
            button1.setText("确定");
            button1.addActionListener(this);
            insetsPanel2.add(imageLabel, null);
            panel2.add(insetsPanel2, BorderLayout.WEST);
            getContentPane().add(panel1, null);
            insetsPanel3.add(label1, null);
            insetsPanel3.add(label2, null);
            insetsPanel3.add(label3, null);
            insetsPanel3.add(label4, null);
            panel2.add(insetsPanel3, BorderLayout.CENTER);
            insetsPanel1.add(button1, null);
            panel1.add(insetsPanel1, BorderLayout.SOUTH);
            panel1.add(panel2, BorderLayout.NORTH);
            setResizable(true);
      }

      /**
       * Close the dialog on a button event.
       *
       * @param actionEvent ActionEvent
       */
      public void actionPerformed(ActionEvent actionEvent) {
            if (actionEvent.getSource() == button1) {
                  dispose();
            }
      }
}

⌨️ 快捷键说明

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