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.
我正在创建一个新闻自动收报机(屏幕底部的那个狭窄的黑框,它用滚动的其他新闻的文本来拉伸屏幕的长度)。我的应用程序打开其他程序。在这种情况下,它打开的 powerpoint 演示文稿在我的 jframe 上打开。我需要我的 jframe 始终可见有什么想法吗?
您可以使用Window#setAlwaysOnTop:
设置此窗口是否应始终位于其他窗口之上。
myJFrame.setAlwaysOnTop(true);
myFrame.setAlwaysOnTop(true) ;