using Avalonia.Automation.Provider; namespace Avalonia.Automation { /// /// Contains values used as identifiers by . /// public static class SelectionPatternIdentifiers { /// /// Identifies automation property. /// public static AutomationProperty CanSelectMultipleProperty { get; } = new AutomationProperty(); /// /// Identifies automation property. /// public static AutomationProperty IsSelectionRequiredProperty { get; } = new AutomationProperty(); /// /// Identifies the property that gets the selected items in a container. /// public static AutomationProperty SelectionProperty { get; } = new AutomationProperty(); } }