Hi,
I have a replicated the docking layout that can be found at the very bottom of this page link http://www.telerik.com/help/wpf/raddocking-getting-started2.html .
How can I disable the documenthost items from being dockable in other pane groups other than its own?
I've had a look this following guide http://www.telerik.com/help/wpf/raddocking-how-to-implement-conditional-docking.html , however it works fine if you want to apply the restrictions to all of the panes in the top level docking control, but I only want the restrictions to apply when moving the items from the documenthost container. In short, I don't want any of the documenthost items to be dockable in any other group other than its own original group.
Are there any example of how I can apply restrictions to some pane groups and not to others depending on where the pane in question originated from? I've looked through all of the online documents and forums but I can't seem to find what I'm looking for other than the following:
Like I said, this works fine if you want apply to restrictions to all pane groups. I need some way to detect which pane group is displaying the compass so that I can make the decision on which indicators are visible depending on the panel item in question.
Thanks very much for your time, any help will be greatly appreciated,
Rob
I have a replicated the docking layout that can be found at the very bottom of this page link http://www.telerik.com/help/wpf/raddocking-getting-started2.html .
How can I disable the documenthost items from being dockable in other pane groups other than its own?
I've had a look this following guide http://www.telerik.com/help/wpf/raddocking-how-to-implement-conditional-docking.html , however it works fine if you want to apply the restrictions to all of the panes in the top level docking control, but I only want the restrictions to apply when moving the items from the documenthost container. In short, I don't want any of the documenthost items to be dockable in any other group other than its own original group.
Are there any example of how I can apply restrictions to some pane groups and not to others depending on where the pane in question originated from? I've looked through all of the online documents and forums but I can't seem to find what I'm looking for other than the following:
Private
Sub
radDocking_PreviewShowCompass(
ByVal
sender
As
Object
,
ByVal
e
As
Telerik.Windows.Controls.Docking.PreviewShowCompassEventArgs)
e.Compass.IsLeftIndicatorVisible =
False
e.Compass.IsTopIndicatorVisible =
False
End
Sub
Like I said, this works fine if you want apply to restrictions to all pane groups. I need some way to detect which pane group is displaying the compass so that I can make the decision on which indicators are visible depending on the panel item in question.
Thanks very much for your time, any help will be greatly appreciated,
Rob