Hi Infragistics Team,
I have an application in which i have a XamDockManager.
In that i have a TabGroupPane with ContentPane. To which i added my User Control.
My task is to make a Button in that User Control to be visible only if the ContentPane is a floating window. I can't find a way to validate whether the ContentPane is Floating or Docked.
Something like "ContentPane.IsFloating ". Is there any ways to do it ?
Regards,
Sify
There isn't an IsFloating property but you can use the PaneLocation which will be either Floating or FloatingOnly for a floating pane (i.e. a pane within a ToolWindow) depending on which floating state the containing window is in.
Thanks for your quick reply.
Thank you so much.