Blog.Mobile.Components.PopupLayout.ShowPopup C# (CSharp) Метод

ShowPopup() публичный Метод

public ShowPopup ( View popupView ) : void
popupView Xamarin.Forms.View
Результат void
		public void ShowPopup(View popupView)
		{
			ShowPopup(
				popupView,
				Constraint.RelativeToParent(p => (Width - _popup.WidthRequest) / 2),
				Constraint.RelativeToParent(p => (Height- _popup.HeightRequest) / 2)
			);
		}

Same methods

PopupLayout::ShowPopup ( View popupView, Constraint xConstraint, Constraint yConstraint, Constraint widthConstraint = null, Constraint heightConstraint = null ) : void
PopupLayout::ShowPopup ( View popupView, View presenter, PopupLocation location, float paddingX, float paddingY ) : void