forked from carlfranklin/BlazorSliders
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGoldenRatio.razor
More file actions
38 lines (33 loc) · 1.87 KB
/
GoldenRatio.razor
File metadata and controls
38 lines (33 loc) · 1.87 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
38
@page "/goldenratio"
<AbsolutePanel AutoResize="true">
<VerticalSliderPanel WidthUnit="SizeUnit.Percent" LeftPanelStartingWidth="62">
<LeftChildContent>
<div style="padding:10px;">
<h3>Approximate Golden Ratio Example</h3>
<NavMenu />
</div>
</LeftChildContent>
<RightChildContent>
<HorizontalSliderPanel PanelPosition="PanelPosition.Right" HeightUnit="SizeUnit.Percent" TopPanelHeight="62">
<BottomChildContent>
<VerticalSliderPanel PanelPosition="PanelPosition.Bottom" WidthUnit="SizeUnit.Percent" LeftPanelStartingWidth="38">
<LeftChildContent>
<HorizontalSliderPanel PanelPosition="PanelPosition.Left" HeightUnit="SizeUnit.Percent" TopPanelHeight="38">
<TopChildContent>
<VerticalSliderPanel PanelPosition="PanelPosition.Bottom" WidthUnit="SizeUnit.Percent" LeftPanelStartingWidth="62" MinimumRightPanelWidth="100" MinimumLeftPanelWidth="100">
<RightChildContent>
<HorizontalSliderPanel PanelPosition="PanelPosition.Right" HeightUnit="SizeUnit.Percent" TopPanelHeight="50" MinimumBottomPanelHeight="100" MinimumTopPanelHeight="100">
</HorizontalSliderPanel>
</RightChildContent>
</VerticalSliderPanel>
</TopChildContent>
</HorizontalSliderPanel>
</LeftChildContent>
</VerticalSliderPanel>
</BottomChildContent>
</HorizontalSliderPanel>
</RightChildContent>
</VerticalSliderPanel>
</AbsolutePanel>
@code {
}