summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-06-22 08:33:04 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-07-10 11:11:27 +0900
commitef7be8a3ef7e24c7deeabf609df33d6dc85c257f (patch)
treedb76eadd166d63d0a41cca2a1739f1b9dd39a915
parent217712866c28213ec574662eef9a65764577f15f (diff)
downloadxamarin-forms-ef7be8a3ef7e24c7deeabf609df33d6dc85c257f.tar.gz
xamarin-forms-ef7be8a3ef7e24c7deeabf609df33d6dc85c257f.tar.bz2
xamarin-forms-ef7be8a3ef7e24c7deeabf609df33d6dc85c257f.zip
Remove unnecessary BindableProperty of Platform
- There is no need to provide PageContext Change-Id: I807488b53154f0baf5534a3f221b06bb7e677c9e
-rw-r--r--Xamarin.Forms.Platform.Tizen/Platform.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Platform.cs b/Xamarin.Forms.Platform.Tizen/Platform.cs
index 8abea638..c48a66e8 100644
--- a/Xamarin.Forms.Platform.Tizen/Platform.cs
+++ b/Xamarin.Forms.Platform.Tizen/Platform.cs
@@ -16,7 +16,6 @@ namespace Xamarin.Forms.Platform.Tizen
if (ve != null)
ve.IsPlatformEnabled = newvalue != null;
});
- internal static readonly BindableProperty PageContextProperty = BindableProperty.CreateAttached("PageContext", typeof(FormsApplication), typeof(Platform), null);
Naviframe _naviframe;
NavigationModel _navModel = new NavigationModel();
@@ -70,16 +69,6 @@ namespace Xamarin.Forms.Platform.Tizen
IReadOnlyList<Page> INavigation.ModalStack => _navModel.Modals.ToList();
IReadOnlyList<Page> INavigation.NavigationStack => new List<Page>();
- public static FormsApplication GetPageContext(BindableObject bindable)
- {
- return (FormsApplication)bindable.GetValue(Platform.PageContextProperty);
- }
-
- public static void SetPageContext(BindableObject bindable, FormsApplication context)
- {
- bindable.SetValue(Platform.PageContextProperty, context);
- }
-
public static IVisualElementRenderer GetRenderer(BindableObject bindable)
{
return (IVisualElementRenderer)bindable.GetValue(Platform.RendererProperty);
@@ -132,7 +121,6 @@ namespace Xamarin.Forms.Platform.Tizen
Page = newRoot;
Page.Platform = this;
- Platform.SetPageContext(Page, Forms.Context);
IVisualElementRenderer pageRenderer = AttachRenderer(Page);
var naviItem = _naviframe.Push(pageRenderer.NativeView);
naviItem.TitleBarVisible = false;