summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
diff options
context:
space:
mode:
authorchungryeol lim <cdark.lim@samsung.com>2017-01-19 19:04:47 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-07-10 11:11:17 +0900
commit574180783a1315e55af2323e3f28fd5cda7d9889 (patch)
tree839001b8417500684a57124f9994fb5990c9ebcc /Xamarin.Forms.Platform.Tizen/FormsApplication.cs
parentfde04a36d3dab10dc30fccee145456c7e166531c (diff)
downloadxamarin-forms-574180783a1315e55af2323e3f28fd5cda7d9889.tar.gz
xamarin-forms-574180783a1315e55af2323e3f28fd5cda7d9889.tar.bz2
xamarin-forms-574180783a1315e55af2323e3f28fd5cda7d9889.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>
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/FormsApplication.cs')
-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();