一个窗口的文本内容怎么传递到一个窗口上???
3条回答 默认 最新
- technologist_30 2021-06-12 23:29关注
class A{
.........
Another another = new Another(this);
}
class Another{
private A a;
public Another(A a){
this.a =a;
}
}
///如上面的做法就可以在窗体Another中引用窗体A的内容.本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用