summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/ContentPage.cs14
1 files changed, 2 insertions, 12 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/ContentPage.cs b/Xamarin.Forms.Platform.Tizen/Native/ContentPage.cs
index 32f24a0d..0ade2f2b 100644
--- a/Xamarin.Forms.Platform.Tizen/Native/ContentPage.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/ContentPage.cs
@@ -7,7 +7,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native
/// <summary>
/// A basic page which can hold a single view.
/// </summary>
- public class ContentPage : Background, IContainable<EvasObject>
+ public class Page : Background, IContainable<EvasObject>
{
/// <summary>
/// The name of the part to be used when setting content.
@@ -30,23 +30,13 @@ namespace Xamarin.Forms.Platform.Tizen.Native
/// <summary>
/// Initializes a new instance of the ContentPage class.
/// </summary>
- public ContentPage(EvasObject parent) : base(parent)
+ public Page(EvasObject parent) : base(parent)
{
_canvas = new Canvas(this);
SetPartContent(ContentPartName, _canvas);
}
/// <summary>
- /// Gets or sets the title.
- /// </summary>
- /// <value>The current title.p</value>
- public string Title
- {
- get;
- set;
- }
-
- /// <summary>
/// Allows custom handling of events emitted when the layout has been updated.
/// </summary>
public event EventHandler<LayoutEventArgs> LayoutUpdated