-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCrazy.razor
75 lines (74 loc) · 3.78 KB
/
Crazy.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@page "/crazy"
<AbsolutePanel AutoResize="true">
<VerticalSliderPanel LeftPanelStartingWidth="400">
<LeftChildContent>
<HorizontalSliderPanel PanelPosition="PanelPosition.Left"
TopStyleString="background-color:antiquewhite;"
BottomStyleString="background-color:aliceblue;"
TopPanelHeight="200">
<TopChildContent>
<div style="padding:10px;">
<h3>Top Content 1</h3>
This is the craziest demo of all
</div>
</TopChildContent>
<BottomChildContent>
<div style="padding:10px;">
<h3>Bottom Content 1</h3>
<NavMenu />
</div>
</BottomChildContent>
</HorizontalSliderPanel>
</LeftChildContent>
<RightChildContent>
<HorizontalSliderPanel PanelPosition="PanelPosition.Right"
BottomStyleString="background-color:violet;"
TopPanelHeight="600">
<TopChildContent>
<VerticalSliderPanel PanelPosition="PanelPosition.Top"
LeftPanelStartingWidth="700">
<LeftChildContent>
<HorizontalSliderPanel PanelPosition="PanelPosition.Left"
TopStyleString="background-color:orange;"
BottomStyleString="background-color:lightblue;"
TopPanelHeight="300">
<TopChildContent>
<div style="padding:10px;">
<h3>Top Content 2</h3>
</div>
</TopChildContent>
<BottomChildContent>
<div style="padding:10px;">
<h3>Bottom Content 2</h3>
</div>
</BottomChildContent>
</HorizontalSliderPanel>
</LeftChildContent>
<RightChildContent>
<HorizontalSliderPanel PanelPosition="PanelPosition.Right"
TopStyleString="background-color:pink;"
BottomStyleString="background-color:lightgreen;"
TopPanelHeight="400">
<TopChildContent>
<div style="padding:10px;">
<h3>Top Content 3</h3>
</div>
</TopChildContent>
<BottomChildContent>
<div style="padding:10px;">
<h3>Bottom Content 3</h3>
</div>
</BottomChildContent>
</HorizontalSliderPanel>
</RightChildContent>
</VerticalSliderPanel>
</TopChildContent>
<BottomChildContent>
<div style="padding:10px;">
<h3>Bottom Content 4</h3>
</div>
</BottomChildContent>
</HorizontalSliderPanel>
</RightChildContent>
</VerticalSliderPanel>
</AbsolutePanel>