0
下に表示されているのはメインページです。後で別のビューが表示されます。 私は、左からスライドして画面の3分の2を開くメニューを作りたいと思います。 私はWPFのプログラミングから来ています、そして、ここで私はZ-indexがあることに気付きます。 ネットを検索しましたが、素晴らしい結果は見つかりませんでした。 メニュー項目のメニューが必要になるように、ソリューションがグリッドと重なっていることを誰にでも教えてもらえますか?左からスライドするメニューを作成します。Xamarinのフォームpcl
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Fimap.WebPart.MainWeb">
<ContentPage.Content>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="1*"></RowDefinition>
<RowDefinition Height="9*"></RowDefinition>
</Grid.RowDefinitions>
<Grid Grid.Row="0" BackgroundColor="#0084CA">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1.3*"></ColumnDefinition>
<ColumnDefinition Width="2*"></ColumnDefinition>
<ColumnDefinition Width="2*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="30"></RowDefinition>
</Grid.RowDefinitions>
<Image Aspect="AspectFit" x:Name="menuImageButton" Grid.Column="0" Grid.Row="0" Source="Images/menu.png"></Image>
</Grid>
<Grid Grid.Row="1" BackgroundColor="#fff">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<ScrollView>
<StackLayout VerticalOptions="FillAndExpand" x:Name="downContent" HorizontalOptions="FillAndExpand" Orientation="Vertical" Spacing="15">
<!--RELOAD VIEW HERE-->
</StackLayout>
</ScrollView>
</Grid>
</Grid>
</ContentPage.Content>
</ContentPage>
左からスライドメニューが必要な場合は、 'MasterDetailPage'を試してみましたか? – skar