Re: Problem with Window.SizeToContent = SizeToContent.Width
Hi Dirk, It looks like our SplitContainerPanel (used inside SplitContainer) MeasureOverride is getting called by WPF with the desktop size as the available size in this scenario. If an infinite a...
View ArticleRe: How to hide Document title bars
Hi Dirk, There isn't a way to hide the TabbedMdiContainer tabs externally. We do have an IsTabStripVisible property on them that is inherited from DockingWindowContainerBase, but that is set and...
View ArticleTabbedMDILayoutKind=Preview for auto hide tabs?
Hello, I would like to display one of my auto hide bottom tool windows' tab on the far right side of the screen, separately from the other two tabs I have in there, which should stay on the far lef...
View ArticleRe: TabbedMDILayoutKind=Preview for auto hide tabs?
Hi Andrew, The TabbedMdiLayoutKind enum is only for tabbed MDI and doesn't affect anything else. The AutoHideTabStrip primitive control currently uses an ItemsPanel like this for its layout:&l...
View ArticleRe: TabbedMDILayoutKind=Preview for auto hide tabs?
Here's what I ended up with, in case it helps anyone:<docking:DockSite.Resources><Style TargetType="{x:Type docking:AutoHideTabGroup}"> ...
View ArticleStrange behavior when ContainerMinSize is set for several (tool/document)windows
Lets say I have an application window which has a size of 1727x921. Then I have 4 ToolWindows which are next to each other horizontically. Now two of these 4 toolwindows have a fixed width. The fir...
View ArticleToolWindowContainer.TabStripPlacement XAML Value Not Honored
Setting ToolWindowContainer.TabStripPlacement="Top" (or any value other than the default "Bottom") via XAML is not honored. When first setting the value, the XAML designer does rerender appropriat...
View ArticleToolWindowContainer and its Reference to DockSite
I've run into an issue where intermittantly a ToolWindowContainer is loosing its reference to the DockSite and I don't know why or how to get that reference back. I'm programmatically moving a sin...
View ArticleRe: Strange behavior when ContainerMinSize is set for several...
Hi Dirk, What's happening is that once all 4 tool windows reach their minimum width, it goes into fallback layout logic where it distributes the widths evenly and doesn't allow resizing. I can r...
View ArticleRe: ToolWindowContainer.TabStripPlacement XAML Value Not Honored
Hi Rick, That is correct, you should never set properties on containers themselves. You should use the DockSite.ToolWindowsTabStripPlacement property instead since that will push down the value ...
View ArticleRe: ToolWindowContainer and its Reference to DockSite
Hi Rick, You shouldn't be modifying the ToolWindowContainer.Windows collection as that is something used internally by us and initial XAML load. Instead, you should be able to use methods like T...
View ArticleRe: ToolWindowContainer and its Reference to DockSite
I did try Attach() and Dock() with no joy. Attach only worked for the first move, say from container A to container B, but had no impact when trying to move again from B to A. Dock didn't seem to...
View ArticleRe: ToolWindowContainer and its Reference to DockSite
Hi Rick, That all should be working ok. We're not aware of any bugs in those methods. If you do run into something you think might not be working as intended, please let us know how to reproduc...
View ArticleRe: ToolWindowContainer and its Reference to DockSite
I just entered a ticket and included a small sample project that illustrates the issue.
View ArticleRe: ToolWindowContainer and its Reference to DockSite
Hi Rick, Thanks for the sample. It looks like you are naming ToolWindowContainer instances and targeting those. That is a no-no since per above, containers are dynamically created and described...
View ArticleRe: Strange behavior when ContainerMinSize is set for several...
The container shows a website which is not responsive, so its becomes bugged when the width is too small. Therefore we cannot lower the minimum width and a scrollviewer isn't possible. Is it some...
View ArticleRe: Strange behavior when ContainerMinSize is set for several...
Hi Dirk, The ToolWindow width is limited by the width of the ToolWindowContainer, which in turn is limited by its container (such as a SplitContainer/DockSite), all the way up to the containing W...
View ArticleResizing TabStrip for DocumentWindows in Docksite
Hello, I have a docksite with document windows inside:<docking:DockSite x:Name="styleDocumentDockSite" AreNewTabsInsertedBeforeExistingTabs="False" DocumentItemContainerSt...
View ArticleRe: Resizing TabStrip for DocumentWindows in Docksite
Hello, The product does support left/right tabstrip placement at this time but there is no resizing support for the tabs. While we don't have properties for tab size ranges published on TabbedMd...
View Article