3

我下面的代码创建一个新数组并将其发送到聊天(jFrame)。

String info1[]=new String[3];
 // username , userid , userid2 are variables
 info1[0]=username4;
 info1[1]=""+userid;
 info1[2]=""+userid2;

 chat.main(info1);

但是我需要修改此代码以使其工作,如果打开聊天 jframe,则不要打开新的 jFrame。而是在聊天 jframe 中打开一个新选项卡。聊天框架的代码是:

private void formWindowActivated(java.awt.event.WindowEvent evt) {       
  JScrollPane panel2 = new JScrollPane();
  JTextArea ta=new JTextArea("");
  ta.setColumns(30);
  ta.setRows(19);
  panel2.setViewportView(ta);
  jTabbedPane1.add("Hello", panel2);   
}
4

2 回答 2

7

如果窗口依赖于另一个窗口,我想知道您是否不应该使用 JDialogs 而不是 JFrames。

一种解决方案是使用类字段来保存对窗口(JFrame 或 JDialog)的引用并检查它是否为空或可见,如果是,则懒惰地创建/打开窗口,

public void newChat(User user) {
  if (chatWindow == null) {
    // create chatWindow in a lazy fashion
    chatWindow = new JDialog(myMainFrame, "Chat", /* modality type */);
    // ...  set up the chat window dialog
  }

  chatWindow.setVisible(true);
  addTabWithUser(user);
}

但这就是我根据提供的信息所能说的。如果您需要更具体的帮助,则需要提供更多信息。

于 2013-07-01T04:28:41.337 回答
1

如果使用 JFrames,可以像这样简单地完成:

if (Frame1.component != null) {
   Frame1 is opened
} else if (Frame2.component == null) {
   Frame2 is closed
}

组件 ex.JTextField、JComboBox 等。

于 2015-09-25T13:24:33.597 回答