Swing
-
Desktop Java
JavaFX Tip 9: Do Not Mix Swing / JavaFX
The JavaFX team has tried very hard to convince us that migrating from Swing to JavaFX is easy because of…
Read More » -
Core Java
150 Java Interview Questions and Answers – The ULTIMATE List (PDF Download & video)
Our Java Interview Questions and Answers collection is all about different types of questions that can be used in a…
Read More » -
Desktop Java
More Units with MoreUnit
Just over a year ago I wrote a post about working with JUnit in Eclipse. One of the commenters recommended…
Read More » -
Desktop Java
Java 7 Swing: Creating Translucent and Shaped Windows
Java 7 Swing supports windows with transparency and non-rectangular shapes. The following screenshot shows a circular window created with 75%…
Read More » -
Desktop Java
Integrating JavaFX and Swing (Revised)
I’ve just finished rewriting a component of my app that was using Swing and now is using JavaFX, I’ve ended up with…
Read More » -
Desktop Java
Multi-threading in Java Swing with SwingWorker
If you’re writing a desktop or Java Web Start program in Java using Swing, you might feel the need to…
Read More » -
Desktop Java
Create new message notification pop up in Java
First create JFrame to work as pop up. Add some JLabels in it to contain information and assign them at…
Read More » -
Desktop Java
Transparent JFrame using JNA
In Make JFrame transparent I had shown a way to making frame’s transparent using AWTUtilities class. But using that class…
Read More » -
Desktop Java
Make JFrame transparent
First create a frame that has a slider in it which will be used to set transparency amount. import javax.swing.JFrame;…
Read More »