Skip to content
Merged
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
12 changes: 8 additions & 4 deletions components/dockmanager/pane-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,28 @@ The Blazor DockManager component exposes the ability to configure different pane

When defining pane types, the naming convention follows the structure `<DockManager`**`Type`**`Pane>`, where **Type** specifies the behavior of the pane. The available types are:

#### Content Pane
## Content Pane

Provides full control over explicitly defining custom content to be rendered for a given pane based on specific requirements.

* It can be a direct child of all other panes and the `<DockManagerPanes>` tag.
* The `DockManagerContentPane` cannot have child panes.

#### TabGroup Pane
## TabGroup Pane

Groups panes in a tab strip, similar to the [TabStrip component](slug:components/tabstrip/overview). Users can navigate through panes using tabs in the header.

* It can be a direct child of `<DockManagerSplitPane>`.
* It can only contain `<DockManagerContentPane>` children.

#### Split Pane
## Split Pane

Organizes panes in a [Splitter-like](slug:splitter-overview) manner, allowing the container pane to be split either horizontally or vertically.

* It can be a direct child of another `<DockManagerSplitPane>`.
* It can contain `<DockManagerTabGroupPane>`, `<DockManagerContentPane>`, and other `<DockManagerSplitPane>` tags as children.
* Only this pane type can be declared as a direct child of the `<DockManagerFloatingPanes>` tag.
* Only this pane type can be declared as a direct child of the `<DockManagerFloatingPanes>` tag.

## Examples

Check the [DockManager Overview](slug:dockmanager-overview) and [DockManager Events](slug:dockmanager-events) articles for examples that include all pane types.
Loading