AvalonDock icon indicating copy to clipboard operation
AvalonDock copied to clipboard

Our own development branch of the well known WPF document docking library

Results 154 AvalonDock issues
Sort by recently updated
recently updated
newest added

I have a very fancy bug that i just discovered due to a popup opening in a buggy way. # Preparations 1. Create a new project with AvalonDock 2. Create...

In our project I had to implement custom `ILayoutUpdateStrategy` in order to handle dynamic document/anchorable additions properly. Every now and then I come back to make some changes to this...

![image](https://user-images.githubusercontent.com/50090115/129692450-f5b18aa1-abfd-44f7-a7c8-aaf5991d963c.png) The image on the left is what i want. But now it looks like right image. (two titles are displayed) how can i solve this?

Hello, i am having trouble with the visibility of LayoutAnchorable. In my Prism project i implemented the save-load layout as described here: https://www.codeproject.com/Articles/719143/AvalonDock-Tutorial-Part-Load-Save-Layout The issue appeared when I needed to...

Im trying to edit the VS2013 theme. How can I set the corner radius for document panes and Layout AnchorablePanePanes for both docked and floating panes?

Changing the function here should do the trick https://github.com/Dirkster99/AvalonDock/blob/e52d8cca62332b1997f4717aab35f505c2ea57d9/source/Components/AvalonDock/Controls/LayoutAnchorControl.cs#L132-L133 => ```c# if (_model.IsActive) { _model.Root.Manager.HideAutoHideWindow(this); _model.IsActive = false; } else { _model.Root.Manager.ShowAutoHideWindow(this); _model.IsActive = true; } ``` In some cases,...

Hello, I'm trying to build a demo application that will host a few different views on the same context. Since I want the UI to be composable I'm trying the...

I use AvalonDock for my game editor. As long as I can remember, I've had issues with my PC slowing down after running for a day or two straight. Eventually...

The MouseLeave event is sometimes not fired if you leave a control that is in a floating window and leave the complete floating window area. If you move the mouse...

When `IsVirtualizingDocument="False"`, the time to open a new document steadily increases as the number of documents already open increases. Upon investigation, the increasing time is being spent in the `UpdateChildren`...