?? student.java
字號:
/*
* 登錄.java
*
* Created on 2007年11月7日, 下午2:57
*/
package javaapplication1;
import java.awt.Component;
/**
*
* @author mis05
*/
public class Student extends javax.swing.JFrame {
/** Creates new form 登錄 */
public Student() {
Stupassword password=new Stupassword();
Stuinformation information=new Stuinformation();
Stuexit exit=new Stuexit();
Stusearch search=new Stusearch();
Stuclass ke=new Stuclass();
initComponents();
jTabbedPane1.addTab("退出系統(tǒng)",exit);
jTabbedPane1.addTab("修改密碼",password);
jTabbedPane1.addTab("學(xué)籍信息",information);
jTabbedPane1.addTab("查詢個(gè)人成績",search);
jTabbedPane1.addTab("學(xué)生選課",ke);
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
// <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
private void initComponents() {
jTabbedPane1 = new javax.swing.JTabbedPane();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jTabbedPane1.setName("\u6559\u5b66\u7ba1\u7406\u7cfb\u7edf");
org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(org.jdesktop.layout.GroupLayout.TRAILING, jTabbedPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 400, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(org.jdesktop.layout.GroupLayout.TRAILING, jTabbedPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 300, Short.MAX_VALUE)
);
pack();
}// </editor-fold>//GEN-END:initComponents
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Student().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JTabbedPane jTabbedPane1;
// End of variables declaration//GEN-END:variables
private Component secret;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -