summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/PlatformConfiguration
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-01-06 15:43:46 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-02-03 13:27:38 +0900
commitf4bf9d39a2b043a96a95464f264d9241c954bbed (patch)
tree944f07075dbcb747a72770115e0baad9700b9048 /Xamarin.Forms.Core/PlatformConfiguration
parentad961d235ea23b984e3b33fe8284e1489ce90be1 (diff)
downloadxamarin-forms-f4bf9d39a2b043a96a95464f264d9241c954bbed.tar.gz
xamarin-forms-f4bf9d39a2b043a96a95464f264d9241c954bbed.tar.bz2
xamarin-forms-f4bf9d39a2b043a96a95464f264d9241c954bbed.zip
Support BlendColor to Image as a TizenSpecific API
Change-Id: Ic3068b3c0834605be5d45cc5f1a96d6933a0856f
Diffstat (limited to 'Xamarin.Forms.Core/PlatformConfiguration')
-rw-r--r--Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/Image.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/Image.cs b/Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/Image.cs
new file mode 100644
index 00000000..2c86fd04
--- /dev/null
+++ b/Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/Image.cs
@@ -0,0 +1,30 @@
+namespace Xamarin.Forms.PlatformConfiguration.TizenSpecific
+{
+ using FormsElement = Forms.Image;
+
+ public static class Image
+ {
+ public static readonly BindableProperty BlendColorProperty = BindableProperty.Create("BlendColor", typeof(Color), typeof(FormsElement), Color.Default);
+
+ public static Color GetBlendColor(BindableObject element)
+ {
+ return (Color)element.GetValue(BlendColorProperty);
+ }
+
+ public static void SetBlendColor(BindableObject element, Color color)
+ {
+ element.SetValue(BlendColorProperty, color);
+ }
+
+ public static Color GetBlendColor(this IPlatformElementConfiguration<Tizen, FormsElement> config)
+ {
+ return GetBlendColor(config.Element);
+ }
+
+ public static IPlatformElementConfiguration<Tizen, FormsElement> SetBlendColor(this IPlatformElementConfiguration<Tizen, FormsElement> config, Color color)
+ {
+ SetBlendColor(config.Element, color);
+ return config;
+ }
+ }
+}