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.

learn more… | top users | synonyms

2
votes
3answers
43 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
28 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 ...
0
votes
1answer
24 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
0answers
15 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 ...
0
votes
2answers
26 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 ...
1
vote
2answers
38 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 ...
1
vote
0answers
36 views

Cleaning up a Nested J panel

Trying to build out a GUI for my game but no matter what layout I work with I can't get the nest of panels to do what I like My goal is this And Building off the help the Mad Programmer did i got ...
1
vote
2answers
45 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? ...
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
21 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
36 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
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
3answers
34 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 ...
0
votes
0answers
9 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
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
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 ...
0
votes
0answers
8 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
1answer
22 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
34 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
1answer
23 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
3answers
35 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 ...
0
votes
1answer
42 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 ...
-1
votes
0answers
18 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
2answers
55 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
3answers
39 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
24 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
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
1answer
23 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
2answers
48 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);" ...
0
votes
0answers
40 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. ...
-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
51 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
50 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 ...
0
votes
3answers
50 views

Void not allowed here

I'm trying to work out a way of creating a JTextfield dynamically without assigning it to a variable. panel.add(new JTextField("hello")); The code above works just fine, but when I try and ...
1
vote
2answers
38 views

Java - JPanel with background image AND normal functionality

I've been looking around and working on making a JPanel able to have an image background. I know there is a ton of information reguarding this ( example 1 and example 2 ). Neither of these are exactly ...
0
votes
1answer
32 views

I need to split my panels 2 times and Im not sure how to do it

OK I have a frame with dimensions 1280x720. I need to split that up and create one side on the left that is 1000x720 and the right side 280x720. The panel that now is 1000x720 I need to split it again ...
2
votes
1answer
30 views

JPanel does not appear in window unless I resize the window

I am new to GUI in java, and have been using this video to learn. When I run the program, the window is blank until I resize it. public class GUIProgram extends JFrame { int screenWidth = ...
-1
votes
1answer
19 views

Trying to use Mouselistener to add labels to JPanel

So, I'm trying to make it so that when either "First name" or "Last name" are selected and a mouse is pressed in palettePane,a label with my first or last name appears at the mouseX or mouseY. This is ...
0
votes
1answer
29 views

Where should I put these fields in the MVC model?

Let's say I have three classes: JPSModel, JPSView extends JPanel, and JPSController. JPSView overrides paintComponent(), which draws an image at a certain zoomFactor at position (renderPositionX, ...
1
vote
1answer
26 views

JPanel additional column on GUI upon run?

Been working on a school project in which my group and I are making a Wheel of Fortune game with a GUI and all. When making the panel for the puzzle to be displayed, I'm running into the problem of an ...
1
vote
1answer
23 views

jPanelMenu runs and creates an extra <div class=“jPanelMenu-panel”>

I'm attempting to implement jPanelMenu on my site but after menu is triggered there is extra space between the jPanelMenu-menu and jPanelMenu-panel. I checked it out with Firebug and when `<body ...
1
vote
2answers
70 views

passing data between JPanels

I'm making Tetris in Java and would like to have the game play on the left and scoring, buttons, and nextPiece on the right, like so: You'll notice that the score on the Game Panel is updating, but ...
-1
votes
1answer
28 views

Images replacement

How would i go about replacing the image called hangmanImg every time it go's through the loop? public void postImg() { String imgName = Integer.toString(numError); String hangmanImg = ...
0
votes
1answer
43 views

overlapping JPanels in the GUI

I am using BorderLayout in my application. I have a main panel to which I add two JPanels at the center. I want one of them to be transparent. My code is : mainPanel = new JPanel(); ...
0
votes
3answers
53 views

Java: Add panel to existing panel after runtime

Im trying to add a NEW card to an existing JPanel(cardLayout) with the click of JButton and then goto that new card but i get Null exception as the new card is not registering. Ive tried searching ...

1 2 3 4 5 46