summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2016-11-16 22:05:28 +0100
committerJason Smith <jason.smith@xamarin.com>2016-11-16 13:05:28 -0800
commitacc6efb3d7d502d0a40020ec86eaff4d018de8be (patch)
treeb5187bdde475f568e5b267dfc8240c5cc9223db7 /Xamarin.Forms.Controls
parent281bfa2b0a6de05130b87ad5c25f9bf8b05f876c (diff)
downloadxamarin-forms-acc6efb3d7d502d0a40020ec86eaff4d018de8be.tar.gz
xamarin-forms-acc6efb3d7d502d0a40020ec86eaff4d018de8be.tar.bz2
xamarin-forms-acc6efb3d7d502d0a40020ec86eaff4d018de8be.zip
[W] Support 0 as valid BorderWidth (#537)
Diffstat (limited to 'Xamarin.Forms.Controls')
-rw-r--r--Xamarin.Forms.Controls/GalleryPages/ButtonGallery.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Xamarin.Forms.Controls/GalleryPages/ButtonGallery.cs b/Xamarin.Forms.Controls/GalleryPages/ButtonGallery.cs
index bb276014..0558b192 100644
--- a/Xamarin.Forms.Controls/GalleryPages/ButtonGallery.cs
+++ b/Xamarin.Forms.Controls/GalleryPages/ButtonGallery.cs
@@ -101,6 +101,7 @@ namespace Xamarin.Forms.Controls
borderButton,
new Button {Text = "Thin Border", BorderWidth = 1, BackgroundColor=Color.White, BorderColor = Color.Black, TextColor = Color.Black},
new Button {Text = "Thinner Border", BorderWidth = .5, BackgroundColor=Color.White, BorderColor = Color.Black, TextColor = Color.Black},
+ new Button {Text = "BorderWidth == 0", BorderWidth = 0, BackgroundColor=Color.White, BorderColor = Color.Black, TextColor = Color.Black},
timer,
busy,
alert,