Pop-up window in Java Swing

前端 未结 3 859
囚心锁ツ
囚心锁ツ 2021-01-12 10:44

Can someone suggest me how to implement a pop-up window in Java Swing. I want the pop-up window to be a modal window (user cannot return to the main window when the pop-up i

3条回答
  •  忘掉有多难
    2021-01-12 11:07

    Use a JDialog. There is no restiction on what you can add, you can add whatever you want to a JDialog (exactly the same as when using a JFrame)

提交回复
热议问题