summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/Window.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native/Window.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/Window.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/Window.cs b/Xamarin.Forms.Platform.Tizen/Native/Window.cs
index 2bc45c66..3e982ae5 100644
--- a/Xamarin.Forms.Platform.Tizen/Native/Window.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/Window.cs
@@ -24,11 +24,6 @@ namespace Xamarin.Forms.Platform.Tizen.Native
public event EventHandler Closed;
/// <summary>
- /// Notifies that the back button has been pressed.
- /// </summary>
- public event EventHandler BackButtonPressed;
-
- /// <summary>
/// Gets the current orientation.
/// </summary>
public DisplayOrientations CurrentOrientation
@@ -105,15 +100,6 @@ namespace Xamarin.Forms.Platform.Tizen.Native
Unrealize();
};
- KeyGrab(EvasKeyEventArgs.PlatformBackButtonName, false);
- KeyUp += (s, e) =>
- {
- if (e.KeyName == EvasKeyEventArgs.PlatformBackButtonName)
- {
- BackButtonPressed?.Invoke(this, EventArgs.Empty);
- }
- };
-
Active();
AutoDeletion = false;
Show();