summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-05-11 20:58:07 +0900
committerSeungkeun Lee <sngn.lee@samsung.com>2017-05-12 13:24:28 +0900
commit5d61e97a3c600d86e2afb5a5d517d2d4bc5b16ec (patch)
tree3400a703d5000c6cc3a2cb219b7ccef8949767be
parentacedfb8b5db083b901c16e54f8658abb03413343 (diff)
downloadxamarin-forms-5d61e97a3c600d86e2afb5a5d517d2d4bc5b16ec.tar.gz
xamarin-forms-5d61e97a3c600d86e2afb5a5d517d2d4bc5b16ec.tar.bz2
xamarin-forms-5d61e97a3c600d86e2afb5a5d517d2d4bc5b16ec.zip
Use "popup" style for Dialog buttons
Change-Id: I3532b26bd36bba11e77e34163d9dd738f9bc9526
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/Dialog.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs b/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs
index 8e0cb735..c59755f7 100644
--- a/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs
@@ -228,6 +228,11 @@ namespace Xamarin.Forms.Platform.Tizen.Native
/// <param name="button">The new button.</param>
void ApplyButton(ButtonPosition position, EButton button)
{
+ if (button != null)
+ {
+ button.Style = "popup";
+ }
+
switch (position)
{
case ButtonPosition.Positive: