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

📄 jvideoplayerframe_aboutbox.java~5~

📁 这是本人刚刚得到的JBuilder9软件开发项目实践的源码
💻 JAVA~5~
字号:
package jvideosystem;import java.awt.*;import java.awt.event.*;import javax.swing.*;import javax.swing.border.*;/** * <p>Title: 视频播放系统</p> * <p>Description: JBuilder实现视频播放</p> * <p>Copyright: Copyright (c) 2003</p> * <p>Company: 格瑞特公司</p> * @author 蔡斌 * @version 1.0 */public class JVideoPlayerFrame_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 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 = "\u89c6\u9891\u64ad\u653e\u7cfb\u7edf";  String version = "1.0";  String copyright = "Copyright (c) 2003";  String comments = "JBuilder\u5b9e\u73b0\u89c6\u9891\u64ad\u653e";  public JVideoPlayerFrame_AboutBox(Frame parent) {    super(parent);    enableEvents(AWTEvent.WINDOW_EVENT_MASK);    try {      jbInit();    }    catch(Exception e) {      e.printStackTrace();    }  }  //Component initialization  private void jbInit() throws Exception  {    image1 = new ImageIcon(jvideosystem.JVideoPlayerFrame.class.getResource("about.png"));    imageLabel.setIcon(image1);    this.setTitle("关于视频播放系统 v1.0");    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.setFont(new java.awt.Font("Dialog", 1, 15));    label1.setText("视频播放系统 v1.0");    label3.setText("格瑞特 Copyright (c) 2003");    label4.setText(comments);    insetsPanel3.setLayout(gridLayout1);    insetsPanel3.setBorder(BorderFactory.createEmptyBorder(10, 60, 10, 10));    button1.setActionCommand("Ok");    button1.setText("确定");    button1.addActionListener(new JVideoPlayerFrame_AboutBox_button1_actionAdapter(this));    button1.addActionListener(this);    panel1.setOpaque(true);    panel1.setPreferredSize(new Dimension(381, 147));    insetsPanel2.add(imageLabel, null);    panel2.add(insetsPanel2, BorderLayout.WEST);    this.getContentPane().add(panel1, null);    insetsPanel3.add(label1, 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);  }  //Overridden so we can exit when window is closed  protected void processWindowEvent(WindowEvent e) {    if (e.getID() == WindowEvent.WINDOW_CLOSING) {      cancel();    }    super.processWindowEvent(e);  }  //Close the dialog  void cancel() {    dispose();  }  //Close the dialog on a button event  public void actionPerformed(ActionEvent e) {    if (e.getSource() == button1) {      cancel();    }  }  void button1_actionPerformed(ActionEvent e) {  }}class JVideoPlayerFrame_AboutBox_button1_actionAdapter implements java.awt.event.ActionListener {  JVideoPlayerFrame_AboutBox adaptee;  JVideoPlayerFrame_AboutBox_button1_actionAdapter(JVideoPlayerFrame_AboutBox adaptee) {    this.adaptee = adaptee;  }  public void actionPerformed(ActionEvent e) {    adaptee.button1_actionPerformed(e);  }}

⌨️ 快捷键说明

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