maui-linux/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issu.../Issue9305.xaml

59 строки
2.4 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<controls:TestContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:controls="clr-namespace:Xamarin.Forms.Controls"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="Xamarin.Forms.Controls.Issues.Issue9305">
<ContentPage.Content>
<Grid>
<Image
Aspect="AspectFill"
Source="Fruits.jpg"/>
<StackLayout>
<SwipeView>
<SwipeView.LeftItems>
<SwipeItems>
<SwipeItem
Text="Favorite"
BackgroundColor="LightGreen" />
<SwipeItem
Text="Delete"
BackgroundColor="LightPink" />
</SwipeItems>
</SwipeView.LeftItems>
<Grid
HeightRequest="60"
WidthRequest="300">
<Label
Text="Swipe right"
HorizontalOptions="Center"
VerticalOptions="Center" />
</Grid>
</SwipeView>
<SwipeView
BackgroundColor="Transparent">
<SwipeView.LeftItems>
<SwipeItems>
<SwipeItem
Text="Favorite"
BackgroundColor="LightGreen" />
<SwipeItem
Text="Delete"
BackgroundColor="LightPink" />
</SwipeItems>
</SwipeView.LeftItems>
<Grid
HeightRequest="60"
WidthRequest="300">
<Label
Text="Swipe right"
HorizontalOptions="Center"
VerticalOptions="Center" />
</Grid>
</SwipeView>
</StackLayout>
</Grid>
</ContentPage.Content>
</controls:TestContentPage>