popUpLayout.Show(true);
|
private void Button_Clicked(object sender, EventArgs e)
{
double xPosition = popUpLayout.PopupView.WidthRequest = Application.Current.MainPage.Width / 2;
popUpLayout.PopupView.HeightRequest = Application.Current.MainPage.Height;
popUpLayout.PopupView.StartX = (int)xPosition;
popUpLayout.Show();
}
|
//// Center position
popUpLayout.Show();
//// Positions at given X and Y position.
popUpLayout.Show(50, 50);
//// Positions at touchPoint
popUpLayout.ShowAtTouchPoint();
|