Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有构造函数的页面。
所以,我有一个按钮,当点击这个按钮时,函数 handleLogin 开始工作。
你不能在构造函数中做你想做的事。您的handleLogin()方法调用this.getWindow(),但是您的按钮在它(及其父项)被添加到某个可见的框架之后才具有窗口。您必须handleLogin()在 GUI 完全创建并使其可见后调用。
handleLogin()
this.getWindow()
尝试创建一个等待的新线程,然后调用该函数。我想它失败是因为没有创建元素,这很简单……希望我能帮上忙。