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
96
votes
4 answers

How to use DockStyle.Fill for standard controls in WPF?

I'm used from windows forms, that I create a panel, place controls inside it and give them DockStyle.Fill to max out their size to the surrounding panel. In WPF I want to have the same. I have a TabControl and I want its size to fill as much of the…
citronas
  • 19,035
  • 27
  • 96
  • 164
92
votes
8 answers

How to control docking order in WinForms

I'm looking for a way to control the order in which the items dock to the top of my control. I've noticed as I add children to my control (in the designer, or through code), the newest child is always at the top. I'd like for the newer children to…
caesay
  • 16,932
  • 15
  • 95
  • 160
64
votes
8 answers

How do you do AppBar docking (to screen edge, like WinAmp) in WPF?

Is there any complete guidance on doing AppBar docking (such as locking to the screen edge) in WPF? I understand there are InterOp calls that need to be made, but I'm looking for either a proof of concept based on a simple WPF form, or a…
paulwhit
  • 8,719
  • 4
  • 29
  • 30
37
votes
7 answers

What are good docking frameworks for Java/Swing?

I'm looking for a good lightweight Java docking framework. I know that Netbeans and Eclipse can be used as RCP, but I'm looking for something a little bit more lightweight.
Daniel Rikowski
  • 71,375
  • 57
  • 251
  • 329
28
votes
1 answer

What is the difference between Dock and Anchor

I have a windows form which have a lot of controls in that(Listbox,Groupbox,Combobox,TextBox,ListBox etc). I need to resize and arrange the controls automatically whenever the form's size gets changed. I need to know the difference between Dock and…
Sarath Subramanian
  • 20,027
  • 11
  • 82
  • 86
22
votes
3 answers

Is it possible to dock the "Find/Replace" window in Eclipse?

I could have sworn I saw it once before in a screencast where someone had the find/replace window docked in their Eclipse environment. However looking through the list of options in "Window > Show" the closest thing I can find is the Search…
Ghosty
  • 3,203
  • 2
  • 18
  • 13
19
votes
3 answers

Docking Window inside another Window

I have a winform application (.NET 2.0 C#). From this application, I want to start another process (another winform application) and dock it to my window (or at least make it look like it is docked). So far, I can only find information about…
J.Hendrix
  • 2,199
  • 4
  • 20
  • 26
19
votes
4 answers

How to make a WPF ListView no taller than its contents but fit to the window with other controls?

I'm trying to arrange a WPF UI as follows: At top of the window are some controls of self-determining height (effectively docked to the top of the window, but as tall as they want to be). Beneath those controls is a ListView. The ListView may…
El Zorko
  • 3,349
  • 2
  • 26
  • 34
15
votes
2 answers

IDEA dock window layout

Is it possible to change the way that docked tool windows in IDEA are laid out? Currently, the bottom most window takes all the horizontal space, and the left and right windows do not take all the vertical space (because of the bottom window). Is it…
daveb
  • 74,111
  • 6
  • 45
  • 51
14
votes
13 answers

Adobe Flex vs Silverlight

This is not a pure technical question, but I believe answers will help the RIA community. We are a software development company working on development of a stock trading product. We chose to use Adobe Flex (in mid of 2008) due to its browser…
Khurram Shakir
  • 201
  • 1
  • 3
  • 11
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
13
votes
2 answers

Stream and Play audio from android application to any available Speaker like A2DP,Car speakers etc

From my android application I want to stream audio to any available speaker like A2DP speaker ,docking speakers or car speaker. for doing this I want to use Bluetooth connection and stream over Bluetooth connection... I saw following links On…
Shruti
  • 1
  • 13
  • 55
  • 95
11
votes
4 answers

Window docking advice for Mac

I'm from a Windows programming background when writing tools, but have been programming using Carbon and Cocoa for the past year. I have introduced myself to Mac by, I admit it, hiding from UI programming. I've been basically wapping my OpenGL…
Shane
  • 3,051
  • 3
  • 40
  • 45
11
votes
4 answers

Implementing a multidock window system (like blend, visual studio) in WPF

How would you go about to implement a docking toolbox windowing system as seen in Expression Blend where you can dock toolbox windows in a lot of ways beneat each other, overlapping as tabs or as floating top level windows. My system should behave…
bitbonk
  • 48,890
  • 37
  • 186
  • 278
11
votes
1 answer

Can I forward keyboard shortcuts to a lync conversation window docked in a WPF window

I am working with Lync 2013 SDK and WPF in a way to add a toolbar to the Lync conversation window. I did dock the Lync conversation window in a panel inside a WindowFormHost pretty much following this tutorial…
user1098580
  • 409
  • 4
  • 9
1
2 3
18 19