Vincent Roye
Vincent Roye

Reputation: 2851

pop up creation java Swing

I have to create this pop up with java swing :

enter image description here

and I have a few problems :

Could anyone help me ?

Thank you very much

Upvotes: 2

Views: 1290

Answers (1)

KV Prajapati
KV Prajapati

Reputation: 94653

You may use JDialog and setUndecorated(true). For more info read Java Tutorial.

JDialog dialog=new JDialog(frmInstance);
dialog.setUndecorated(true);
dialog.setVisible(true);
dialog.setSize(200,100);

Upvotes: 6

Related Questions