C# Класс TodoApp.Controls.DefaultControls.PopupLayout

Class PopupLayout. https://github.com/XLabs/Xamarin-Forms-Labs/blob/master/src/Forms/XLabs.Forms/Controls/PopupLayout.cs
Наследование: Xamarin.Forms.ContentView
Показать файл Открыть проект

Открытые методы

Метод Описание
AddChild ( View view, Constraint xConstraint = null, Constraint yConstraint = null, Constraint widthConstraint = null, Constraint heightConstraint = null ) : void
DismissPopup ( ) : void

Dismisses the popup.

PopupLayout ( ) : System
ReliableShowPopup ( View popupView, View presenter, PopupLocation location, float paddingX, float paddingY ) : void
ShowPopup ( View popupView ) : void

Shows the popup centered to the parent view.

ShowPopup ( View popupView, Constraint xConstraint, Constraint yConstraint, Constraint widthConstraint = null, Constraint heightConstraint = null ) : void

Shows the popup with constraints.

ShowPopup ( View popupView, View presenter, PopupLocation location, float paddingX, float paddingY ) : void

Shows the popup.

Описание методов

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

public AddChild ( View view, Constraint xConstraint = null, Constraint yConstraint = null, Constraint widthConstraint = null, Constraint heightConstraint = null ) : void
view Xamarin.Forms.View
xConstraint Constraint
yConstraint Constraint
widthConstraint Constraint
heightConstraint Constraint
Результат void

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

Dismisses the popup.
public DismissPopup ( ) : void
Результат void

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

public PopupLayout ( ) : System
Результат System

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

public ReliableShowPopup ( View popupView, View presenter, PopupLocation location, float paddingX, float paddingY ) : void
popupView Xamarin.Forms.View
presenter Xamarin.Forms.View
location PopupLocation
paddingX float
paddingY float
Результат void

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

Shows the popup centered to the parent view.
public ShowPopup ( View popupView ) : void
popupView Xamarin.Forms.View The popup view.
Результат void

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

Shows the popup with constraints.
public ShowPopup ( View popupView, Constraint xConstraint, Constraint yConstraint, Constraint widthConstraint = null, Constraint heightConstraint = null ) : void
popupView Xamarin.Forms.View The popup view.
xConstraint Constraint X constraint.
yConstraint Constraint Y constraint.
widthConstraint Constraint Optional width constraint.
heightConstraint Constraint Optional height constraint.
Результат void

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

Shows the popup.
public ShowPopup ( View popupView, View presenter, PopupLocation location, float paddingX, float paddingY ) : void
popupView Xamarin.Forms.View The popup view.
presenter Xamarin.Forms.View The presenter.
location PopupLocation The location.
paddingX float The padding x.
paddingY float The padding y.
Результат void