summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/Accessibility.cs
blob: e866d3183b4a7f40c70e15ee37cf1aa0dd50c06d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

namespace Xamarin.Forms
{
	public class Accessibility
	{
		public static readonly BindableProperty HintProperty = BindableProperty.Create("Hint", typeof(string), typeof(Element), default(string));

		public static readonly BindableProperty IsInAccessibleTreeProperty = BindableProperty.Create("IsInAccessibleTree", typeof(bool?), typeof(Element), null);

		public static readonly BindableProperty LabeledByProperty = BindableProperty.Create("LabeledBy", typeof(VisualElement), typeof(Element), default(VisualElement));

		public static readonly BindableProperty NameProperty = BindableProperty.Create("Name", typeof(string), typeof(Element), default(string));
	}
}