Questions tagged [docking]

A user interface design in which panels are arranged inside a container. Each docked panel is attached to another panel or a side of the container.

273 questions
3
votes
0 answers

How to make manual docking seamless / invisible?

I am trying to use docking as an alternative to embedding (related question) a TForm into a TWinControl (in this case a TTabSheet). The user shouldn't notice that there are two different forms at all. How do I avoid the close button and "drag bar"…
Jens Mühlenhoff
  • 14,565
  • 6
  • 56
  • 113
3
votes
0 answers

How to catch AvalonDock undocking and Docking events?

I am Using AvalonDock in a WPF project. And I would like to konw how to handle the Docking and Undocking event. i have tried MouseDown and Up while Dragging but no apparent success. ...
Bayo Alen
  • 341
  • 1
  • 6
  • 13
3
votes
2 answers

How can I dock one window to another in Swing?

I have two JFrames open. I have window B spawn to the right of window A, snugged up to window A's right edge. I want it to stick to and move with window A. How can I make it do this?
Sinaesthetic
  • 11,426
  • 28
  • 107
  • 176
3
votes
2 answers

How to change CDockingManager docking mode on-the-fly?

I want to be able to switch between immediate and smart docking in a MFC client application. By default DT_IMMEDIATE will be set so the dock panes will function similar to Visio. However when the user presses and holds down the Ctrl key I want to…
AJG85
  • 15,849
  • 13
  • 42
  • 50
3
votes
1 answer

Mac OSX App - How do you make a "Docking window"?

I'm building an app for Mac OSX in Objective C, and I'm wondering if there's any built in support for "docking" behavior. What I mean by this is having a main window with "slots" with other windows that can either be free floating or snap into place…
Sunny724
  • 156
  • 2
  • 12
3
votes
1 answer

With a custom WinForms control, can I change the rectangle that nested controls dock inside?

I am trying to create a custom control that behaves a lot like a GroupBox, but with properties for changing the border color, changing the group label text color, and hiding the group label. The control inherits directly from UserControl, and…
JamesFaix
  • 8,050
  • 9
  • 37
  • 73
3
votes
1 answer

Docking framework for Eclipse Forms/SWT

I have a few composites in an Eclipse editor, and the user would like to resize, maximize, restore, and move those composites around in the editor, as if each of those was a portlet. Is there a toolkit for doing this, or is it something that I'll…
Pradyumna
  • 1,583
  • 4
  • 19
  • 34
3
votes
2 answers

WPF Docking Control Recommendation

Is there a Docking control that does a good job and provide good options for ReSizing? I want some docked windows to be of fixed width/Height and others to resize. Most of the Docking controls I have tried, doesn't provide good option to set…
Markus2k
  • 165
  • 2
  • 2
  • 8
3
votes
2 answers

CSS for docking/sliding panel on a web page

I would like to display any validation error messages on a web form similar to compilation error messages in visual studio that slides up from the bottom when there are errors. the error message panel should overlay on top of the form without taking…
RKP
  • 5,285
  • 22
  • 70
  • 111
3
votes
0 answers

AvalonDock autohide to side of pane instead of window

I have the following AvalonDock XAML:
Vaccano
  • 78,325
  • 149
  • 468
  • 850
3
votes
1 answer

Control docking not working correctly in Visual C#

Here's what I did: Place a TextBox control Set its Multiline property to True, and its Dock property to Fill Place a Button control (also works with a ToolStrip, which is docked at the top by default, and many other controls) Set its Dock property…
flarn2006
  • 1,787
  • 15
  • 37
3
votes
1 answer

Disable floating tabs visual studio 2012

Is there a way to disable floating tabs in Visual Studio 2012? I am flicking back and forth between the xaml and code-behind windows and another application, and every now and then the code-behind window decides to de-dock itself. It may be due to…
mcalex
  • 6,628
  • 5
  • 50
  • 80
3
votes
4 answers

Adding/Docking controls in UserControl C# .NET

I am writing a UserControl which adds child controls programmatically. Currently I am adding new controls like so: this.Controls.Add(new Control() { Height = 16, Dock = DockStyle.Top }); The problem I am experiencing is that new controls are added…
Matthew Layton
  • 39,871
  • 52
  • 185
  • 313
3
votes
5 answers

How to dock a child control to bottom right of the parent control?

How do i dock a child control at a bottom right position when compared to the parent control? I can see that the dockstyle enum has values for None,Top,Bottom,Right,Left and Fill ... How can i set for Bottom right ???
Nick
  • 586
  • 2
  • 7
  • 22
2
votes
1 answer

define a page control as a jvcl dockserver.custom dock panel. is it possible?

I have a main form with a left panel and in the center of the form I have a page control..and I am trying to dock other forms on the page control, as I have seen on an example made by Alister Christie; the thing is that the dragging of forms into…
Cristian Vasuica
  • 369
  • 9
  • 22