summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT.Phone
diff options
context:
space:
mode:
authorSamantha Houts <samhouts@users.noreply.github.com>2017-05-10 10:20:57 -0700
committerRui Marinho <me@ruimarinho.net>2017-05-10 18:23:00 +0100
commitab1f669f9f87bc0c9823929e6497bc3b1a4018d6 (patch)
tree5cdb6d84147912651727dd4fd27073acb68ef117 /Xamarin.Forms.Platform.WinRT.Phone
parent5a472237b3b3f92cdaf5992a68a0afa0d49f4149 (diff)
downloadxamarin-forms-ab1f669f9f87bc0c9823929e6497bc3b1a4018d6.tar.gz
xamarin-forms-ab1f669f9f87bc0c9823929e6497bc3b1a4018d6.tar.bz2
xamarin-forms-ab1f669f9f87bc0c9823929e6497bc3b1a4018d6.zip
[All] Rename Accessibility -> AutomationProperties (#912)
* [All] Renamed Accessibility -> AutomationProperties * Update docs * Restore doc summaries * Revert unintended csproj changes
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT.Phone')
-rw-r--r--Xamarin.Forms.Platform.WinRT.Phone/TabbedPageRenderer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.WinRT.Phone/TabbedPageRenderer.cs b/Xamarin.Forms.Platform.WinRT.Phone/TabbedPageRenderer.cs
index aa260d50..3e121a03 100644
--- a/Xamarin.Forms.Platform.WinRT.Phone/TabbedPageRenderer.cs
+++ b/Xamarin.Forms.Platform.WinRT.Phone/TabbedPageRenderer.cs
@@ -109,7 +109,7 @@ namespace Xamarin.Forms.Platform.WinRT
element.PropertyChanged += OnElementPropertyChanged;
if (!string.IsNullOrEmpty(element.AutomationId))
- Control.SetValue(AutomationProperties.AutomationIdProperty, element.AutomationId);
+ Control.SetValue(Windows.UI.Xaml.Automation.AutomationProperties.AutomationIdProperty, element.AutomationId);
}
OnElementChanged(new VisualElementChangedEventArgs(oldElement, element));