- Opening event
- Opened event
- Closing event
- Closed event
- Footer button clicked events
Contact Support
Events
3 Sep 20204 minutes to read
There are four built-in events in the SfPopupLayout control namely:
- Opening
- Opened
- Closing
- Closed
Opening event
The SfPopupLayout.Opening event will be fired whenever opening the Pop-upView in the application. It can cancel the pop-up opening with CancelEventArgs
that contains the following property:
- Cancel: Pop-up opening is based on this value.
//MainActivity.cs
protected override void OnCreate(Bundle bundle)
{
....
popupLayout.Opening += PopupLayout_Opening;
SetContentView(popupLayout);
....
}
private void PopupLayout_Opening(object sender, System.ComponentModel.CancelEventArgs e)
{
e.Cancel = true;
}
Opened event
The SfPopupLayout.Opened event will be fired whenever displaying the Pop-upView in the application.
You can execute your own set of codes once the pop-up is opened and visible in the application in its respective event handler.
//MainActivity.cs
protected override void OnCreate(Bundle bundle)
{
....
popupLayout.Opened += PopupLayout_Opened;
SetContentView(popupLayout);
....
}
private void PopupLayout_Opened(object sender, EventArgs e)
{
// Codes that needs to be executed once popup is visible in the screen
}
Closing event
The SfPopupLayout.Closing event will be fired whenever closing the Pop-upView in the application. It can cancel pop-up closing with CancelEventArgs
that contains the following property:
- Cancel: Pop-up opening is based on this value.
//MainActivity.cs
protected override void OnCreate(Bundle bundle)
{
....
popupLayout.Closing += PopupLayout_Closing;
SetContentView(popupLayout);
....
}
private void PopupLayout_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
e.Cancel = true;
}
Closed event
The SfPopupLayout.Closed event will be fired whenever dismissing the Pop-upView from the view.
You can execute your own set of codes once the popup is completely closed in its respective event handler.
//MainActivity.cs
protected override void OnCreate(Bundle bundle)
{
....
popupLayout.Closed += PopupLayout_Closed;
SetContentView(popupLayout);
....
}
private void PopupLayout_Closed(object sender, EventArgs e)
{
// Codes that needs to be executed once popup is completely closed
}
Footer button clicked events
Following two events are available in the footer:
- AcceptButtonClicked
- DeclineButtonClicked
AcceptButtonClicked
The SfPopupLayout.PopupView.AcceptButtonClicked will be fired when clicking the Accept button in the pop-up footer. It can cancel pop-up closing with CancelEventArgs
that contains the following property:
- Cancel: Pop-up opening is based on this value.
public MainPage()
{
....
InitializeComponent();
popupLayout.PopupView.AppearanceMode = AppearanceMode.TwoButton;
popupLayout.PopupView.AcceptButtonClicked += PopupView_AcceptButtonClicked;
....
}
private void PopupView_AcceptButtonClicked(object sender, System.ComponentModel.CancelEventArgs e)
{
e.Cancel = true;
}
DeclineButtonClicked
The SfPopupLayout.PopupView.DeclineButtonClicked will be fired when clicking the Decline button in the pop-up footer. It can cancel pop-up closing with CancelEventArgs
that contains the following property:
- Cancel: Pop-up opening is based on this value.
public MainPage()
{
....
InitializeComponent();
popupLayout.PopupView.AppearanceMode = AppearanceMode.TwoButton;
popupLayout.PopupView.DeclineButtonClicked += PopupView_DeclineButtonClicked;
....
}
private void PopupView_DeclineButtonClicked(object sender, System.ComponentModel.CancelEventArgs e)
{
e.Cancel = true;
}