!!!!!我发现了一个大问题,我正在覆盖已经预先确定的isModal方法,因此它不会等待用户输入!现在打我自己:)!!!!!!
我在学校做一个关于GUI的项目。目前的主要议题是4层架构师的东西,这里我们应该使用JDialog输入有关人的信息,从而更新程序的JFrame中的JList。
我的问题是,当我使用我的添加人按钮时,JDialog被设置为可见和模态,因此在用户按下JDialog上的添加按钮后,它应该等待更新JFrame上的JList。
但是,但它不起作用,我和很多老师谈过这个问题,而且他们无法弄清楚为什么它不起作用。
额外的信息是我在Mac上编程,但是如果程序在Windows机器上运行则可以。
我尝试在网络上搜索特定问题,但是在mac上找不到与JDialog java问题相关的任何内容。
有没有人有这方面的经验?
的JFrame:
package gui;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JList;
import javax.swing.JScrollPane;
import javax.swing.ListSelectionModel;
import javax.swing.event.ListSelectionEvent;
import model.Person;
import service.Service;
public class MainFrame extends JFrame {
private JList<Person> jlList;
private JScrollPane jsrPane;
private JButton addButton, updateButton;
private Controller controller;
private MyDialog myDialog;
public MainFrame(){
controller = new Controller();
this.setTitle("Marks lille MainFrame.");
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(800, 600);
this.setLocation(300, 200);
this.setLayout(null);
jlList = new JList<>();
jlList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
jsrPane = new JScrollPane(jlList);
jsrPane.setBounds(10, 10, 400, 500);
this.add(jsrPane);
addButton = new JButton("Add Person");
addButton.setBounds(420, 110, 100, 25);
addButton.addActionListener(controller);
this.add(addButton);
updateButton = new JButton("Update");
updateButton.setBounds(420, 150, 100, 25);
updateButton.addActionListener(controller);
this.add(updateButton);
}
private class Controller implements ActionListener{
public void actionPerformed(ActionEvent ae){
if(ae.getSource().equals(addButton)){
myDialog = new MyDialog("Add Person");
myDialog.setVisible(true);
System.out.println("Test");
if(myDialog.isModal()){
jlList.setListData(Service.getPersons().toArray(new Person[0]));
}
System.out.println("Test");
}else if(ae.getSource().equals(updateButton)){
Person ps = jlList.getSelectedValue();
myDialog = new MyDialog("Update Person");
myDialog.setVisible(true);
if(myDialog.isModal()){
Service.removePerson(ps);
jlList.setListData(Service.getPersons().toArray(new Person[0]));
}
}
}
}
}
的JDialog:
package gui;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
import service.Service;
public class MyDialog extends JDialog {
private JButton okButton, cancelButton;
private JLabel lblName, lblTitle;
private JTextField txfName, txfTitle;
private JCheckBox ckbRetire;
private Controller controller;
private boolean modalResult;
public MyDialog(String title){
controller = new Controller();
this.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
this.setTitle(title);
setModalityType(JDialog.DEFAULT_MODALITY_TYPE);
this.setLayout(null);
this.setSize(300, 300);
this.setLocation(300, 200);
okButton = new JButton("Add");
okButton.setBounds(100, 250, 80, 25);
okButton.addActionListener(controller);
this.add(okButton);
cancelButton = new JButton("Cancel");
cancelButton.setBounds(180, 250, 80, 25);
cancelButton.addActionListener(controller);
this.add(cancelButton);
lblName = new JLabel("Name:");
lblName.setBounds(10, 10, 100, 25);
this.add(lblName);
txfName = new JTextField();
txfName.setBounds(5, 35, 200, 25);
this.add(txfName);
lblTitle = new JLabel("Title:");
lblTitle.setBounds(10, 70, 100, 25);
this.add(lblTitle);
txfTitle = new JTextField();
txfTitle.setBounds(5, 95, 200, 25);
this.add(txfTitle);
ckbRetire = new JCheckBox("retired");
ckbRetire.setBounds(10, 150, 100, 25);
this.add(ckbRetire);
}
private class Controller implements ActionListener{
public void actionPerformed(ActionEvent ae){
if(ae.getSource().equals(okButton)){
String name = txfName.getText().trim();
String title = txfTitle.getText().trim();
boolean retired = ckbRetire.isSelected();
Service.createPerson(name, title, retired);
modalResult = true;
MyDialog.this.setVisible(false);
}else if(ae.getSource().equals(cancelButton)){
modalResult = false;
MyDialog.this.setVisible(false);
}
}
}
public boolean isModal(){
return modalResult;
}
}
主要方法:
package gui;
public class MainFrameApp {
/**
* @param args
*/
public static void main(String[] args) {
MainFrame frame = new MainFrame();
frame.setVisible(true);
}
}
如果您需要Service,Dao和Model课程,请与我们联系。
编辑#1:在Java build 1.7.0_09-b05上运行
编辑#2:尝试将super设置为JDialog,并将JFrame设置为super。 试过setModal,即使它已经过时了。尝试在调用JDialog时设置模态,仍然没有成功
答案 0 :(得分:1)
我发现了一个大问题,我正在覆盖已经预先确定的isModal方法,因此它不会等待用户输入!现在打我自己:)