10
votes
8answers
18k views
Java Swing: how to add an image to a JPanel ?
I have a JPanel to which I'd like to add JPEG and PNG images that I generate on the fly.
All the examples I've seen so far in the Swing Tutorials, specially in the Swing examples …
0
votes
2answers
33 views
adding JLayeredPane to JPanel
I am trying to add a JLayeredPane to a JPanel and then add an image (JLabel icon) and a button to the JLayeredPane, but neither show up. I've tested the image without the button a …
1
vote
4answers
113 views
JPanels, JFrames, and Windows, Oh my!
Simply stated, I am trying to make a game I am working on full-screen.
I have the following code I am trying to use:
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphics …
0
votes
4answers
73 views
In swing GUI how to show a JPanel as maximized when the user clicks a button ?
Hi,
I want to maximize a JPanel inside a JFrame when the user clicks a button.What is the best way to achieve this.The view and the data model should be in sync in both the panels …
0
votes
1answer
40 views
Add an SWT widget to a swing JPanel
I understand that this may be impossible, but I would sure like to know if somebody has accomplished this, or have a work-around.
I have an SWT Button and am wanting to overwrite …
1
vote
4answers
286 views
Resizing JPanel to prepare for printing without removing it from its original position
In my program I frequently need to print various JComponents (generally JPanels) and I like them to be full-page. The way I do it now is by using the following code:
g2d.scale(pf …
0
votes
2answers
492 views
How to make Jpanel expand to the size of the JFrame?
The below code is from the book objects First With Java By Michale Kolling and David J Barnes and the following is an exercise (ex 5.49) from the book.The ex is : Improve your draw …
0
votes
0answers
93 views
JApplet/JPanel not receiving KeyListener events!
Hello,
I cannot get my JPanel within my JApplet to receive keyboard events. I CANNOT FATHOM why!
Note that...
Clicking the panel (with mouse) before typing makes no difference. …
0
votes
2answers
55 views
Displaying jpg image on JPanel
How can I display jpg image which I stored in arraylist in JPanel?
Im not able to display the jpg files in the JPanel.
String[] pictureFile = {"A.jpg","B.jpg","C.jpg"};
List< …
2
votes
4answers
144 views
Unwanted border around JPanel
I'm creating a form with a JPanel inside it for some graphics and some buttons for controlling the thing. For some reason I have to specify the JPanel to be 10 px less wide and 30 …
1
vote
1answer
124 views
Wrong packing of JFrame using JPanel in borderlayout
Hello there. I am writing a simple application in Java that does some particle simulation on a bunch of sheep (don't ask). For this I want a window with a JPanel for graphics (whic …
0
votes
3answers
91 views
Why I got black background when I save file as JPG
I set the JPanel background color as white. However when I save it into JPG or other image format, the background are all in black. I have put this code TYPE_INT_ARGB but it doesnt …
0
votes
2answers
60 views
Images and Panels
I'm having a problem adding a JPanel on top of an Image. This is what I'm trying to do:
Image bgImage = loadImage(filename);
JPanel jp = new JPanel();
jp.setBounds(100,100,100,10 …
0
votes
1answer
44 views
Placing drawing on JPanel
My program have 3 classes. 1) main, 2) frame, 3) drawingBoard. The logic of my program is that, a new drawing will be displayed every times user click on New pattern button (and t …
0
votes
4answers
119 views
JPanel doesnt display the drawing
I have problem displaying drawing on JPanel. I created three class which linked to each other as the following. I was wondering why this code, doesn't display my drawing.
c.add(pD …
