-
Notifications
You must be signed in to change notification settings - Fork 11
/
DoubleVertical.razor
37 lines (35 loc) · 1.49 KB
/
DoubleVertical.razor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@page "/doublevertical"
<AbsolutePanel AutoResize="true">
<VerticalSliderPanel LeftPanelStartingWidth="600">
<LeftChildContent>
<VerticalSliderPanel PanelPosition="PanelPosition.Left" LeftPanelStartingWidth="400">
<LeftChildContent>
<div style="padding:10px;">
<h3>Left Content in the Left Parent Panel</h3>
This is a demo of a nested vertical slider panel.
</div>
</LeftChildContent>
<RightChildContent>
<div style="padding:10px;">
<h3>Right Content in the Left Parent Panel</h3>
</div>
</RightChildContent>
</VerticalSliderPanel>
</LeftChildContent>
<RightChildContent>
<VerticalSliderPanel PanelPosition="PanelPosition.Right" LeftPanelStartingWidth="400">
<LeftChildContent>
<div style="padding:10px;">
<h3>Left Content in the Right Parent Panel</h3>
</div>
</LeftChildContent>
<RightChildContent>
<div style="padding:10px;">
<h3>Right Content in the Right Parent Panel</h3>
<NavMenu />
</div>
</RightChildContent>
</VerticalSliderPanel>
</RightChildContent>
</VerticalSliderPanel>
</AbsolutePanel>