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.
我想在欢迎/主页选项卡上显示一些统计数据和链接。如何固定标签或防止关闭?
这是一个很好的解决方案,还是我应该将主窗口用于“仪表板”?
您可以覆盖AbstractWindow类的preClose()方法。如果此方法始终返回 false,那么您的窗口将永远不会关闭。
@Override protected boolean preClose(String actionId) { return false; }