summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarkleem <cdark.lim@samsung.com>2017-05-17 18:52:20 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-10-23 13:34:35 +0900
commit288f16b1b399822c72b087d4fdb839896377dadf (patch)
tree773e461ca1fe01fb32eb10c381bdc210dd933f39
parentd31d5bef3715d36d83e2bdd286aaee00de5048b4 (diff)
downloadxamarin-forms-288f16b1b399822c72b087d4fdb839896377dadf.tar.gz
xamarin-forms-288f16b1b399822c72b087d4fdb839896377dadf.tar.bz2
xamarin-forms-288f16b1b399822c72b087d4fdb839896377dadf.zip
fix default textcolor
Change-Id: I629b2d84f721cc1671b2b027c88b91f164bb4dc5 Signed-off-by: darkleem <cdark.lim@samsung.com>
-rw-r--r--Xamarin.Forms.Platform.Tizen/Renderers/EditorRenderer.cs4
-rw-r--r--Xamarin.Forms.Platform.Tizen/Renderers/EntryRenderer.cs11
2 files changed, 3 insertions, 12 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Renderers/EditorRenderer.cs b/Xamarin.Forms.Platform.Tizen/Renderers/EditorRenderer.cs
index 0f214636..ff96a677 100644
--- a/Xamarin.Forms.Platform.Tizen/Renderers/EditorRenderer.cs
+++ b/Xamarin.Forms.Platform.Tizen/Renderers/EditorRenderer.cs
@@ -5,8 +5,6 @@ namespace Xamarin.Forms.Platform.Tizen
{
public class EditorRenderer : ViewRenderer<Editor, Native.Entry>
{
- static readonly EColor s_defaultTextColor = EColor.Black;
-
public EditorRenderer()
{
RegisterPropertyHandler(Editor.TextProperty, UpdateText);
@@ -61,7 +59,7 @@ namespace Xamarin.Forms.Platform.Tizen
void UpdateTextColor()
{
- Control.TextColor = Element.TextColor.IsDefault ? s_defaultTextColor : Element.TextColor.ToNative();
+ Control.TextColor = Element.TextColor.ToNative();
}
void UpdateFontSize()
diff --git a/Xamarin.Forms.Platform.Tizen/Renderers/EntryRenderer.cs b/Xamarin.Forms.Platform.Tizen/Renderers/EntryRenderer.cs
index 7e7c8925..c880098a 100644
--- a/Xamarin.Forms.Platform.Tizen/Renderers/EntryRenderer.cs
+++ b/Xamarin.Forms.Platform.Tizen/Renderers/EntryRenderer.cs
@@ -1,17 +1,10 @@
using System;
-using Xamarin.Forms.PlatformConfiguration.TizenSpecific;
-
-using EColor = ElmSharp.Color;
using Specific = Xamarin.Forms.PlatformConfiguration.TizenSpecific.Entry;
namespace Xamarin.Forms.Platform.Tizen
{
public class EntryRenderer : ViewRenderer<Entry, Native.Entry>, IDisposable
{
- static readonly EColor s_defaultTextColor = EColor.Black;
-
- static readonly EColor s_defaultPlaceholderColor = EColor.Gray;
-
public EntryRenderer()
{
RegisterPropertyHandler(Entry.IsPasswordProperty, UpdateIsPassword);
@@ -90,7 +83,7 @@ namespace Xamarin.Forms.Platform.Tizen
void UpdateTextColor()
{
- Control.TextColor = Element.TextColor.IsDefault ? s_defaultTextColor : Element.TextColor.ToNative();
+ Control.TextColor = Element.TextColor.ToNative();
}
void UpdateFontSize()
@@ -125,7 +118,7 @@ namespace Xamarin.Forms.Platform.Tizen
void UpdatePlaceholderColor()
{
- Control.PlaceholderColor = Element.PlaceholderColor.IsDefault ? s_defaultPlaceholderColor : Element.PlaceholderColor.ToNative();
+ Control.PlaceholderColor = Element.PlaceholderColor.ToNative();
}
void UpdateFontWeight()