You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/dockmanager/pane-types.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,24 +14,28 @@ The Blazor DockManager component exposes the ability to configure different pane
14
14
15
15
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:
16
16
17
-
####Content Pane
17
+
## Content Pane
18
18
19
19
Provides full control over explicitly defining custom content to be rendered for a given pane based on specific requirements.
20
20
21
21
* It can be a direct child of all other panes and the `<DockManagerPanes>` tag.
22
22
* The `DockManagerContentPane` cannot have child panes.
23
23
24
-
####TabGroup Pane
24
+
## TabGroup Pane
25
25
26
26
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.
27
27
28
28
* It can be a direct child of `<DockManagerSplitPane>`.
29
29
* It can only contain `<DockManagerContentPane>` children.
30
30
31
-
####Split Pane
31
+
## Split Pane
32
32
33
33
Organizes panes in a [Splitter-like](slug:splitter-overview) manner, allowing the container pane to be split either horizontally or vertically.
34
34
35
35
* It can be a direct child of another `<DockManagerSplitPane>`.
36
36
* 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