JWindow « Dialog « Java Swing Q&A





1. Solaris 5.10: How do I hide a JWindow button on the task bar?    stackoverflow.com

I am using a JWindow object in my Java application to simulate a mouseover dropdown menu. When the user mouses over a JLabel, the window appears and remains until the ...

2. JWindow with Black Opacity    stackoverflow.com

I would like to create a JWindow that's not only has an opacity, but I want to change the default color of the opacity within Swing. So for example, if I write:

AWTUtilities.setWindowOpacity(this, ...

3. Is really not possible remove on Runtime any of JDialog or JWindow    stackoverflow.com

as I tried, looks like as that isn't possible, without success as I tried, or exist there another way?

import java.awt.*;
import java.awt.event.WindowEvent;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.*;

public class SuperConstructor extends JFrame {

   ...

4. JPanel on JWindow, adding components    stackoverflow.com

I have a JFrame, inside the JFrame code I create a JWindow and on window I have created a JPanel. On JPanel is inserted a background image.

JButton btnImage= new JButton("My ...