We're looking for a capability to "freeze" the entire layout, is that possible with XamDockManager? Thanks.
Hello Daniel,
Do not worry. I am glad that my assistance was helpful.
If you need any further assistance, feel free to ask.
Yes, it is helpful. Although it does require some effort to go through each pane and set them dynamically. I wanted to mark it as answer but the browser just didn't allow me to.
Thanks a lot.
I am just checking if my last reply was helpful for you.
If you require any further assistance please do not hesitate to ask.
I have been looking into your post and I can suggest defining a Style for the ContentPane and setting the ‘AllowDocking’ property to “False” like :
<Style TargetType="ig:ContentPane">
<Setter Property="AllowDocking" Value="False"/>
</Style>
Also you can cancel the event ‘PaneFloating’ of the XamDockManager like :
private void xamDockManager1_PaneFloating(object sender, Infragistics.Controls.Layouts.CancellablePaneEventArgs e)
{
e.Cancel = true;
}
If I have misunderstood you or you have any other questions, feel free to ask.