Hi,
I am XamDockManager in our application and showing multiple content panes. Out of those content panes, I want to prevent user from closing one particular content pane. So we have hidden the close button. It works fine when that pane is docked but Close button appears back when it floats. How to hide the close button when floating as well?Please let me know.
Thanks,Mahadev
Hiding the button doesn't prevent the user from being allowed to close the object. There are other means by which that can happen including keyboard and context menus. If you want to disable the ability to close the pane then you would set its AllowClose to false. This way even if it is within a TabGroupPane, etc. that is being closed, that pane will not be closed.
Thanks. This resolved the problem.