0

enter image description hereFriends I do not know how this pop up is called. I am developing a software that will use this kind of pop up. How this component is called in Java Swing? It would be helpful to get an example of this with sample code.

alain.janinm
  • 19,951
  • 10
  • 65
  • 112
Rak
  • 341
  • 6
  • 12
  • Swing is an entire (built-in) GUI library for Java, not just a popup. – Adam Mihalcin Feb 09 '12 at 05:53
  • 1
    That is a notification. Check this post:- [How to create a notification in swing][1] [1]: http://stackoverflow.com/questions/3240415/how-to-create-a-notification-in-swing – prajeesh kumar Feb 09 '12 at 06:14
  • You can customize JDialog according to you need by extending this class and i think using a JDialog box will be a better option here – Prateek Sharma Feb 09 '12 at 06:35

1 Answers1

2

Use JWindow / undecorated JDialog for popup windows in Swing GUI

mKorbel
  • 109,525
  • 20
  • 134
  • 319