-
Notifications
You must be signed in to change notification settings - Fork 337
Open
Description
Version: 4.51.1
Visual studio 2019 and .Net 5.0
Consider the following simple MWE
<Window x:Class="Dirkster99AvalonDock.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ad="https://github.com/Dirkster99/AvalonDock"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Dirkster99AvalonDock"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="MainWindow"
Width="800"
Height="450"
mc:Ignorable="d">
<Grid>
<ad:DockingManager x:Name="dockManager">
<ad:LayoutRoot>
<ad:LayoutPanel Orientation="Vertical">
<ad:LayoutDocumentPane>
<ad:LayoutDocument Title="doc" CanFloat="True">
<Border Background="AliceBlue" />
</ad:LayoutDocument>
</ad:LayoutDocumentPane>
<ad:LayoutAnchorablePane DockHeight="100">
<ad:LayoutAnchorable Title="anchorable">
<Border Background="Gold" />
</ad:LayoutAnchorable>
</ad:LayoutAnchorablePane>
</ad:LayoutPanel>
</ad:LayoutRoot>
</ad:DockingManager>
</Grid>
</Window>The result is
As shown above, the header of the LayoutAnchorable is not shown, which is supposed to display the title.
Is this a bug, or did I miss anything?
[NOTE] If I simply change the avalon dock to the one in xceed wpftookit, then the title of the anchorable pane is shown as expected.
JawadJaber
Metadata
Metadata
Assignees
Labels
No labels