summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-03-16 09:26:10 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-03-16 09:26:10 +0900
commit00eee1b00aa05efa205639bf8f8a9c70363dae88 (patch)
tree5a612493cf305e268685ebe49d8ec6595ef95c57
parentf70c56fbc2d6f799f9a91fc73902c2a75e6bb050 (diff)
downloadxamarin-forms-00eee1b00aa05efa205639bf8f8a9c70363dae88.tar.gz
xamarin-forms-00eee1b00aa05efa205639bf8f8a9c70363dae88.tar.bz2
xamarin-forms-00eee1b00aa05efa205639bf8f8a9c70363dae88.zip
Fix Page.DisplayAlert's message format converting
TASK=TCAPI-2218 - "\r\n" or Environment.NewLine is available. Change-Id: I4550f63060cdb6e794762f66c3ec1c6e491bfb65
-rw-r--r--Xamarin.Forms.Platform.Tizen/FormsApplication.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/FormsApplication.cs b/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
index 57efa3f6..66467b7c 100644
--- a/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
+++ b/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
@@ -166,11 +166,11 @@ namespace Xamarin.Forms.Platform.Tizen
{
Native.Dialog alert = new Native.Dialog(Forms.Context.MainWindow);
alert.Title = arguments.Title;
+ var message = arguments.Message.Replace("&", "&amp;").Replace("<", "&lt;").Replace(">", "&gt;").Replace(Environment.NewLine, "<br>");
var label = new ELabel(alert)
{
- Text = "<span font_size=30 color=#000000>" + arguments.Message + "<\\span>",
+ Text = "<span font_size=30 color=#000000>" + message + "<\\span>",
};
-
label.Show();
var box = new Box(alert);