Skip to content

Commit 1990904

Browse files
authored
docs(DockManager): Link examples in Pane Types article
1 parent a12377a commit 1990904

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

components/dockmanager/pane-types.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,28 @@ The Blazor DockManager component exposes the ability to configure different pane
1414

1515
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:
1616

17-
#### Content Pane
17+
## Content Pane
1818

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

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

24-
#### TabGroup Pane
24+
## TabGroup Pane
2525

2626
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.
2727

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

31-
#### Split Pane
31+
## Split Pane
3232

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

3535
* It can be a direct child of another `<DockManagerSplitPane>`.
3636
* It can contain `<DockManagerTabGroupPane>`, `<DockManagerContentPane>`, and other `<DockManagerSplitPane>` tags as children.
37-
* Only this pane type can be declared as a direct child of the `<DockManagerFloatingPanes>` tag.
37+
* Only this pane type can be declared as a direct child of the `<DockManagerFloatingPanes>` tag.
38+
39+
## Examples
40+
41+
Check the [DockManager Overview](slug:dockmanager-overview) and [DockManager Events](slug:dockmanager-events) articles for examples that include all pane types.

0 commit comments

Comments
 (0)