防止 JPopupMenu 在点击时关闭
Prevent JPopupMenu from Closing on click
我有一个弹出菜单,但当我单击某些内容时它会关闭。
大多数情况下都可以,但有时需要点击时不关闭!
这是我正在编写的一段代码,可以帮助您重现我所拥有的内容:
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
public class Try{
public static void main(String[] args) {
JFrame frame = new JFrame("Trial");
JPopupMenu menu = new JPopupMenu();
JLabel label = new JLabel("This is a popup menu!");
menu.add(label);
frame.setSize(900, 500);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
menu.show(frame, 450, 250);
}
}
我想要的是,如果我点击框架,菜单不会关闭!
您需要设置正确的 defaultCloseOperation-
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
public class Try{
public static void main(String[] args) {
JFrame frame = new JFrame("Trial");
JPopupMenu menu = new JPopupMenu();
JLabel label = new JLabel("This is a popup menu!");
menu.add(label);
frame.setSize(900, 500);
frame.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
frame.addWindowsListener(new WindowAdapter(){
//Determine whether you should call frame.dispose or hide.
});
menu.show(frame, 450, 250);
}
}
另见 How to programmatically close a JFrame
适合工作的适合工具。
考虑一个非模态的、未修饰的 dialog(而不是 JPopupMenu
)。
这是您需要的东西吗?
import java.awt.Color;
import javax.swing.*;
public class Try{
public static void main(String[] args) {
JFrame frame = new JFrame("Trial");
JLabel label = new JLabel("This is a popup menu!");
label.setBorder(BorderFactory.createLineBorder(Color.red, 2));
frame.setSize(900, 500);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
JDialog dlg = new JDialog(frame);
dlg.add(label);
dlg.setUndecorated(true);
dlg.pack();
dlg.setLocationRelativeTo(frame);
dlg.setVisible(true);
}
}
这是我电脑上的样子。
如果单击 JFrame
,对话框仍然可见。
所以这可以通过 JPopupMenu 本身实现,不需要 JDialog。
我不得不重写 setVisible 方法并允许仅在调用 close 方法后关闭弹出窗口!
这是弹出菜单仅在 5000 毫秒后关闭的代码,而不是在单击时关闭!
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
public class Try{
public static void main(String[] args) {
JFrame frame = new JFrame("Trial");
MyPopupMenu menu = new MyPopupMenu();
JLabel label = new JLabel("This is a popup menu!");
menu.add(label);
frame.setSize(900, 500);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
menu.show(frame, 450, 250);
Timer timer = new Timer(5000, new ActionListener() {
public void actionPerformed(ActionEvent evt) {
menu.closePopup();
((Timer)evt.getSource()).stop();
}
});
timer.start();
}
}
class MyPopupMenu extends JPopupMenu{
private boolean isHideAllowed;
public MyPopupMenu(){
super();
this.isHideAllowed = false;
}
@Override
public void setVisible(boolean visibility){
if(isHideAllowed && !visibility)
super.setVisible(false);
else if(!isHideAllowed && visibility)
super.setVisible(true);
}
public void closePopup(){
this.isHideAllowed = true;
this.setVisible(false);
}
}
我有一个弹出菜单,但当我单击某些内容时它会关闭。
大多数情况下都可以,但有时需要点击时不关闭!
这是我正在编写的一段代码,可以帮助您重现我所拥有的内容:
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
public class Try{
public static void main(String[] args) {
JFrame frame = new JFrame("Trial");
JPopupMenu menu = new JPopupMenu();
JLabel label = new JLabel("This is a popup menu!");
menu.add(label);
frame.setSize(900, 500);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
menu.show(frame, 450, 250);
}
}
我想要的是,如果我点击框架,菜单不会关闭!
您需要设置正确的 defaultCloseOperation-
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
public class Try{
public static void main(String[] args) {
JFrame frame = new JFrame("Trial");
JPopupMenu menu = new JPopupMenu();
JLabel label = new JLabel("This is a popup menu!");
menu.add(label);
frame.setSize(900, 500);
frame.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
frame.addWindowsListener(new WindowAdapter(){
//Determine whether you should call frame.dispose or hide.
});
menu.show(frame, 450, 250);
}
}
另见 How to programmatically close a JFrame
适合工作的适合工具。
考虑一个非模态的、未修饰的 dialog(而不是 JPopupMenu
)。
这是您需要的东西吗?
import java.awt.Color;
import javax.swing.*;
public class Try{
public static void main(String[] args) {
JFrame frame = new JFrame("Trial");
JLabel label = new JLabel("This is a popup menu!");
label.setBorder(BorderFactory.createLineBorder(Color.red, 2));
frame.setSize(900, 500);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
JDialog dlg = new JDialog(frame);
dlg.add(label);
dlg.setUndecorated(true);
dlg.pack();
dlg.setLocationRelativeTo(frame);
dlg.setVisible(true);
}
}
这是我电脑上的样子。
如果单击 JFrame
,对话框仍然可见。
所以这可以通过 JPopupMenu 本身实现,不需要 JDialog。
我不得不重写 setVisible 方法并允许仅在调用 close 方法后关闭弹出窗口!
这是弹出菜单仅在 5000 毫秒后关闭的代码,而不是在单击时关闭!
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
public class Try{
public static void main(String[] args) {
JFrame frame = new JFrame("Trial");
MyPopupMenu menu = new MyPopupMenu();
JLabel label = new JLabel("This is a popup menu!");
menu.add(label);
frame.setSize(900, 500);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
menu.show(frame, 450, 250);
Timer timer = new Timer(5000, new ActionListener() {
public void actionPerformed(ActionEvent evt) {
menu.closePopup();
((Timer)evt.getSource()).stop();
}
});
timer.start();
}
}
class MyPopupMenu extends JPopupMenu{
private boolean isHideAllowed;
public MyPopupMenu(){
super();
this.isHideAllowed = false;
}
@Override
public void setVisible(boolean visibility){
if(isHideAllowed && !visibility)
super.setVisible(false);
else if(!isHideAllowed && visibility)
super.setVisible(true);
}
public void closePopup(){
this.isHideAllowed = true;
this.setVisible(false);
}
}