summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Renderers/ContentPageRenderer.cs
blob: 81a00a41640237e6ad9c2c71a9090b46a9a1eab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System;
using EColor = ElmSharp.Color;

namespace Xamarin.Forms.Platform.Tizen
{
	/// <summary>
	/// Renderer of ContentPage.
	/// </summary>
	public class ContentPageRenderer : VisualElementRenderer<ContentPage>
	{
		/// <summary>
		/// Native control which holds the contents.
		/// </summary>
		Native.ContentPage _page;

		/// <summary>
		/// Default constructor.
		/// </summary>
		public ContentPageRenderer()
		{
			RegisterPropertyHandler(Page.BackgroundImageProperty, UpdateBackgroundImage);
			RegisterPropertyHandler(Page.TitleProperty, UpdateTitle);
		}

		protected override void OnElementChanged(ElementChangedEventArgs<ContentPage> e)
		{
			if (null == _page)
			{
				_page = new Native.ContentPage(Forms.Context.MainWindow);
				_page.LayoutUpdated += new EventHandler<Native.LayoutEventArgs>(OnLayoutUpdated);
				SetNativeControl(_page);
			}

			base.OnElementChanged(e);
		}

		protected override void UpdateBackgroundColor()
		{
			// base.UpdateBackgroundColor() is not called on purpose, we don't want the regular background setting
			if (Element.BackgroundColor.IsDefault || Element.BackgroundColor.A == 0)
				_page.Color = EColor.Transparent;
			else
				_page.Color = Element.BackgroundColor.ToNative();
		}

		protected override void UpdateLayout()
		{
			// empty on purpose
		}

		void UpdateBackgroundImage()
		{
			if (string.IsNullOrWhiteSpace(Element.BackgroundImage))
				_page.File = null;
			else
				_page.File = ResourcePath.GetPath(Element.BackgroundImage);
		}

		void UpdateTitle()
		{
			_page.Title = Element.Title;
		}

		void OnLayoutUpdated(object sender, Native.LayoutEventArgs e)
		{
			DoLayout(e);
		}
	}
}