能不能把FrameFirst中的文本框、文本域的内容显示在FrameTwo中的文本域中显示.
怎么实现啊?
在线等。。。。
----------------解决方案--------------------------------------------------------
当然可以,
用getText和setText就可以了
----------------解决方案--------------------------------------------------------
虽两个Frame都在一个工程中,不过是独立的
这个我试过了呀.
我想应该在FrameTwo.java 中
new FrameFirst();
不过接下来怎么做呢?
----------------解决方案--------------------------------------------------------
我在鼠标点击事件里这么写的:
FrameFirst frFrist = new FrameFirst();
frFrist.getContentPane();
frFrist.getComponents();
txaInfo.setText(frFrist.txtName.getText() + frFrist.txtAge.getText() + frFrist.txtUy.getText() );
依然不能获得FrameFirst中文本框中的内容。
----------------解决方案--------------------------------------------------------
文本框里没有内容你叫别人怎么获
----------------解决方案--------------------------------------------------------
我在鼠标点击事件里这么写的:
FrameFirst frFrist = new FrameFirst();
frFrist.getContentPane();
frFrist.getComponents();
txaInfo.setText(frFrist.txtName.getText() + frFrist.txtAge.getText() + frFrist.txtUy.getText() );
依然不能获得FrameFirst中文本框中的内容。
----------------解决方案--------------------------------------------------------
我的意思是说.怎样把第一个Frame中输入文本框的信息保存起来,在第二个Frame中的文本域显示?
----------------解决方案--------------------------------------------------------
你 new 一个,当然得到的是空的了
----------------解决方案--------------------------------------------------------
告诉我怎么实现呀~!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
----------------解决方案--------------------------------------------------------
你把全部代码拿出来
----------------解决方案--------------------------------------------------------