summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls/ControlGalleryPages
diff options
context:
space:
mode:
authorE.Z. Hart <hartez@users.noreply.github.com>2017-02-17 03:43:26 -0700
committerRui Marinho <me@ruimarinho.net>2017-02-17 10:43:26 +0000
commitcaa8882ff2007d93d08e2c1de307117f5c706730 (patch)
tree9ce7ed5606ca4e8c32133783997dcbf95d93c2b7 /Xamarin.Forms.Controls/ControlGalleryPages
parentde3fdf57c7ee0af98e5d958a1a62595636b885f0 (diff)
downloadxamarin-forms-caa8882ff2007d93d08e2c1de307117f5c706730.tar.gz
xamarin-forms-caa8882ff2007d93d08e2c1de307117f5c706730.tar.bz2
xamarin-forms-caa8882ff2007d93d08e2c1de307117f5c706730.zip
Split Windows RuntimePlatform into UWP and WinRT (#748)
* Split RuntimePlatform Windows into UWP and WinRT * Update docs * Backward compatible targetPlatform=Windows for native XAML views on WinRT/UWP
Diffstat (limited to 'Xamarin.Forms.Controls/ControlGalleryPages')
-rw-r--r--Xamarin.Forms.Controls/ControlGalleryPages/AccessibilityGallery.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Xamarin.Forms.Controls/ControlGalleryPages/AccessibilityGallery.cs b/Xamarin.Forms.Controls/ControlGalleryPages/AccessibilityGallery.cs
index 64d9e2a2..f5f0b39c 100644
--- a/Xamarin.Forms.Controls/ControlGalleryPages/AccessibilityGallery.cs
+++ b/Xamarin.Forms.Controls/ControlGalleryPages/AccessibilityGallery.cs
@@ -41,7 +41,8 @@ namespace Xamarin.Forms.Controls
imageInstructions = $"The following Image should read aloud \"{ImageName}. {ImageHint}\". You should be able to tap the image and hear an alert box.";
boxInstructions = $"The following Box should read aloud \"{BoxName}. {BoxHint}\". You should be able to tap the box and hear an alert box.";
break;
- case Device.Windows:
+ case Device.WinRT:
+ case Device.UWP:
case Device.WinPhone:
screenReader = "Narrator";
scrollFingers = "two fingers";