forked from carlfranklin/BlazorSliders
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDoubleVertical.razor
More file actions
39 lines (35 loc) · 1.84 KB
/
Copy pathDoubleVertical.razor
File metadata and controls
39 lines (35 loc) · 1.84 KB
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 WidthUnit="SizeUnit.Percent" LeftPanelStartingWidth="50">
<LeftChildContent>
<VerticalSliderPanel PanelPosition="PanelPosition.Left" WidthUnit="SizeUnit.Percent" LeftPanelStartingWidth="25">
<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" WidthUnit="SizeUnit.Percent" LeftPanelStartingWidth="50">
<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>