Questions tagged [pane]
294 questions
127
votes
11 answers
Pane Title in Tmux
On my local machine I've got 3 node.js instances running simultaneously. Each has it's own pane in a tmux window called "servers". The problem is that it's not that easy to figure out which node is running in which pane, 'cause their logs are…

Andrey Lushnikov
- 3,143
- 3
- 22
- 21
49
votes
6 answers
JavaFX Panel inside Panel auto resizing
I have a JavaFX application which has only one FXML file. In this file I have one AnchorPane which has a StackPane inside it. Here is the screenshot:
When I start this application, I want to resize StackPane automatically with the AnchorPane. Thus;…

Korki Korkig
- 2,736
- 9
- 34
- 51
23
votes
3 answers
What is the difference between a Pane and a Group?
In JavaFX, what is the difference between a Pane and a Group? I can't make out any difference.

Florian
- 235
- 2
- 3
- 7
18
votes
3 answers
How to disable pane switching with ESC in Tmux
I noticed that esc will also start listening for instructions to switch panes. I'm new to Tmux, I copied a Tmux conf file earlier today which should only have enabled alt to switch panes, so I'm not sure if this conf file enabled it or if it's…

Tijsdv
- 181
- 1
- 4
17
votes
2 answers
Windows terminal: open multiple panes and execute specified command
I recently downloaded the new Windows Terminal. I have created the shortcut for opening the multiple panes(which is working fine). However, I am trying to execute a command for the respective pane.
wt -d -c "cls && php artisan serve" ;
…

Mr.Singh
- 1,421
- 6
- 21
- 46
17
votes
2 answers
How to center a node within a pane javafx
How do I create a Pane and have a child Node put at the center?
Lets say the Pane is 500 by 500 and the Node is an ImageView with a 200 by 200 Image
ImageView view = new ImageView();
Image img = new Image("test.png");
view.setImage(img);
Pane pane…

darewreck
- 2,576
- 5
- 42
- 67
17
votes
6 answers
How can I close an empty pane in Eclipse
I often end up with lots of empty panes in Eclipse that can only be minimized but not destroyed. How do I close these?
Update:
In this screenshot you can see two minimized on the upper left and several on the right hand side. In the center are four…

EclipseNoob
- 171
- 1
- 3
12
votes
2 answers
Windows terminal, split panes but the new pane is on the same directory as the previous?
Might be a little bit of a silly question. The problem is simple, I tend to have two panes, one where I write code, and the other to compile it. I do that with the windows terminal (cmd + vim + Mingw), but something is bothering me. I can split the…

Afonso Rafael
- 177
- 1
- 6
11
votes
3 answers
Visual Studio Code move or dock the 'Outline panel' to the right side of the Editor
How to move/dock the "Outline" Panel to the right of the editor
1. So we can have more "vertical" space in the left for the explorer...
2. and also more "vertical" space in the right for the Outlined items
Looks like this should be a pretty…
2. and also more "vertical" space in the right for the Outlined items
Looks like this should be a pretty…

ZEE
- 2,931
- 5
- 35
- 47
11
votes
2 answers
JavaFX: How to set a TiteledPane selected/opened by default
I am working on a project using java and javaFX, i need to know if there is a way to have the first TiteledPane in the Accordion opened by default..
I mean when the stage is loaded, the first TiteledPane is selected and its content showed without…

Malek Boubakri
- 820
- 2
- 17
- 36
10
votes
3 answers
Unable To See Variable Names In Environment Pane in RStudio v0.98.501
I apologize if this is a trivial question, but I have not found a solution by searching or tinkering.
I just downloaded RStudio v0.98.501 (I previously had the most recent version prior to this one... I do not have the exact version number) and…

user2665541
- 153
- 1
- 8
9
votes
2 answers
NavigationView Pane background
How can I change the NavigationView Pane background??
I'm trying this way:

Roberto Pinheiro
- 1,260
- 13
- 30
9
votes
3 answers
How to display GridPane object grid lines permanently, and without using the setGridLinesVisible() method?
Is it possible to make all GridPane's grid lines permanently visible without using setGridLinesVisible()?
I know that setGridLinesVisible() is for debugging purposes only, and I want to show grid lines for the end-user's convenience.
Also, I need to…

RoastedCode
- 133
- 1
- 2
- 8
9
votes
1 answer
How to embed JPanel into JavaFX pane?
How can I add a swingNode to a specific pane?
I'm actually trying to add a JPanel that loads an applet to the transparent area of the following and I'm not sure how to do it.

jordan
- 187
- 1
- 2
- 9
9
votes
4 answers
Get the number of rows in a JavaFX GridPane?
I initialized a GridPane through SceneBuilder and inside the controller I want to conditionally add a row to the GridPane. I do not want to store an int for how many rows I initialized, I want to be able to get the number of rows from the GridPane…

j will
- 3,747
- 11
- 41
- 64