JDialog not showing minimize/close button
问题 When researching the problem, it seems most people are wanting to do the opposite (i.e remove the minimize/close button). I've had no success using the reoccurrent setUndecorated and setDefaultCloseOperation Here is my code: private class TestDialog extends JDialog { public static final String title_ = "Test Dialog"; public TestDialog(JFrame parent) { super(parent,title_,true); setMinimumSize(new Dimension(500,500)); setLocationRelativeTo(null); setUndecorated(false); setDefaultCloseOperation