Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
3answers
2k views

How can a Swing JWindow be resized without flickering?

I am trying to make a custom UI based on a JWindow for the purpose of selecting an area of the screen to be shared. I have extended JWindow and added code to make it resizable and to 'cut out' the ...
3
votes
1answer
72 views

Java like Window Navigation in WPF

I am a Java developer, and for user interaction I create a universal JFrame and has a JPanel container in it, and I swap that container with the other panels I created. I started to develop WPF ...
2
votes
2answers
112 views

Hide JWindow when applet not visible?

I create a JWindow in my applet to display an update process, and I set the owner to the applet parent. My problem is that the JWindow is visible in all the tabs in my browser and not just the one ...
2
votes
1answer
251 views

Set JWindow Background Image

Hey All I want to set a Background for my JWindow. I used setIconImage method in JWindow. but it's not working How knows what the problem is? public MainMenu() throws Exception { try { ...
1
vote
1answer
64 views

Java Swing: JWindow appears behind all other process windows, and will not disappear

I am using JWindow to display my splash screen during the application start up. however it will not appear in front of all windows as it should, and it will not disappear as well. import ...
1
vote
1answer
170 views

Is really not possible remove on Runtime any of JDialog or JWindow [closed]

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 ...
1
vote
1answer
309 views

JLabel over transparent painted Rectangle?

I set the background of a JWindow completely transparent. Then I painted a rounded Rectangle (RGB: 0,0,0,100) in it's paint-Method and added a JLabel to the JWindows ContentPane. But when I try to ...
1
vote
2answers
195 views

JWindow with Black Opacity

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, ...
1
vote
3answers
850 views

Adding KeyListener to a JWindow not getting any key events

In Java, I am adding a KeyListener to a JWindow, but it is not getting any key events. If I used the same code but extend a JFrame instead, then everything works fine. public class MyWindow extends ...
0
votes
0answers
29 views

Set Focusable JFrame

After looking at the java doc I kind of found what I wanted to do but it doesn't seem to work. I had a Jtable that clickable and another JFrame pops up after I click on a row. I wanted to set the ...
0
votes
1answer
146 views

JPanel on JWindow, adding components

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 Button"); Image ...
0
votes
2answers
247 views

Add Keylistener to full-screen JWindow

I've made a full-screen JWindow, and I want to add a simple KeyListener that in case of pressing Arrow keys do somethings But I don't know why it's not working. I've added keylistener to all of ...
0
votes
2answers
238 views

Update JLabel from another thread

Dear guys, I'm having swing related problem. I cannot share the code since it's against the company policy, so I will try my best to explain the problem. In short, I have created a class that extends ...
0
votes
2answers
426 views

Applet SplashScreen, JWIndow?

This is my 3rd SO question. Please help again... I want to put up a splashscreen on my applet. In doing so, I used the JWindow component. I already used it in creating splashscreens for my stand-alone ...
0
votes
1answer
156 views

JWindow in JApplet

i would like to ask for further information and suggestion about this problem. I am making an JApplet and I want to put a splash screen. I used JWindow. In the JWindow I put a JLabel...just a simple ...
0
votes
4answers
632 views

JWindow alway on top not getting focus events

I have a jwindow(set to be always on top) that you can click to get a pop menu. If the user right clicks the window it shows the pop menu but then if the user clicks any other window(such as firefox) ...