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.
我想创建一个GWT应用程序。每当用户登录到系统时,它会在 PopUpPanel 中显示一些信息,并在一段时间后自动禁用。是否可以使用GWT?
GWT
可以尝试类似:
Timer t = new Timer() { @Override public void run() { popUpPanel.hide(); } }; popUpPanel.show(); t.schedule(5000);
你想在哪里5000显示弹出窗口。
5000