docking

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 componentized version that can be consumed. Related resources: http://www.codeproject.com/KB/dotne...

Creating Docking Panes in CView instead of CMainFrame

When creating an MDI Application with "Visual Studio" style using the AppWizard of VS2008 (plus Feature Pack), the CMainFrame class gets a method CreateDockingWindows(). Since I don't want all panes to be always visible but display them depending on the type of the active document, I made those windows to members of my views and also mo...

Dynamic Splitter Panes

How would I go about implementing dynamic/docking splitter panes in a vb.net app similar to visual studio? ...

does anyone know of good delphi docking components?

we'd like to add movable panels to an application. presently we've used DevExpress docking library but have found them to be disappointingly quirky & difficult to work with. it also has some limitations that aren't so great. auto-hide, pinning, and moving of pages by drag-and-drop are all features we'd like to use. the built-in delph...

Why does Visual Studio 2008 forget where to dock my add-in's window pane?

I wrote a simple add-in for Visual Studio 2008 that opens a dockable window pane. You can download the source and a binary installer by clicking here. The nature of the add-in means that it is ideally going to stay docked next to where you edit your source. But sometimes, on some installs, it won't stay docked. You run VS, you dock my...

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. ...

How would you design a docking library for WPF?

I want to implement a docking library in wpf with behavior similar to Adobe Photoshops CS3. You can attach floating Panels to other Panels or Docks by mouse dragging. Docks have a fixed location. Would you use a central Docking Manager class? How would the message flow look like? I was thinking of using 2 interfaces, called IDock and I...

UserControl docking order issues

I've encountered an issue with the ordering of docked UserControls. I have 2 that are docked to "Top", and the order that they appear is the opposite of what I wanted. What I've tried: I tried reversing the order in the .Designer.cs to make it work, and while that worked in the UI Designer, it reverted while running! I've also ...

WPF Docking Manager with Databinding support

Hi, Does anyone know about a Docking Control like Visual Studio for WPF, where Databinding for the Panes is supported? I tried the DockManager from Infragistics and from Actipro, but they lack this support. For example, the Panes for the content need to be bound through Databinding, so removing the Entity on the other side of the bindin...

Detecting when a CControlBar's docking state has changed

I'm using a CControlBar-derived class and I would like to detect when the docking state of the CControlBar has changed (i.e., docking from vertical to horizontal or when it goes into floating mode). Of course, I could handle WM_SIZE but it seems to be a waste of ressources doing the task every time a WM_SIZE message is fired instead of ...

.Net Control to do Google Chrome Docking

I like the way that Google Chrome allows you to grab tabs out of a window to create additional windows. Does any one know if there is way to do this style of docking and undocking in my .Net application? Or better yet does any one know if there is a .Net component that can provide this type of functionality? ...

.Net UserControl - Docking 2 controls

Let say I have 2 controls in a usercontrol : One (controlA) that have a fixed height and need to be dock in the bottom and an other (controlB) in the top that must fill the leaving space. If I use bottom dock for controlA and fill dock for controlB it's doesn't work because controlA goes over controlB ... How can I do this correctly, ...

Docking a form on a MDI

Hi there, I am trying to dock a form onto a MDI, but when I use the following code, it just flashes itself and the form disappeared. using (frmDock formDock = new frmDock()) { formDock.MdiParent = this; formDock.Dock = DockStyle.Left; formDock.Show(); } ...

User Control Docking Attribute

I am trying to make my own user control and have almost finished it, just trying to add some polish. I would like the option in the designer to "Dock in parent container". Does anyone know how to do this I can't find an example. I think it has something to do with a Docking Attribute. ...

Docking with ElementHost

I am attempting to add a WPF usercontrol to an existing WinForms project and get the WPF UserControl to dock and fill the entire space. There's a current framework that loads WinForms UserControls into a parent form (into a panel) in response to button clicks. This is where I'm trying to hook in - The WinForms UserControl that's curren...

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, which is working on a development of Stock trading product. We chose to use Adobe Flex (in mid of 2008) due to its browser penetration and relative maturity compare to Silverlight. we already developed the sys...

Focus Issues in Wiefen Luo panels

I am having an issues with focus on multiple docking panels. One is a rendering window which use the WSAD keys for camera movement, and the other is a tree control, problem is when I am moving in the 3D world, the selection in the tree control also changes, e.g by having "D" pressed in the 3D window, the items that start with "D" in the ...

How to close dynamically created CDockablePane windows?

In my MFC (Feature Pack) application one can dynamically create docking panes to display charts/tables etc. However, I don't want to let the user open the same thing twice. I create a pane like this: // Create CMyDockablePane pPane pPane->Create(...); pPane->EnableDocking(CBRS_ALIGN_ANY); // Create CRect rcPane pPane->FloatPane(rcPane)...

How can I dock my winform application with another application.

Hi guys I am trying to do my winform application dock and follow another application, like IE or word. My full plan is run the program underground and then this specific application is running, my winform will maximize and dock, will follow if moved, minimize if this application is minimized. Can you guys show me some ideas about how t...

Docking a form to another form panel

Is it possible to dock a form1 to a panel contained in another form2? I'm launching form1 with ShowDialog from a form2 event. ...