如何获取JPanel所在的JFrame?
我目前的解决方案是询问小组的父母(依此类推),直到找到一个窗口:
Container parent = this; // this is a JPanel
do {
parent = parent.getParent();
} while (!(parent instanceof Window) && parent != null);
if (parent != null) {
// found a parent Window
}
是否有更优雅的方式,标准库中的方法可能是?
答案 0 :(得分:124)
您可以使用SwingUtilities.getWindowAncestor(...)
方法返回一个可以投射到顶级类型的窗口。
JFrame topFrame = (JFrame) SwingUtilities.getWindowAncestor(this);
答案 1 :(得分:34)
在SwingUtilities
中有两种直接的,不同的方法可以提供相同的功能(如Javadoc中所述)。他们返回java.awt.Window
,但如果您将面板添加到JFrame
,则可以安全地将其投放到JFrame
。
两种直接且最简单的方法:
JFrame f1 = (JFrame) SwingUtilities.windowForComponent(comp);
JFrame f2 = (JFrame) SwingUtilities.getWindowAncestor(comp);
为了完整性,还有其他一些方法:
JFrame f3 = (JFrame) SwingUtilities.getAncestorOfClass(JFrame.class, comp);
JFrame f4 = (JFrame) SwingUtilities.getRoot(comp);
JFrame f5 = (JFrame) SwingUtilities.getRootPane(comp).getParent();
答案 2 :(得分:30)
JFrame frame = (JFrame)SwingUtilities.getRoot(x);
答案 3 :(得分:1)
正如其他评论员已经提到的那样,简单地转换为using(checkinentrepriseEntities2 context = new checkinentrepriseEntities2()) {
clients clien = new clients();
clien.date_arrival = DateTime.Parse(textBoxDateIN.Text);
clien.arrival_time = textBoxTIME.Text;
clien.Aller_A = comboboxPersonnel.SelectedItem.ToString();
clien.Badge = int.Parse(comboBoxBadge.SelectedItem.ToString());
int badgeTiped = int.Parse(comboBoxBadge.SelectedItem.ToString());
context.SaveChanges();
}
通常无效。这在大多数特殊情况下都有效,但我认为唯一正确的答案是https://stackoverflow.com/a/25137298/1184842中的icza JFrame
f3
因为这是一个有效且安全的演员,几乎和所有其他答案一样简单。