summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchungryeol lim <cdark.lim@samsung.com>2017-01-19 19:04:47 +0900
committerchungryeol lim <cdark.lim@samsung.com>2017-01-19 19:04:47 +0900
commit5ae10ee3b9ce50195339ba89a3794e0d034b20c3 (patch)
treef583437ba182192e6161d4acfeb65e4bbd99aea0
parentaed94350a9ca9cf1949797f67486c0adf06adf6f (diff)
downloadxamarin-forms-5ae10ee3b9ce50195339ba89a3794e0d034b20c3.tar.gz
xamarin-forms-5ae10ee3b9ce50195339ba89a3794e0d034b20c3.tar.bz2
xamarin-forms-5ae10ee3b9ce50195339ba89a3794e0d034b20c3.zip
Fixed DisplayAlert message color issue
- Change the default color of message color to black Change-Id: Id9b7f74c0ecdc222bb46a9ecc6e4464cb6601cc7 Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
-rw-r--r--Xamarin.Forms.Platform.Tizen/FormsApplication.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/FormsApplication.cs b/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
index 32ef3c38..fe8c4fd5 100644
--- a/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
+++ b/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
@@ -169,7 +169,7 @@ namespace Xamarin.Forms.Platform.Tizen
alert.Title = arguments.Title;
var label = new ELabel(alert)
{
- Text = "<span font_size=30 >" + arguments.Message + "<\\span>",
+ Text = "<span font_size=30 color=#000000>" + arguments.Message + "<\\span>",
};
label.Show();