A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
1.1 KiB

using Avalonia.Automation.Provider;
namespace Avalonia.Automation
{
/// <summary>
/// Contains values used as identifiers by <see cref="IRangeValueProvider"/>.
/// </summary>
public static class RangeValuePatternIdentifiers
{
/// <summary>
/// Identifies <see cref="IRangeValueProvider.IsReadOnly"/> automation property.
/// </summary>
public static AutomationProperty IsReadOnlyProperty { get; } = new AutomationProperty();
/// <summary>
/// Identifies <see cref="IRangeValueProvider.Minimum"/> automation property.
/// </summary>
public static AutomationProperty MinimumProperty { get; } = new AutomationProperty();
/// <summary>
/// Identifies <see cref="IRangeValueProvider.Maximum"/> automation property.
/// </summary>
public static AutomationProperty MaximumProperty { get; } = new AutomationProperty();
/// <summary>
/// Identifies <see cref="IRangeValueProvider.Value"/> automation property.
/// </summary>
public static AutomationProperty ValueProperty { get; } = new AutomationProperty();
}
}