You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:Views"
|
|
x:Class="Views.ContainerBase"
|
|
x:Name="root">
|
|
|
|
<Grid RowDefinitions="80, *"
|
|
ColumnDefinitions="300, *">
|
|
|
|
<local:CustomHeader
|
|
Grid.Column="1"
|
|
MinimumHeightRequest="80"
|
|
VerticalOptions="StartAndExpand"/>
|
|
|
|
<local:ContainerFlyout
|
|
Grid.RowSpan="2"
|
|
MinimumWidthRequest="300"
|
|
HorizontalOptions="StartAndExpand"
|
|
x:Name="container_flayout">
|
|
<local:ContainerFlyout.MyFlyoutContent>
|
|
<ContentView
|
|
Content="{Binding MyFlyoutContent, Source={x:Reference root}}"/>
|
|
</local:ContainerFlyout.MyFlyoutContent>
|
|
</local:ContainerFlyout>
|
|
|
|
<ContentView
|
|
VerticalOptions="StartAndExpand"
|
|
Grid.Row="1" Grid.Column="1"
|
|
Content="{Binding MyContent, Source={x:Reference root}}"/>
|
|
</Grid>
|
|
|
|
</ContentView>
|