修飾子與參數
public void show(Component invoker, int x, int y)
show() 沒有回傳值 (return value) ,第一個參數 (paramenter) 為 Component 型態 (type) 的物件 (object) ,其他兩個參數為 int 整數型態的座標。
舉例如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; public class PopupMenuDemo extends MouseAdapter { JFrame frame; JMenuItem item1, item2, item3; JPopupMenu popupmenu; public static void main(String[] args) { new PopupMenuDemo(); } public PopupMenuDemo() { frame = new JFrame( "SwingDemo" ); frame.setSize( 600 , 400 ); frame.setLayout( new GridLayout( 6 , 4 )); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.addMouseListener( this ); popupmenu = new JPopupMenu(); item1 = new JMenuItem( "one" ); item2 = new JMenuItem( "two" ); popupmenu.add(item1); popupmenu.addSeparator(); popupmenu.add(item2); item3 = new JMenuItem( "three" ); popupmenu.insert(item3, 0 ); popupmenu.remove( 1 ); popupmenu.setLabel( "demo" ); frame.add(popupmenu); frame.setVisible( true ); System.out.println( "getLabel: " + popupmenu.getLabel()); } public void mousePressed(MouseEvent e) { popupmenu.show(e.getComponent(), e.getX(), e.getY()); } } /* 《程式語言教學誌》的範例程式 檔名:PopupMenuDemo.java 功能:示範 Java 程式 作者:張凱慶 時間:西元 2012 年 9 月 */ |
此例的 PopupMenuDemo 繼承 MouseAdapter
6 | public class PopupMenuDemo extends MouseAdapter { |
我們改寫 ousePressed() ,使按下滑鼠按鍵就呼叫快顯功能表物件的 show() ,使之依滑鼠座標顯示快顯功能表
39 40 41 | public void mousePressed(MouseEvent e) { popupmenu.show(e.getComponent(), e.getX(), e.getY()); } |
編譯後執行,結果如下

中英文術語對照 | |
---|---|
類別 | class |
方法 | method |
回傳值 | return value |
型態 | type |
物件 | object |
參數 | parameter |
您可以繼續參考
Swing 元件
- ButtonGroup
- JComponent
- AbstractButton
- JButton
- JToggleButton
- JCheckBox
- JRadioButton
- JMenuItem
- JCheckBoxMenuItem
- JMenu
- JRadioButtonMenuItem
- JColorChooser
- JComboBox
- JFileChooser
- JInternalFrame
- JLabel
- JLayeredPane
- JDesktopPane
- JList
- JMenuBar
- JOptionPane
- JPanel
- JPopupMenu
- JProgressBar
- JRootPane
- JScrollBar
- JScrollPane
- JSeparator
- JSlider
- JSpinner
- JSplitPane
- JTabbedPane
- JTable
- text.JTextComponent
- JEditorPane
- JTextPane
- JTextField
- JFormattedTextField
- JPasswordField
- JTextArea
- JToolBar
- JToolTip
- JTree
- JViewport
- JDialog
- JFrame
- JWindow
相關目錄
Java API 分類導覽
Java 教材
首頁
參考資料
http://docs.oracle.com/javase/6/docs/api/javax/swing/JPopupMenu.html
沒有留言:
張貼留言