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
2
votes
1 answer

weifenluo.winformsui.docking dll for Linux

I have C# application which uses weifenluo.winformsui.docking.dll 2.3.1.0 for Docking. It runs nicely in Windows but does not run in Mono on Linux, ubuntu version 10.04 32-bit. It gives the exception with the weifenluo.winformsui.docking…
Ambuja
  • 197
  • 1
  • 12
2
votes
1 answer

Should TForm.ManualDock call onFormShow?

As I typed this question I realize that it probably should. Docking a form to a TPageControl calls FormShow when form.Create() is called and when form.ManualDock(pagecontrol,pagecontrol.alClient) is called. Un-docking the form also calls show…
Richard Holland
  • 2,663
  • 2
  • 21
  • 35
2
votes
1 answer

Controlling the windows 7 on screen keyboard position from code

My manager thinks he's seen other people "lock" the windows on screen keyboard to the bottom of their applications, effectively docking it with their window, and wants me to reproduce this. They're using vb6 and occasionally vb.net. I've done a good…
Sparky
  • 2,694
  • 3
  • 21
  • 31
2
votes
2 answers

How to make a docked panel go overtop of another docked panel

I have a panel that is docked to the left and another panel that is docked as fill in the middle. my panel on the left starts out with a width of 8 and then it slides open to 295. I need it to go over top of the panel. What it is doing is shoving…
Spafa9
  • 742
  • 3
  • 14
  • 30
2
votes
2 answers

How do I know where a control will be docked, and how do I prevent the docking?

I’m using Delphi’s 'regular' docking (with DockSite = True and UseDockManager = True). Now there’s several DockSite controls, and several dockable forms. However, not each dockable form is supposed to go in each dock site. The forms know what kind…
Martijn
  • 13,225
  • 3
  • 48
  • 58
2
votes
2 answers

Disable code window undock in VS2010

I've seen cases where people are asking how to disable on double click. But i'd like to go one further and disable the feature altogether, does anyone know how to? I don't mean all windows (Properties, Debug, Output) just code windows (Pages,…
Pedro Costa
  • 2,968
  • 2
  • 18
  • 30
2
votes
1 answer

docking panel in xul

how can I make docking panel in xul. It should work like in firebug. I tried something like this: myWindow = window.open("chrome://project/content/myWindow.xul", "someRandomName", "chrome"); and myWindow.xul is:
Adi
  • 2,011
  • 2
  • 15
  • 14
2
votes
2 answers

How to make progress bar location to be synchronous when maximizing the windows form?

I tried docking but it works in some pre defined positions. I want to place it in a small area at the bottom of the form and keep its relative position when maximizing the form.
user14985105
2
votes
1 answer

Docking Like Mac OSX Dock in WPF

As Here on the link is a nice docking application but I need something like Mac OSX dock, It Docks at a side without taking the screen, and when we need it it's there. Please tell me docking solution that does not take up the screen space.
Alam
  • 428
  • 4
  • 9
2
votes
0 answers

DOM update spikes with angular 2 *ngFor and golden-layout

Dear fellow Angular 2 developpers, Me and my team are facing a strange performance issue with our angular 2 application (2.1.1). We are using a docking layout, based on golden-layout.js (https://golden-layout.com/). It works wonderfully and…
David Brem
  • 504
  • 2
  • 6
  • 16
2
votes
0 answers

Docked Control doesn't always have same width as parent

I have a panel docked to the top of another panel. The parent panel lives inside of an Actipro DockManager. If I resize the parent panel, everything is fine. If I resize the form, the child panel doesn't end up with the same width as the parent…
Jake Pearson
  • 27,069
  • 12
  • 75
  • 95
2
votes
2 answers

Why does car dock mess up my app?

With the Android 2.2 update came a new car dock app. If my app is in the foreground when I dock my phone, my app gets killed or paused or something, and when I try to re-open my app, it's all messed up. It has lost its state information. Does…
Brad Hein
  • 10,997
  • 12
  • 51
  • 74
2
votes
1 answer

All MDI windows are active

I am getting a weird issue. I have a few MDI windows in QMainWindow and catching windowStateChanged() in one of MDI to show/hide docking widget. Everything works fine here. But if I try to put one of that window to dock (not adding it to mdiArea())…
Aleksey Kontsevich
  • 4,671
  • 4
  • 46
  • 101
2
votes
1 answer

Delphi TDockZone resizing with rsUpdate style

I use TPanels for docking in my project, where I can dock more forms into. But the docking zones resize only with "rsPattern" style. I want them to resize in the "rsUpdate" style. Because Controls.TDockTree unfortunately has all necessary routines…
tk_
  • 490
  • 3
  • 15
2
votes
0 answers

Possible Chrome bug: Docking a div outside the body makes the scrollbar inaccessible

I'm writing a Chrome extension that involves appending an iframe as the sibling of an existing page's body, reducing the height of the body to stay above the iframe, and setting the overflow of the html and body tags to "scroll". Example…
user4974193