1

所以我正在做一个项目,我试图从程序中禁用框架和字段,以便只有窗口在前面,这个是活动的,这是我的代码:

 import javax.swing.*;
 import java.awt.event.*;
 import java.awt.*;

public class password
{
  private static String password = "pass";
  public static void main(String[]args) {
    JFrame frame = new JFrame("Password");
    frame.setVisible(true);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(400,100);
    JLabel label = new JLabel("Enter password");
    JPanel panel = new JPanel();
    frame.add(panel);
    JPasswordField pass = new JPasswordField(10);
    pass.setEchoChar('*');
    pass.addActionListener(new AL());
    panel.add(label, BorderLayout.WEST);
    panel.add(pass, BorderLayout.WEST);
}
static class AL implements ActionListener
{
    public void actionPerformed(ActionEvent e) {
        JPasswordField input = (JPasswordField) e.getSource();
        char [] passy = input.getPassword();
        String p = new String(passy);
        if (p.equals(password)){
            JOptionPane.showMessageDialog(null, "Correct");
            System.out.print("Welcome to Adam's Quirky program.");



        }
        else
            JOptionPane.showMessageDialog(null, "Incorrect");
       }
    }
 }

我目前用来编程的程序是 Eclipse。

4

1 回答 1

4

我会看一下模态对话框。

使用 aJOptionPane或自己滚动。

如果这些不适合您的需求,请尝试查看JLayer (Java 7) 或JXLayer (Java 6 及更低版本)

看看LockableUI(有点过时了,但基本思路是一样的)

如果这不吸引人,您可以使用“阻挡玻璃窗格”

看一眼

作为一些例子

于 2012-08-29T01:22:20.500 回答