Questions tagged [panels]

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.

258 questions
0
votes
1 answer

Checking if panel has moved during MouseDown

I have a panel, that can be moved left or right (chosen automatically according to its current position, distance is static) by click. Also, the user can drag the panel vertically however he wants by clicking the panel, holding the button and moving…
Marek Buchtela
  • 973
  • 3
  • 19
  • 42
0
votes
1 answer

wxPython Multiple Splitter Windows

I'm trying to embed splitter windows in set of panels, but when I run the following I see a flash, as if the top splitter window is overlaying the top panel of the second splitter window. I tried to keep track of the children of the frame and panels…
user1032355
  • 335
  • 1
  • 8
  • 13
0
votes
1 answer

Can/How do I create a class panel and use it in my main frame (wxpython)

My current setup class AppFrame(wx.Frame): def__init__(self,parent,id=-1,title='program'): wx.Frame.__init__(self,parent,id,title,size=((400,400))) # Panels self.AppPanel = wx.Panel(self,-1) …
Isov5
  • 415
  • 6
  • 16
-1
votes
1 answer

What panels and containers allow Overlapping of UI elements

What are the panels and containers that allow overlapping with varying z-index ? (escluding Canvas) --Since I was asked for details this is part of the code:
Relok
  • 301
  • 4
  • 14
-1
votes
1 answer

wxpython + after changing panel and redo layout panel is very small

I change my panels by destroying panel 1 and then show panel 2. I cannot use the method creating both and hide en show, because than I have other problems. But after redo my layout my panel is very small. How can I make it the same size as…
VeVi
  • 281
  • 2
  • 7
  • 17
-1
votes
1 answer

VB.NET Custom Menu in Panel

Hi I'm implementing a custom menu in a panel like this image (link) below.. heres the link http://i.imgur.com/5OlRk9c.png My question is, how can I detect that the user clicks on another part of my form excepts the menu panel and buttons(inside the…
-1
votes
1 answer

Change a lower Panel in preview in VS C#

Is there any way how do I temporarily hide panel in the preview? I need to work with the second panel which is under the first.
HonzsSedlomn
  • 236
  • 3
  • 14
-1
votes
1 answer

Panel Location Sliding Effect in VB.NET

what's wrong in my code? my syntax is right, the logic and concept is right. but when i run the program and pressed the button(that make the panel slides UPWARD) the panel doesn't stop. even though I put a condition inside the timer. here's the…
Ellis
  • 111
  • 1
  • 2
  • 12
-1
votes
2 answers

Bootstrap panels side by side

Someone knows why my panels are not in one row? I want them side by side not like: PANEL PANEL PANEL I need this: PANEL | PANEL | PANEL I'm creating offer panels from mysql. And i need all offer in one row. my…
user3650308
  • 39
  • 1
  • 3
-1
votes
2 answers

JPanel Issue : java.lang.NullPointerException

How can I properly add a JPanel that is defined in the "RoomSystem.Java" code? The ERROR: Exception in thread "main" java.lang.NullPointerException at java.awt.Container.addImpl(Unknown Source) at java.awt.Container.add(Unknown Source) …
user3552931
  • 1
  • 1
  • 5
-1
votes
1 answer

open side panel on page onload

I want to open a side panel on page onload code fragment used is $(document).ready(function(event,ui) { $("#mypanel").panel("open",{display: 'overlay', position: 'left'}); });
Knight Rider
  • 186
  • 10
-1
votes
1 answer

Changing panel backgrounds with a borderlayout Manager

I am trying to set my buttons to change the panel background color in which the buttons reside using a borderlayout manager. I have no problems when I use flowlayout but can't figure it out with the border layout. I feel like I am missing something…
JRave
  • 81
  • 1
  • 8
-1
votes
1 answer

Max and min tools panels extjs

I have 3 panels. I use the vbox layout. I want to maximize the panels like dockable object when I click on the tool for min and max. How can done that be done??
user2803
  • 63
  • 9
-2
votes
2 answers

Repaint on two panels do not work on second panel

I have a problem by programming an user interface. I am using Swing. I begin to create a Tabpane with 5 Tabs. Tab 1 contains: Button1 and a textarea Tab 2 contains: Button2 and a textarea Tab 3 contains: Button3 and a textarea Tab 4 contains:…
Balex
  • 1
-2
votes
1 answer

Moving panels on button press C#

I'm confused as to how I can accomplish this. I want to press the buttons and then the bottom panels go to the top and then open, if that makes sense. This is essentially what I have https://i.stack.imgur.com/adLoQ.png And I only have the basic code…
user3097273
  • 7
  • 1
  • 5
1 2 3
17
18