我目前正在构建一个应用程序,它有一个JFrame
和一个JDialog
. 有JFrame
一个JList
叫:
JList lstMainVenuesEvents = new JList();
我正在尝试使用以下方法获取 lstMainVenuesEvents 的值:
lstMainVenuesEvents.getSelectedIndex();
我可以在 my 上获得完美的值JFrame
,但是如何将其传递给 my JDialog
?我想过在我的一个类文件中创建一个 setter 方法,然后从我的JDialog
文件中获取该值,但肯定有一种简单的方法吗?是否有可能只有某种方法可以将数据从POST 传递JFrame
到JDialog
PHP 中的 POST 请求?
抱歉,如果我错过了任何重要的内容。
更新:这是我的 JList 和 JDialog 节目的代码。
JList lstMainVenuesEvents = new JList();
lstMainVenuesEvents
.addListSelectionListener(new ListSelectionListener() {
public void valueChanged(ListSelectionEvent e) {
// stop from firing twice
if (e.getValueIsAdjusting()) {
EventModify evtWindow = new EventModify();
evtWindow.setVisible(true);
}
}
});