我在 LogInWindow(JFrame) 中有一个 JTextField。在该 JTextField 中,用户输入它的名称。
我有另一个 StudentWindow (JFrame),它的构造函数将该用户名 String 作为参数。
在我的 xml 文件中,我如何注入来自 JTextField 的输入?
<!-- GUI Beans -->
<bean id="logInWindow" class="gui.LogInWindow">
<constructor-arg ref="controller"/>
<property name="nameJTextField" value="?? Need help here ??"/>
</bean>
<bean id="studentWindow" class="gui.StudentWindow">
<constructor-arg ref="????????"/>
</bean>
提前致谢。