📄 newapplet.java
字号:
/*
* NewApplet.java
*
* Created on 2007年1月14日, 下午7:33
*/
/**
*
* @author Administrator
*/
public class NewApplet extends java.applet.Applet {
/** Initializes the applet NewApplet */
public void init() {
try {
java.awt.EventQueue.invokeAndWait(new Runnable() {
public void run() {
initComponents();
}
});
} catch (Exception ex) {
ex.printStackTrace();
}
}
/** This method is called from within the init() method 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() {
menuBar1 = new java.awt.MenuBar();
hello = new java.awt.Menu();
jhgjh = new java.awt.MenuItem();
hello.setLabel("Menu");
jhgjh.setLabel("Item");
jhgjh.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jhgjhActionPerformed(evt);
}
});
hello.add(jhgjh);
menuBar1.add(hello);
}// </editor-fold>//GEN-END:initComponents
private void jhgjhActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jhgjhActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_jhgjhActionPerformed
// Variables declaration - do not modify//GEN-BEGIN:variables
private java.awt.Menu hello;
private java.awt.MenuItem jhgjh;
private java.awt.MenuBar menuBar1;
// End of variables declaration//GEN-END:variables
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -