java : right click event

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-13 23:53:41

问题


on TableHeader, I try to make a right click with the mouse as follow :

tableHeader.click(MouseEvent.BUTTON3);

but this is not working, have you any idea/suggestion ?

thanks,


回答1:


  • if it is because you want to show a popupmenu then you can do it like this::

    popupMenu.show(tableHeader, 0, 0);


  • if it is because you want to get into a mouselistener like:

    class MyMouseListener implements MouseListener{
    @Override
    public void mouseReleased(MouseEvent arg0) {
        if(SwingUtilities.isRightMouseButton(arg0)){
            //my code
        }
    }
    //...
    

then you can put your code into a method and open the method

 //open the method:
 myMouseListenerReplacement();


//the method
private void myMouseListenerReplacement(){
 //My code
}


来源:https://stackoverflow.com/questions/7386771/java-right-click-event

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!