authordialog.java~1~

来自「银行管理系统,根据实习的要求以及参考现实中的银行数据库系统」· JAVA~1~ 代码 · 共 47 行

JAVA~1~
47
字号
package bank;

import javax.swing.JDialog;
import javax.swing.JLabel;
import java.awt.BorderLayout;
import com.borland.jbcl.layout.XYLayout;
import com.borland.jbcl.layout.*;
import java.awt.Font;
import java.awt.Color;
import java.awt.SystemColor;

public class AuthorDialog extends JDialog
{
  public AuthorDialog() {
    try {
      jbInit();
    }
    catch (Exception ex) {
      ex.printStackTrace();
    }
  }

  private void jbInit() throws Exception {
    this.getContentPane().setLayout(xYLayout1);
    jLabel1.setFont(new java.awt.Font("华文细黑", Font.PLAIN, 20));
    jLabel1.setForeground(Color.blue);
    jLabel1.setText("作者:陈秀珠");
    this.getContentPane().add(jLabel1, new XYConstraints(65, 56, 224, 73));
    jLabel3.setFont(new java.awt.Font("宋体", Font.PLAIN, 16));
    jLabel3.setForeground(Color.orange);
    jLabel3.setText("2006/12/15");
    jLabel2.setFont(new java.awt.Font("宋体", Font.PLAIN, 18));
    jLabel2.setForeground(SystemColor.desktop);
    jLabel2.setText("联系方式:chenxiuzhueva@126.com");
    this.getContentPane().setBackground(new Color(73, 0, 0));
    this.getContentPane().add(jLabel2, new XYConstraints(64, 146, 289, 68));
    this.getContentPane().add(jLabel3, new XYConstraints(304, 247, 87, 44));

  }

  XYLayout xYLayout1 = new XYLayout();
  JLabel jLabel1 = new JLabel();
  JLabel jLabel2 = new JLabel();
  JLabel jLabel3 = new JLabel();

}

⌨️ 快捷键说明

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