Skip to content

SEO-186111-help-page-with-redirect-xamarin #963

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: hotfix/hotfix-v26.2.4
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Xamarin/Image-Editor/Localization.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ The following screenshot shows localizing the text to Japanese language.

![SfImageEditor](ImageEditor_images/ResourcesFileForms.png)

Please refer the KB from this [`link`](https://www.syncfusion.com/kb/10602/how-to-set-localized-string-to-xamarin-forms-sfimageeditor).
Please refer the KB from this [`link`](https://support.syncfusion.com/kb/article/9208/how-to-set-localized-string-to-xamarin-forms-sfimageeditor).

You can download complete sample [`here`](https://github.com/SyncfusionExamples/How-to-set-localizad-string-to-SfImageEditor).

Expand Down Expand Up @@ -175,4 +175,4 @@ The following screenshot shows localizing the text to French language in image e

## See also

[How to set localized string to Xamarin.Forms SfImageEditor](https://www.syncfusion.com/kb/10602/how-to-set-localized-string-to-xamarin-forms-sfimageeditor)
[How to set localized string to Xamarin.Forms SfImageEditor](https://support.syncfusion.com/kb/article/9208/how-to-set-localized-string-to-xamarin-forms-sfimageeditor)
10 changes: 5 additions & 5 deletions Xamarin/Popup/Popup-Events.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: post
title: Popup Events And Commands in Xamarin Popup control | Syncfusion
description: Learn here all about Popup Events And Commands support in Syncfusion Xamarin Popup (SfPopupLayout) control and more.
platform: Xamarin
platform: xamarin
control: SfPopupLayout
documentation: ug
---
Expand All @@ -18,7 +18,7 @@ There are four built-in events in the SfPopupLayout control namely:

## Opening event

The [SfPopupLayout.Opening](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.PopupLayout.SfPopupLayout.html) event will be fired whenever opening the PopupView in the application. It can cancel popup opening with `CancelEventArgs` that contains the following property:
The [SfPopupLayout.Opening](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.PopupLayout.SfPopupLayout.html#Syncfusion_XForms_PopupLayout_SfPopupLayout_Opening) event will be fired whenever opening the PopupView in the application. It can cancel popup opening with `CancelEventArgs` that contains the following property:

* [Cancel](https://learn.microsoft.com/en-us/dotnet/api/system.componentmodel.canceleventargs.cancel?f1url=%253FappId%3DDev14IDEF1&l=EN-US&k=k(System.ComponentModel.CancelEventArgs.Cancel)&rd=true&view=net-5.0): Popup opening is based on this value.

Expand All @@ -45,7 +45,7 @@ private void PopupLayout_Opening(object sender, System.ComponentModel.CancelEven

## Opened event

The [SfPopupLayout.Opened](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.PopupLayout.SfPopupLayout.html) event will be fired whenever displaying the PopupView in the application.
The [SfPopupLayout.Opened](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.PopupLayout.SfPopupLayout.html#Syncfusion_XForms_PopupLayout_SfPopupLayout_Opened) event will be fired whenever displaying the PopupView in the application.

You can execute your own set of codes once the popup is opened, and visible in the application in its respective event handler.

Expand Down Expand Up @@ -73,7 +73,7 @@ private void PopupLayout_Opened(object sender, EventArgs e)

## Closing event

The [SfPopupLayout.Closing](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.PopupLayout.SfPopupLayout.html) event will be fired whenever closing the PopupView in the application. It can cancel popup closing with `CancelEventArgs` that contains the following property:
The [SfPopupLayout.Closing](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.PopupLayout.SfPopupLayout.html#Syncfusion_XForms_PopupLayout_SfPopupLayout_Closing) event will be fired whenever closing the PopupView in the application. It can cancel popup closing with `CancelEventArgs` that contains the following property:

* [Cancel](https://learn.microsoft.com/en-us/dotnet/api/system.componentmodel.canceleventargs.cancel?f1url=%253FappId%3DDev14IDEF1&l=EN-US&k=k(System.ComponentModel.CancelEventArgs.Cancel)&rd=true&view=net-5.0): Popup opening is based on this value.

Expand All @@ -100,7 +100,7 @@ private void PopupLayout_Closing(object sender, System.ComponentModel.CancelEven

## Closed event

The [SfPopupLayout.Closed](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.PopupLayout.SfPopupLayout.html) event will be fired whenever dismissing the PopupView from the view.
The [SfPopupLayout.Closed](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.PopupLayout.SfPopupLayout.html#Syncfusion_XForms_PopupLayout_SfPopupLayout_Closed) event will be fired whenever dismissing the PopupView from the view.

You can execute your own set of codes once the popup is completely closed in its respective event handler.

Expand Down