Hi,
I'm trying to float a LayoutDocument and I can do it. The problem is that after this I cant dock him again, it's only working by code. I can't drag back to a panel or even right click him (no options appear)
I'm trying to float a LayoutDocument and I can do it. The problem is that after this I cant dock him again, it's only working by code. I can't drag back to a panel or even right click him (no options appear)
LayoutDocumentPane ldp1 = new LayoutDocumentPane();
LayoutDocument ld = new LayoutDocument { Title = "zzzzz" };
_layoutPanel.Children.Add(ldp1); // LayoutPanel set in XAML
ldp1.Children.Add(ld);
ld.Float();
// ld.Dock(); // this works, but i want to be able to dock again by interface