From 574180783a1315e55af2323e3f28fd5cda7d9889 Mon Sep 17 00:00:00 2001 From: chungryeol lim Date: Thu, 19 Jan 2017 19:04:47 +0900 Subject: [PATCH] Fixed DisplayAlert message color issue - Change the default color of message color to black Change-Id: Id9b7f74c0ecdc222bb46a9ecc6e4464cb6601cc7 Signed-off-by: chungryeol lim --- Xamarin.Forms.Platform.Tizen/FormsApplication.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Xamarin.Forms.Platform.Tizen/FormsApplication.cs b/Xamarin.Forms.Platform.Tizen/FormsApplication.cs index 32ef3c3..fe8c4fd 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 = "" + arguments.Message + "<\\span>", + Text = "" + arguments.Message + "<\\span>", }; label.Show(); -- 2.7.4