|
<sfPopup:SfPopupLayout x:Name="PopupLayout"
>
<sfPopup:SfPopupLayout.PopupView>
<sfPopup:PopupView ShowHeader="False"
ShowFooter="False"
AnimationMode="SlideOnBottom">
<sfPopup:PopupView.ContentTemplate>
<DataTemplate>
<Grid>
<Label Text="Swipe_Down_to_Close"/>
<Grid.GestureRecognizers>
<SwipeGestureRecognizer Direction="Down"
Swiped="SwipeGestureRecognizer_Swiped"/>
</Grid.GestureRecognizers>
</Grid>
</DataTemplate>
</sfPopup:PopupView.ContentTemplate>
</sfPopup:PopupView>
</sfPopup:SfPopupLayout.PopupView>
<sfPopup:SfPopupLayout.Content>
<StackLayout x:Name="mainLayout">
<Button x:Name="clickToShowPopup" Text="ClickToShowPopup"
VerticalOptions="Start" HorizontalOptions="FillAndExpand"
Clicked="Button_Clicked"/>
</StackLayout>
</sfPopup:SfPopupLayout.Content>
</sfPopup:SfPopupLayout>
|