-
Notifications
You must be signed in to change notification settings - Fork 11
/
DoubleHorizontal.razor
36 lines (35 loc) · 1.48 KB
/
DoubleHorizontal.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
@page "/doublehorizontal"
<AbsolutePanel AutoResize="true">
<HorizontalSliderPanel TopPanelHeight="400">
<TopChildContent>
<HorizontalSliderPanel PanelPosition="PanelPosition.Top" TopPanelHeight="200">
<TopChildContent>
<div style="padding:10px;">
<h3>Top Content in the Top Parent Panel</h3>
This is a demo of a nested horizontal slider panel.
</div>
</TopChildContent>
<BottomChildContent>
<div style="padding:10px;">
<h3>Bottom Content in the Top Parent Panel</h3>
</div>
</BottomChildContent>
</HorizontalSliderPanel>
</TopChildContent>
<BottomChildContent>
<HorizontalSliderPanel PanelPosition="PanelPosition.Bottom" TopPanelHeight="200">
<TopChildContent>
<div style="padding:10px;">
<h3>Top Content in the Bottom Parent Panel</h3>
</div>
</TopChildContent>
<BottomChildContent>
<div style="padding:10px;">
<h3>Bottom Content in the Bottom Parent Panel</h3>
<NavMenu />
</div>
</BottomChildContent>
</HorizontalSliderPanel>
</BottomChildContent>
</HorizontalSliderPanel>
</AbsolutePanel>