Top "Jframe" questions

A JFrame is a component and top-level container of the JFC/Swing framework.

What is the relation between ContentPane and JPanel?

I found one example in which buttons are added to panels (instances of JPanel) then panels are added to the …

java swing user-interface jframe jpanel
How to remove all components from a JFrame in Java?

I'm writing a program where I have a JFrame and I want to remove all components from it, then add …

java swing jframe repaint removeall
How can I display a BufferedImage in a JFrame?

I want to display variations of the same image in the same JFrame, for example display an image in JFrame, …

java swing jframe bufferedimage
How to add an ImageIcon to a JFrame?

I'm trying to add an image to one frame but it seems it does not working. The image created by …

java swing jframe jlabel imageicon
How to remove title bar in JFrame

I'm using the following code for practising, http://docs.oracle.com/javase/tutorial/uiswing/examples/layout/BorderLayoutDemoProject/src/layout/BorderLayoutDemo.…

java swing jframe titlebar
How do you open web pages in Java?

Is there a simple way to open a web page within a GUI's JPanel? If not, how do you open …

java web jframe
Java - how do I prevent WindowClosing from actually closing the window

I seem to have the reverse problem to most people. I have the following pretty standard code to see if …

java swing jframe windowlistener
Drawing an Image to a JPanel within a JFrame

I am designing a program that contains two JPanels within a JFrame, one is for holding an image, the other …

java image swing jframe jpanel
How can I remove just the Maximize button from a JFrame?

I have a JFrame and want to remove the maximize button from that. I wrote the code below, but it …

java swing jframe titlebar maximize-window
How to make a JFrame scrollable in Java?

I have this code in which I am trying to fit a scrollable Panel (JPanel) but I don't get it. …

java swing user-interface jframe jscrollpane