Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# How to disable the element which state is Document in WPF DockingManager?

By default, child element of DockingManager (which has state as Document) will be added as content of TabItemExt in DocumentTabControl. To disable the document child element of [WPF DockingManager](https://www.syncfusion.com/wpf-controls/docking), we must retrieve the TabItemExt element from DocumentTabControl and set IsEnabled as false to the retrieved element. For instance, we have disabled all the items in the DocumentTabControl, except SelectedItem.
By default, child element of DockingManager (which has state as Document) will be added as content of TabItemExt in DocumentTabControl. To disable the document child element of [WPF DockingManager](https://www.syncfusion.com/wpf-controls/docking), we must retrieve the TabItemExt element from DocumentTabControl and set IsEnabled as false to the retrieved element. For instance, we have disabled all the items in the DocumentTabControl, except SelectedItem.

KB article - [How to disable the element which state is Document in WPF DockingManager?](https://www.syncfusion.com/kb/8657/how-to-disable-the-element-which-state-is-document-in-wpf-dockingmanager)