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
파일 보기 프로젝트 열기: strongloop/loopback-example-xamarin

공개 메소드들

메소드 설명
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