diff --git a/components/dockmanager/pane-types.md b/components/dockmanager/pane-types.md index bd98f0bd5..8284893b6 100644 --- a/components/dockmanager/pane-types.md +++ b/components/dockmanager/pane-types.md @@ -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 ``, 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 `` 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 ``. * It can only contain `` 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 ``. * It can contain ``, ``, and other `` tags as children. -* Only this pane type can be declared as a direct child of the `` tag. \ No newline at end of file +* Only this pane type can be declared as a direct child of the `` tag. + +## Examples + +Check the [DockManager Overview](slug:dockmanager-overview) and [DockManager Events](slug:dockmanager-events) articles for examples that include all pane types.