📄 help.java
字号:
/*
* Help.java
*
* Created on 2008年4月21日, 下午11:50
*/
package pda;
/**
*
* @author lnn
*/
public class Help extends javax.swing.JFrame {
/** Creates new form Help */
public Help() {
super("说明");
initComponents();
}
/** 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=" 生成的代码 ">//GEN-BEGIN:initComponents
private void initComponents() {
jScrollPane1 = new javax.swing.JScrollPane();
helpTextArea = new javax.swing.JTextArea();
setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));
helpTextArea.setColumns(20);
helpTextArea.setEditable(false);
helpTextArea.setRows(5);
helpTextArea.setText(" \n \u4e2a\u4eba\u6570\u5b57\u52a9\u7406\u8bf4\u660e\n\n \u6570\u636e\u6e90\u540d\uff1apda\n \u6570\u636e\u5e93\u4f4d\u7f6e\uff1a...PDA\\src\\database\\pda.mdb\n \u9ed8\u8ba4\u7528\u6237\uff1a\u7528\u6237\u540d\uff1aadmin \u5bc6\u7801\uff1a123\n\n \u7248\u6743\u6240\u6709\uff1a\u5b59\u51ef\n \u6240\u5728\u7cfb\u522b\uff1a\u8ba1\u7b97\u673a\u79d1\u5b66\u6280\u672f\u7cfb\n \u6240\u5728\u73ed\u7ea7\uff1a06\u7ea7\u672c\u79d1\u56db\u73ed\n \u5b66\u751f\u5b66\u53f7\uff1a2006110506\n \u8054\u7cfb\u65b9\u5f0f\uff1a15964071880\n \u4e2a\u4eba\u90ae\u7bb1\uff1asunkai19870613@163.com");
helpTextArea.setBorder(javax.swing.BorderFactory.createEmptyBorder(1, 1, 1, 1));
jScrollPane1.setViewportView(helpTextArea);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 392, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 268, Short.MAX_VALUE)
);
java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
setBounds((screenSize.width-400)/2, (screenSize.height-300)/2, 400, 300);
}// </editor-fold>//GEN-END:initComponents
/**
* @param args the command line arguments
*/
/*public static void main(String args[]) {
Help h=new Help();
h.setVisible(true);
}*/
// 变量声明 - 不进行修改//GEN-BEGIN:variables
private javax.swing.JTextArea helpTextArea;
private javax.swing.JScrollPane jScrollPane1;
// 变量声明结束//GEN-END:variables
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -