JPanel is a container in the Java Swing Framework that allows custom rendering using layout managers. JPanels can be nested for flexibility. There is also a jQuery plugin with the same name that provides accordions, tabs, and fieldsets from simple container mark up.
2
votes
2answers
5k 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 drawFrame method to ...
1
vote
1answer
26 views
How Do I Draw Two Overlapping JPanels such that the Graphics Drawn On Both Of Them Display On The Screen?
I have two JPanels. One panel has a 100x100 rectangle drawn at 0,0. And the other has a 100x100 rectangle drawn at 100, 100. My problem is that when both JPanels are drawn on the JFrame's content ...
1
vote
1answer
25 views
Making JPanel Highlighted when clicked
So I have a couple Jpanels in my frame, and the idea is that, when one of the panels is selected, it will be highlighted. This is just the first step, because in the end, I want to be able to have ...
0
votes
0answers
36 views
Button Target in Java
i try to make an application with java (GUI), so i'm using WINDOWBUILDER and Eclipse as IDE.
So I'm asking about how to set the target of buttons I'm using,, so for example, if a user click on a ...
0
votes
0answers
19 views
Setting ImageIcon location or Making GIFs work with Graphics (on JPanel)?
I need to put a GIF file in my JPanel.
I have found two methods:
1.Make an ImageIcon, and put that in a JLabel, which will actually work the GIF.
The problem with this is that I can't place the ...
0
votes
1answer
19 views
Equivalent of JPanel in JFace?
In Swing, it was east to create a nice looking GUI display window thanks to the ability to add JPanels to JFrames and keep everything nice and organized.
I'm working in JFace now, and after looking ...
2
votes
2answers
30 views
Scroll bar not visible in JPanel
I have created a GUI in Java which looks as shown below -
'panel_mid' is the white panel in the middle. I have added it to a scrollpane called 'panel_mid_scrollpane'.
Apart from 'panel_mid' there ...
0
votes
2answers
22 views
Changing ImageImplement image
Everytime I change the uploaded image into images array, it draws the image beside the previous image. How can I make the next chosen picture appear over the first one?
ImageImplement panel = new ...
1
vote
1answer
63 views
Cleaning up a Nested J panel
Rebuilt the SCCE for you guys.
My goal is this
The general idea is that clicking on the title bars of the menus (right side) will collapsible (set visible to false) the content panes associated ...
0
votes
1answer
20 views
Java Displaying String on a JTextField after a JButton in a separate class is pressed
Currently working on a school project in which I am making a wheel of fortune replica in Java. I have a panel of JButtons within a class called buttonPanel, and a separate class, wheelGUI, which acts ...
0
votes
1answer
41 views
How to place a text area in JPanel [duplicate]
I have created a JFrame containing 2 JPanels(panel1,panel2). I have added panel2 in panel1. panel1.add(panel2);
I have added a text area into panel2.
panel2.add(textarea);
finally panel1 to ...
2
votes
2answers
32 views
Resizing panels in a GridLayout
I want this:
My frame is a GridLayout (3,2), and all I can have is this:
I put the button in a panel, I think it's easier. But how can I change the size of the grid?
2
votes
3answers
50 views
Adding a JPanel to a JPanel
I have attached my code below, a screen shot of my program, and a drawing of what I want the tab to look like. I need my JPanel textPanel to appear below the JButtons on the tab LLP. I have tried to ...
1
vote
1answer
30 views
JPanel: extra spaces between borders of nested GridLayout tables
I'm working on my first Java Swing project (really my first GUI project, unless you count client-side web programming), and I'm having an aesthetic issue. I'm making a Sudoku board in a JPanel. The ...
1
vote
1answer
38 views
Changing JLabel icon dynamically after already adding to GUI?
I'm having trouble changing an icon deep in my GUI using Swing components. I'm creating a chess game for fun with Java and want the right side of the GUI to respond when a piece is taken by showing ...
0
votes
1answer
30 views
How to get location of textarea in JPanel
I have created a JFrame containing 2 JPanels(panel1,panel2).i have added panel2 in panel1.
panel1.add(panel2);
i have added a text area into panel2.
panel2.add(textarea);
finally panel1 to ...
0
votes
2answers
28 views
How to use JPanel object with class extended?
I have a class main, which I'm calling all my classes that extend JPanel. So, just do: Frame.add(new JPanel). Knowing, that such class extend JPanel. However, I cannot to use object JPanel in that ...
0
votes
3answers
35 views
Align components on the page top right with GridBagLayout Manager
i am trying to make a login page just like facebook, but the code i have written is not showing it on the top left side instead it is showing at the centre of page, i am using GridBagLayout and ...
1
vote
2answers
39 views
Jpanel repaint with mouse movement event
Ok here is the thing I am making a function grapher and I want when you move your mouse over a line it will show the coordinates. So I set up just a basic drawstring on the panel to show the mouse ...
0
votes
0answers
16 views
Resizing a Jpanel inside a Jframe at the same time
I currently have a componentlistener on my jframe that repaints the jpanel when the window is resized, but only once the user lets go of the mouse. How can I alter my code so the panel will update at ...
1
vote
2answers
49 views
JPanel: What is the simplest way to display an image?
I am working on a project and I need to display an image that I have already drawn. I need a background image and several foreground images that I can move around. What is the easiest way to do this? ...
0
votes
0answers
10 views
Java Media Framework stop or hide video in JPanel
I got problem with JMF I try play movie, and on keyPressed I want to stop playing movie, and back to main program.
This is my function to play movie:
public void grajFilm(boolean czyGrac){
URL ...
-1
votes
1answer
23 views
Simpliest way to make a custom JPanel background
I've got problem with my JPanel background. I want to put my image "aaa.jpg" in to background of panel "p5". It will be good if it will be done without creating any new class. Is it simple way to set ...
1
vote
1answer
24 views
Making JPanel bigger
I am trying to make my JPanel bigger. I have three tabs but when I run the program not all of them show (unless I click the arrows). I just need to know how to make the panel bigger so that I won't ...
0
votes
1answer
27 views
Scrollbars in JScrollPane don't refresh
I have a JPanel in a JScrollPane. When JPanel changes (in my case, I draw an image inside), the scroll bars are not refreshing accordingly. I need to move them sligthly or resize the whole frame and ...
0
votes
1answer
33 views
Adjusting GUI JPanels to fit
So for this program, I am trying to have a JToolBar on the left, and this spectrum panel on the right side. I am currently adding using a BorderLayout, but as you can see, the spectrum (in cyan) I add ...
1
vote
1answer
42 views
JScrollPane containing a JPanel won't scroll
I have a JScrollPane which contains a JPanel which contains a collection of JPanels.
The collection size can be changed which is why I have it in a JScrollPane.
For some reason, no matter what I do, ...
0
votes
1answer
23 views
accessing gridLayout grids
So I'm using borderLayout panel with a girdLayout for the Center Position, I have added some objects to my gridLayout but latter on I would like to add some more information to the same grids.
...
0
votes
0answers
10 views
event listener logic with remove and add JPanel components
I'm trying to understand sample puzzle code from http://zetcode.com/tutorials/javaswingtutorial/puzzle/ where a picture is cropped into smaller images and displayed on buttons with one corner image ...
0
votes
0answers
35 views
JPanel Wont Load Image
So I can't really figure out why I can't load an image into this JPanel....The code is kinda long, but I have it commented, so it should be fairly simple to deduce whats going on. Can anybody help? I ...
0
votes
2answers
56 views
JPanel - positioning element
I have a problem with setting position for one of the elements (the image). I cannot align it to right-bottom of the screen. I tried to use different layouts but I can't make it to work exactly like I ...
0
votes
1answer
24 views
Can't add a panel (so background) to my JFrame
I have a JPanel that I use as a background which name is BackgroundPanel. And I am designing my main JFrame with NetBeans, and adding BackgroundPanel like that.
public class Main extends ...
0
votes
1answer
44 views
Java program with multiple windows(JPanel), how to connect them to JFrame
I have a library application that permits users to log in, and many other things.
I don't really know how to make multiple windows (views), such as a login, and if it is succesfull, closing the ...
0
votes
3answers
37 views
Aligning Shape's Center to JPanel's Center
I have been trying to align my java2d shape's center to the JPanel's center with no success. I was able to do it for an image and many 2D shapes like parallelogram using getBounds method but not for ...
3
votes
3answers
5k views
Drawing rectangle on a JPanel
I want to draw a recangle on a JPanel. Am able to draw with the following code.
public class DrawingColor extends JFrame
{
public static void main(String[] args)
{
DrawingColor d = ...
-1
votes
0answers
20 views
Remove scrollbar from jQuery Jpanel plugin
I want to remove the vertical scrollbar from JPanel Jquery plugin.
Does anyone know how to remove it completely?
0
votes
3answers
40 views
How to rescale painted contents of JPanel
I have a window which contains upper JPanel where figures are painted and the lower JPanel where figures are listed in the JList the list looks like:
[minature][figure.toString()]
The minature is ...
0
votes
3answers
27 views
Java Layer JPanels
I need to layer JPanels but I don't know how. I have 3 panels, the first is for the background, the second is for a Character/Sprite to move around and layers the first panel(background, and the third ...
0
votes
1answer
25 views
Catch action events from a JPanel component in a JFrame parent window
How to catch action events from a JPanel component in a JFrame parent window in Java Swing?
I'm having a hard time trying to make a custom Component in Swing.
The idea I got is making a custom ...
0
votes
0answers
4 views
Giving a JPanel priority focus
I have a JPanel that is using a KeyListener as the content pane as the window; however, there are buttons and text fields in a grid layout on top of the JPanel.
How do I prioritize the focus of the ...
3
votes
1answer
36 views
My Swing GUI does not update. Why?
So, I am making a GUI in which the user has the ability to add or remove panels. To simulate that, I made a TimerTask which takes the name of the target JPanel and the parent which contains the ...
0
votes
0answers
42 views
“Refresh” a JFrame with setLayout(null)
I am trying to get the JFrame to refresh as I want to add a JPanel onto a JFrame after it had been set visible. invalidate() then validate() then repaint() won't work as I don't have a layout manager.
...
0
votes
2answers
52 views
Drawing line between two JPanels
I want to draw lines between two JPanels ; please verify my code as its giving an NULL pointer Exception at
"g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);"
...
-1
votes
0answers
31 views
Animated Gifs in JPanel [duplicate]
I'm new at doing pop-up screens with Java (just stared learning a couple of days ago) so I'm not really sure how to add an animated gif into the JPanel. Right now I'm working on a code and it only ...
0
votes
3answers
56 views
When does a JTabbedPane component get its size?
I need to know the size of a JPanel when I add it to a JTabbedPane to compute other values. If I call the add(Component) method, when does the Component get its size?
For example,
JTabbedPane ...
-6
votes
1answer
51 views
JButton that will use another JButton [closed]
package QADev_AcctReset;
import java.awt.Color;
import java.awt.Font;
import java.awt.Image;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import ...
1
vote
2answers
63 views
Why does GridBagLayout provide strange result?
I want the various components to spread out and fill the entire window.
Have you tried anything else? Yes, I tried GridLayout but then the buttons look huge. I also tried pack() which made the ...
0
votes
1answer
28 views
JAVA cannot see added components to panel
Task: Delete several controls from panel, then add new ones.
Problem: after completing several methods, old controls disappear, but I cannot see new ones.
code:
public void StartGame() {
...
1
vote
2answers
37 views
Exiting out of one of two JFrame exits out of both
I have two seperate JFrames but when i click the X in the topright of one, it will exit out of the other also. I have an "exit" button near the bottom to do setVisible(false), but i still have the ...
3
votes
1answer
35 views
JPanels keep appearing as little squares no matter what size I set
I have a JFrame class with a BorderLayout that holds another class (ScorePanel) which extends JPanel. This is the relevant code for the JFrame class, a method not called by the constructor that sets ...






