[問答題] 本題中,在窗口右側(cè)添加了一個菜單,右側(cè)為一個文本域,菜單有“File”和“Help”,“File”菜單中有菜單項(xiàng)“New”、“Open”、“Save
[問答題] 本題中,在窗口右側(cè)添加了一個菜單,右側(cè)為一個文本域,菜單有“File”和“Help”,“File”菜單中有菜單項(xiàng)“New”、“Open”、“Save”、“Save as”和“Exit”,其中“Open”的快捷鍵為,“Save”的快捷鍵為,而“Help”菜單以及其中的菜單項(xiàng)“Index”和“About”設(shè)定了第一個字母為其快捷字母,通過鼠標(biāo)單擊任一個菜單項(xiàng)或通過快捷鍵以及快捷字母,都能在后臺輸入所選擇的菜單項(xiàng)。 import java.a(chǎn)wt.*; import java.a(chǎn)wt.event.*; import javax.swing.*; import javax swing.event.*; public class java2 extends JFrame { private J Menuhem savehem; private JMenuhem saveAsltem private JPopupMenu popup; private JTextArea textArea; public java2() {setTitle("java2"); setSize(400,300); addWindowListener(new WindowAdapter(){ public void windowClosing(WindowEvent e){ System.exit(0); } }); textArea=new JTextArea(0,0); Container contentPane=getContentPane(); contentPane.a(chǎn)dd(new JSerollPane(textArea). "Center"); JMenuBar menuBar=new JMenuBar(); menuBar.setLayout(new BoxLayout(menuBar. BoxLayout.Y_AXIS)); getContentPane().a(chǎn)dd(menuBar, BorderLayout. WEST):
正確答案:第1處:implements ActionListener,MenuListener 第2處:setMnemonic
參考解析:【解析】第1處是實(shí)現(xiàn)了ActionListener接口,MenuListener接口;第2處是設(shè)置Help的快捷鍵為。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。