Frame1.java~14~
资源名称:Java.rar [点击查看]
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:5k
源码类别:
Java编程
开发平台:
Java
- package infomanagement;
- import java.awt.*;
- import java.awt.event.*;
- import javax.swing.*;
- import com.borland.jbcl.layout.*;
- import javax.swing.border.*;
- /**
- * <p>Title: </p>
- * <p>Description: </p>
- * <p>Copyright: Copyright (c) 2003</p>
- * <p>Company: </p>
- * @author unascribed
- * @version 1.0
- */
- public class Frame1 extends JFrame {
- private JPanel contentPane;
- private BorderLayout borderLayout1 = new BorderLayout();
- private JPanel jPanel1 = new JPanel();
- private XYLayout xYLayout1 = new XYLayout();
- private JLabel jLabel1 = new JLabel();
- private TitledBorder titledBorder1;
- private JLabel jLabel2 = new JLabel();
- private JLabel jLabel3 = new JLabel();
- private JLabel jLabel4 = new JLabel();
- private JRadioButton rdbInputScnAch = new JRadioButton();
- private JRadioButton rdbQqueryScnAch = new JRadioButton();
- private JRadioButton rdbInputArtAch = new JRadioButton();
- private JRadioButton rdbQueryArtAch = new JRadioButton();
- //Construct the frame
- public Frame1() {
- enableEvents(AWTEvent.WINDOW_EVENT_MASK);
- try {
- jbInit();
- }
- catch(Exception e) {
- e.printStackTrace();
- }
- }
- //Component initialization
- private void jbInit() throws Exception {
- //setIconImage(Toolkit.getDefaultToolkit().createImage(Frame1.class.getResource("[Your Icon]")));
- contentPane = (JPanel) this.getContentPane();
- titledBorder1 = new TitledBorder("");
- contentPane.setLayout(borderLayout1);
- this.setSize(new Dimension(399, 288));
- this.setTitle("Frame Title");
- jPanel1.setLayout(xYLayout1);
- jLabel1.setFont(new java.awt.Font("Dialog", 0, 23));
- jLabel1.setForeground(Color.green);
- jLabel1.setBorder(titledBorder1);
- jLabel1.setText(" 通用高考成绩管理系统");
- jLabel2.setBorder(BorderFactory.createEtchedBorder());
- jLabel3.setText("请选择");
- jLabel4.setBorder(BorderFactory.createEtchedBorder());
- jLabel4.setToolTipText("");
- rdbInputScnAch.setForeground(Color.red);
- rdbInputScnAch.setText("理科成绩录入");
- rdbInputScnAch.addMouseListener(new java.awt.event.MouseAdapter() {
- public void mouseClicked(MouseEvent e) {
- rdbInputScnAch_mouseClicked(e);
- }
- });
- rdbQqueryScnAch.setForeground(Color.red);
- rdbQqueryScnAch.setText("理科成绩查询");
- rdbQqueryScnAch.addMouseListener(new java.awt.event.MouseAdapter() {
- public void mouseClicked(MouseEvent e) {
- rdbQqueryScnAch_mouseClicked(e);
- }
- });
- rdbInputArtAch.setForeground(Color.red);
- rdbInputArtAch.setText("文科成绩录入");
- rdbInputArtAch.addMouseListener(new java.awt.event.MouseAdapter() {
- public void mouseClicked(MouseEvent e) {
- rdbInputArtAch_mouseClicked(e);
- }
- });
- rdbQueryArtAch.setForeground(Color.red);
- rdbQueryArtAch.setText("文科成绩查询");
- rdbQueryArtAch.addMouseListener(new java.awt.event.MouseAdapter() {
- public void mouseClicked(MouseEvent e) {
- rdbQueryArtAch_mouseClicked(e);
- }
- });
- contentPane.add(jPanel1, BorderLayout.CENTER);
- jPanel1.add(jLabel1, new XYConstraints(0, 0, 400, 47));
- jPanel1.add(jLabel2, new XYConstraints(1, 46, 398, 242));
- jPanel1.add(rdbInputScnAch, new XYConstraints(50, 130, -1, -1));
- jPanel1.add(rdbQqueryScnAch, new XYConstraints(200, 130, -1, -1));
- jPanel1.add(rdbInputArtAch, new XYConstraints(50, 200, -1, -1));
- jPanel1.add(rdbQueryArtAch, new XYConstraints(200, 200, -1, -1));
- jPanel1.add(jLabel3, new XYConstraints(3, 48, 92, 22));
- jPanel1.add(jLabel4, new XYConstraints(33, 94, 320, 165));
- }
- //Overridden so we can exit when window is closed
- protected void processWindowEvent(WindowEvent e) {
- super.processWindowEvent(e);
- if (e.getID() == WindowEvent.WINDOW_CLOSING) {
- System.exit(0);
- }
- }
- void rdbInputScnAch_mouseClicked(MouseEvent e) {
- ScienceAchievement dlg = new ScienceAchievement();
- Dimension dlgSize = dlg.getPreferredSize();
- Dimension frmSize = getSize();
- Point loc = getLocation();
- dlg.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
- dlg.setModal(true);
- dlg.pack();
- dlg.show();
- }
- void rdbQqueryScnAch_mouseClicked(MouseEvent e) {
- ScienceQuery dlg = new ScienceQuery();
- Dimension dlgSize = dlg.getPreferredSize();
- Dimension frmSize = getSize();
- Point loc = getLocation();
- dlg.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
- dlg.setModal(true);
- dlg.pack();
- dlg.show();
- }
- void rdbInputArtAch_mouseClicked(MouseEvent e) {
- ArtsAchievement dlg = new ArtsAchievement();
- Dimension dlgSize = dlg.getPreferredSize();
- Dimension frmSize = getSize();
- Point loc = getLocation();
- dlg.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
- dlg.setModal(true);
- dlg.pack();
- dlg.show();
- }
- void rdbQueryArtAch_mouseClicked(MouseEvent e) {
- ArtsQuery dlg = new ArtsQuery();
- Dimension dlgSize = dlg.getPreferredSize();
- Dimension frmSize = getSize();
- Point loc = getLocation();
- dlg.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
- dlg.setModal(true);
- dlg.pack();
- dlg.show();
- }
- }