Questions tagged [panel]

A panel is a simple container that allows other elements to be placed into it, especially visual user interface elements.

A panel is a simple container that allows other elements to be placed into it, especially visual user interface elements. Panels can generally aid in developing more complex user interfaces.

4086 questions
15
votes
6 answers

How to display notice in admin panel on Plugin Activation?

I am trying to display a notice in admin panel when I activate my test plugin. How can I display that? What's that method?
Thompson
  • 1,954
  • 10
  • 33
  • 58
15
votes
2 answers

Simple Gnome Panel Applet in Python

When I'm on the train to work I connect my netbook to my Nexus One's wifi hotspot. As I go through a tunnel my phone obviously loses it's 3G connection and takes a while to re-establish once the train emerges. But the netbook wifi logo stays…
Tom Viner
  • 6,655
  • 7
  • 39
  • 40
15
votes
3 answers

How can I position an Angular Material panel dialog relative to a button?

According to a discussion at Github one cannot position a standard dialog (api), but panel dialogs (api) can be positioned. A simplified demo shows that this is true: var position = this._mdPanel.newPanelPosition().bottom(0).right(0); The Angular…
isherwood
  • 58,414
  • 16
  • 114
  • 157
15
votes
4 answers

Label individual panels in a multi-panel ggplot2

I'm interested in trying to create simple corner labels for a multipanel figure I am preparing in ggplot. This is similar to this previously asked question, but the answers only explained how to include a label at the top of the plot, not produce a…
Thraupidae
  • 665
  • 2
  • 5
  • 14
15
votes
5 answers

Hide Properties/Toolbox Pane when not in Resource View?

Every time I view a form or dialog in Visual Studio (2005) the Properties and Toolbox panes show up on the right side of my screen. That's good to have because they are useful for manipulating dialogs. However once I switch back to source code…
14
votes
2 answers

Panel.Children vs Panel.InternalChildren -- What's the difference?

According to MSDN - Panel.InternalChildren Property: Classes that are derived from Panel should use this property, instead of the Children property, for internal overrides such as MeasureCore and ArrangeCore. So, this is really a 2 part…
myermian
  • 31,823
  • 24
  • 123
  • 215
14
votes
4 answers

How to dock to the top and the left

With An anchor I can write the following line: myControl.Anchor = (AnchorStyles.Top | AnchorStyles.Left); And it will anchor myControl to the left and the top. Why can't I do the following: myControl.Dock = (DockStyle.Top | DockStyle.Left); I can…
AidanO
  • 868
  • 1
  • 11
  • 33
14
votes
8 answers

Custom ASP.NET Container Control

I've been trying to create a custom control that works exactly like the Panel control except surrounded by a few divs and such to create a rounded box look. I haven't been able to find a decent example of how to do this. I need to be able to place…
Arthur Chaparyan
  • 2,015
  • 6
  • 29
  • 35
14
votes
2 answers

how to save panel as image in swing?

Hi i want to convert panel which contains components like label and buttons to image file. I have done the following code. The image was saved. but the content of the panel not visible or saved. Can anyone tell me how to save the panel with its…
Babu R
  • 1,025
  • 8
  • 20
  • 40
13
votes
2 answers

Resize panel to fit contained elements in windows forms

I am creating a collapsible panel element, which would essentially be a panel element with a button element and a panel element below the button. Clicking the button causes the neighboring panel to have Visible = false. I would like to resize the…
user420667
  • 6,552
  • 15
  • 51
  • 83
13
votes
3 answers

Dynamically changing Mouse speed

Guys, I have a C# Winforms application with a panel inside the form. What I want to do is, whenever the mouse pointer enters this panel, I want to slow the movement speed of the mouse by 50%. Once the pointer moves outside this panel, I want to…
Icemanind
  • 47,519
  • 50
  • 171
  • 296
13
votes
5 answers

How can I dismiss a bootstrap panel using data-dismiss?

I have a button which opens a panel and I want to be able to close it like I would with an alert. The Default panel example from bootstrap docs
Panel heading without title
Relequestual
  • 11,631
  • 6
  • 47
  • 83
13
votes
1 answer

Bootstrap Accordion Panel/Collapse

My Bootstrap accordian is acting temperamental! I have created three panels displayed in a column grid, but the 2nd, and 3rd collapse menu closes the wrong menu (e.g. clicking/opening menu2 then clicking/opening menu3 will close menu2 before opening…
tom1bomb
  • 165
  • 1
  • 1
  • 8
13
votes
1 answer

WPF - LayoutUpdated event firing repeatedly

I've been adding a bit of animation to my WPF application. Thanks to Dan Crevier's unique solution to animating the children of a panel combined with the awesome WPF Penner animations it turned out to be fairly straightforward to make one of my…
Drew Noakes
  • 300,895
  • 165
  • 679
  • 742
13
votes
1 answer

Plotting xyplot with regression line on lattice graphics

I have loaded the lattice package. Then I run: > xyplot(yyy ~ xxx | zzz, panel = function(x,y) { panel.lmline(x,y)} This produces panels of plot, showing the regression line, without the xyplots. I am doing the panel.lmline without fully…
Selvam
  • 1,093
  • 7
  • 22
  • 30