1 2 3 4 5 6 7 8 9 10
|
JXPanel progressPanel = new JXPanel(new GridBagLayout());
JLabel progressMessageLabel = new JLabel("Recherche en cours,veuillez patientez ...");
progressPanel.add(progressMessageLabel, new GridBagConstraints(0, 0, 2, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(12, 12, 11, 11), 0, 0));
progressPanel.add(new JLabel(new ImageIcon(Toolkit.getDefaultToolkit().getImage(getClass().getClassLoader().getResource("images/wait.gif")))), new GridBagConstraints(0, 1, 1, 1, 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(0, 24, 11, 7), 0, 0));
JDialog waitDialog=new JDialog();
waitDialog.setSize(300, 130);
waitDialog.setContentPane(progressPanel); |
Partager