A panel is control used to sub-divide the form according to functionality. For example a Windows form is divided with two panel controls, one contains the controls for search criteria and the other one show the outcome.
Questions tagged [panels]
258 questions
0
votes
1 answer
Toggle between panels
I am trying to implement a solution that required to toggle between 2 independent panels, Sign In and Sign Up.
Each panel should have the following characteristics:
1- They are only displayed when a link in the navbar is clicked;
2- Only 1 of them…

Marcelo Martins
- 150
- 15
0
votes
2 answers
Rearranging buttons and jlist in a panel
I created buttons and a jlist. All my buttons are in another panel called buttonPanels, and I wanted to add that panel and the jList to another panel called jPanelSouth. I tried positioning my buttons by using the ______.setLocation(x,y) but the…

Jake
- 313
- 1
- 7
- 16
0
votes
1 answer
Changing size of a panel
Soo I'm trying to make two panels and I wanted the top panel to be at least 2/3 of the window. I used GridLayout and it splits it in half, and I want to make it soo that the top is a little bit bigger. Is there another Layout I should consider…

Jake
- 313
- 1
- 7
- 16
0
votes
2 answers
Adding a panel to a JFrame
There are no errors in the code but i cant seem to see the Jlabels in the window. Im not sure if the panel was added or if the jlabels were added to the panel .
public class JDemoResistance extends JFrame{
private final JButton button1;
…

Jairo Jimenez
- 11
- 1
- 5
0
votes
2 answers
Twitter bootstrap cerulean color panels
I am using the Twitter Bootstrap Cerulean template.
In this theme I use the different panels: panel-primary, panel-panel-success, panel-info and panel-warning.
While the panel-primary is clearly visible, I find that the other types of panels are…

michltm
- 1,399
- 2
- 13
- 33
0
votes
1 answer
Android panels/panes/islands
How do I make the boxes here around the text? Do I have to change from Relative- or TableLayout? Are they called panels?

user1107221
- 55
- 5
0
votes
1 answer
Panel Events Stop After MouseDown event on LineShape
In Visual Studio 2010, I am using mouse events with LineShapes located inside a panel. I created a simple example that demonstrates a behavior that I can not explain and is holding up my project.
Public Class Form1
Public Moused_Down_On_Line As…

BigBobby
- 423
- 1
- 3
- 17
0
votes
1 answer
Trying to get either one of two panels to slideToggle when button is pressed
I'm trying to create a code that makes one of two panels slide down when a button is pressed. Here's my code:
http://jsfiddle.net/06szhymc/82/
$(document).ready(function(){
$("#imageslider").click(function(){
rand =…

J N
- 3
- 1
0
votes
0 answers
What Is The Best Way To Animate A Panel Container Opening And Closing (With Added Controls)
I am trying to create an animated collapsible panel that consists of three different elements. Each element is created from a panel container that sits on a user control. It is made up of a header panel, a content panel and a footer panel (with…

Riples
- 1,167
- 2
- 21
- 54
0
votes
2 answers
Why is the last panel on a new line
I'm having some problem with bootstrap 3.0 using panels and cols.
When the page goes full screen I would like to have the last panel just below the first one rather than having it in a whole new line to decrease the scrolling for the users that uses…

Akyo
- 139
- 1
- 12
0
votes
1 answer
C#: making a two-dimensional array of panels
I'm trying to write some code that displays a grid of panels (grid[]) onto a larger panel (gridHolder). Here's my code so far:
public void setupPanels(int x, int y)
{
grid = new Panel[y, x];
this.Controls.Add(gridHolder);
…

Kimbabwe
- 1
0
votes
2 answers
Help with setting up panels in Java
I'm new to Java awt, so I am having trouble with setting up panels. I have one giant panel, which needs to hold 3 panels inside (photo is attached at the bottom). One will go on top(1), second one will be in the middle(3), and third goes on the…

Misa
- 889
- 1
- 10
- 20
0
votes
2 answers
How can a subform inside a panel of parentform access parent form controls on button click
I have a parent form which has a textbox1 and a panel1 and a button1. I open another form(say form2) in panel1 on button1 click. form2 has a textbox and button. when i enter a value in textbox and click on the button in subform , the textboxvalue of…

Ameena
- 187
- 2
- 5
- 18
0
votes
1 answer
jQuery Animation Images
I've been developing a front end and basically there's a feature I can't figure it out how to do it.
I have 2 background images and on each image I have a button. When I click on the button the opposite image animate to out off the screen. I'm doing…
0
votes
2 answers
Drupal panels module is shown missing but installed
I'm new to Drupal (v7.3.4) but so far install is ok except for panels module is shown to be "missing". It is in the modules folder with all other modules (the rest all show fine). I've reinstalled and no change.
I tried a lower version and I get a…

Bob22
- 109
- 13