Xamarin.formsを使用していますが、次の画像のようなポップアップビューでログインフォームが必要です。
現在、私はPushModalAsyncを使用していますが、これにより、フォームの新しいページが、必要に応じてポップアップビューを表示するのではなく、画面全体に表示されます。
Xamarin.formsを使用してこれを行う方法はありますか?そうでない場合、クロスプラットフォーム(Android、iOS、およびUWP)の代替手段は既に実装されていますか?
XLabs には、これを行うために使用できるPopupLayoutがあります。
var pop = new XLabs.Forms.Controls.PopupLayout();
// PatientSearch is a ContentView I was to display in the popup
var search = new PatientSearch(data, this);
search.WidthRequest = 600;
search.HeightRequest = 500;
search.BackgroundColor = new Color (1, 1, 1, 0.8);
pop.ShowPopup(search);
ポップアップをシミュレートするためにAbsoluteLayoutを使用します。
<AbsoluteLayout x:Name="rootLayout" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" >
<StackLayout x:Name="mainLayout" AbsoluteLayout.LayoutBounds="0,0,1,1" AbsoluteLayout.LayoutFlags="All">
<!-- Put your main contents-->
</StackLayout>
<ContentView x:Name="popupOverlay"
IsVisible="{Binding IsPopupVisible}"
BackgroundColor="#C0808080"
AbsoluteLayout.LayoutBounds="0,0,1,1"
AbsoluteLayout.LayoutFlags="All">
<StackLayout x:Name="popupContent"
VerticalOptions="Center"
HorizontalOptions="Center"
WidthRequest="200"
HeightRequest="200">
<Entry Placeholder="UserName"></Entry>
<Entry Placeholder="Password"></Entry>
</StackLayout>
</ContentView>
</AbsoluteLayout>
私が使用した一般的な解決策は、これを解決するために使用され、すべてのフォームを含むStackLayout
を作成し、現在使用しているページの子を挿入することです。
PopupPage popUp; //This will be the layout of the form
Page : ContentPage {
var gird = new Gird();
popUp = PopupPage();
popUp.IsVisible = false;
var mainContainer = new StackLayout();
mainContainer.Children.Add(All you UI stuff..);
var btn = new Button();
btn.Clicked += OnButtonClicked;
grid.Children.Add(mainContainer,0,0);
grid.Children.Add(popUp,0,0);
}
したがって、popoUPを表示するには、IsVisibleプロパティを使用する必要があります。次に例を示します。
void OnButtonClicked(){
//You can center the popup using Vertical options or whatever you need
//and to resize the pop up you can do different calculations like
//popUp.Width = ScreenWidth / 2 and popUp.Height = ScreenWidth / 2
popUp.IsVisile = true;
}
そして、これはすべてのプラットフォームで機能します。唯一の欠点は、透明なレイアウトが得られないことですが、そのために使用できます: