diff options
-rwxr-xr-x[-rw-r--r--] | Xamarin.Forms.Platform.Tizen/Native/Canvas.cs | 2 | ||||
-rwxr-xr-x | Xamarin.Forms.Platform.Tizen/Native/Page.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/Canvas.cs b/Xamarin.Forms.Platform.Tizen/Native/Canvas.cs index c345abf2..12ca2a15 100644..100755 --- a/Xamarin.Forms.Platform.Tizen/Native/Canvas.cs +++ b/Xamarin.Forms.Platform.Tizen/Native/Canvas.cs @@ -59,7 +59,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native /// <summary> /// Gets list of native elements that are placed in the canvas. /// </summary> - public IList<EvasObject> Children + public new IList<EvasObject> Children { get { diff --git a/Xamarin.Forms.Platform.Tizen/Native/Page.cs b/Xamarin.Forms.Platform.Tizen/Native/Page.cs index 0ade2f2b..a9708ef4 100755 --- a/Xamarin.Forms.Platform.Tizen/Native/Page.cs +++ b/Xamarin.Forms.Platform.Tizen/Native/Page.cs @@ -17,7 +17,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native /// <summary> /// Exposes the Children property, mapping it to the _canvas' Children property. /// </summary> - public IList<EvasObject> Children => _canvas.Children; + public new IList<EvasObject> Children => _canvas.Children; /// <summary> /// The canvas, used as a container for other objects. |