1

当用户在我的应用程序中右键单击表格行时,我想显示一个小的上下文菜单。我的计划是使用为此定制MouseListener的调用该方法的show()方法。这是我的代码:

import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.JMenuItem;
import javax.swing.JPopupMenu;
import javax.swing.JTable;
import javax.swing.SwingUtilities;

class TableMouseListener extends MouseAdapter {
public void mousePressed(MouseEvent e) {
    JTable table = (JTable)(e.getSource());
    Point p = e.getPoint();
    int row = table.rowAtPoint(p);
    int col = table.columnAtPoint(p);

// The autoscroller can generate drag events outside the Tables range.
if ((col == -1) || (row == -1)) {
        return;
}

    if (SwingUtilities.isRightMouseButton(e)) {
        JPopupMenu pop = new JPopupMenu("Row "+row);
        JMenuItem menu1 = new JMenuItem("Wijzigen");
        menu1.addActionListener(new ActionListener(){
            public void actionPerformed(ActionEvent e){
                //do things, still have to make that
            }
        });
        pop.show(menu1, p.x, p.y);

    }
}
}

现在我的问题是:当我运行我的应用程序时,我右键单击表格行,它会弹出这个错误:

Exception in thread "AWT-EventQueue-0" java.awt.IllegalComponentStateException: component must be showing on the screen to determine its location
at java.awt.Component.getLocationOnScreen_NoTreeLock(Unknown Source)
at java.awt.Component.getLocationOnScreen(Unknown Source)
at javax.swing.JPopupMenu.show(Unknown Source)
at TableMouseListener.mousePressed(TableMouseListener.java:34)

这里到底出了什么问题?

4

2 回答 2

4

您正在尝试相对于 JMenuItem (menu1) 组件显示 JPopupMenu (pop)。但是在调用 popupmenu 方法的那一刻,JMenuItem 是不可见的,show并且它无法确定 JMenuItem 在屏幕上的位置(当然,它还没有显示在屏幕上)。

您必须在 popupmenushow方法中使用一些可见组件作为第一个参数(例如,添加到显示框架或任何其他实际可见组件的按钮)。您还可以传递 null 以相对于 (0;0) 坐标(屏幕左上角)放置弹出菜单。

于 2012-10-31T15:24:05.653 回答
2
  • JMenuItem不添加到JPopup,那么不JMenuItem应该isDisplayable

  • 准备这个容器,不要在飞行中创建,

  • 将整个弹出容器创建为局部变量或从类、void 等返回

    a)JMenuItems也准备

    b) override maybeShowPopup,然后你可以管理任何东西(必须在 EDT 上完成)

  • 其余重要方法

于 2012-10-31T16:19:42.660 回答