0

任何人都可以给出解释和使用示例Container吗?

例如,我正在尝试 find JProgressBar,并且所有 find 方法都Container作为第一个参数:

JProgressBar pb = JProgressBarOperator.findJProgressBar([Container cont]);

我认为那个JFrameJDialog等等可以用作(转换)容器,但事实并非如此。那是什么?

4

1 回答 1

0

解决方案是通过以下方式获取Container父元素.getContentPane()

JFrameOperator mf = new JFrameOperator("Main Frame");
JDialogOperator jd = new JDialogOperator(mf, ""); // dialog that contains JProgressBar has no name
JProgressBar pb = JProgressBarOperator.findJProgressBar(jd.getContentPane());
于 2016-06-27T12:21:50.160 回答