Может кто-нибудь сказать мне, как вызвать JDialog с JInternalframe?
public class BSJFrameUpdateOnlineTrdDlg extends JInternalFrame {
public BSJFrameUpdateOnlineTrdDlg(JDesktopPane jdesk) { //constructor
super("Backoffice Synchronization");
jdeskTop = jdesk;
frame = this;
try {
jbInit();
}
catch (Exception e) {
e.printStackTrace();
}
setLocation(400, 200);
setVisible(true);
setSize(720, 570);
}
private void jbInit() throws Exception {
//.......
jButton1.addActionListener(new jButton1_upload_action());
this.getContentPane().add(jButton1, null);
}
class jButton1_upload_action implements ActionListener{
public void actionPerformed(ActionEvent e) {
displayDialog(frame,marketStatus);
}}
public void displayDialog(JInternalFrame frame,String status){
JDialog jdg = new JDialog();
//this is where the JDIalog get initiated
}
}
это то, что у меня сейчас есть. Я вставил только самые важные строки кода.