csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
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.
49 lines
1.3 KiB
49 lines
1.3 KiB
namespace Avalonia.Data
|
|
{
|
|
/// <summary>
|
|
/// The priority of a binding.
|
|
/// </summary>
|
|
public enum BindingPriority
|
|
{
|
|
/// <summary>
|
|
/// A value that comes from an animation.
|
|
/// </summary>
|
|
Animation = -1,
|
|
|
|
/// <summary>
|
|
/// A local value.
|
|
/// </summary>
|
|
LocalValue = 0,
|
|
|
|
/// <summary>
|
|
/// A triggered style binding.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// A style trigger is a selector such as .class which overrides a
|
|
/// <see cref="TemplatedParent"/> binding. In this way, a basic control can have
|
|
/// for example a Background from the templated parent which changes when the
|
|
/// control has the :pointerover class.
|
|
/// </remarks>
|
|
StyleTrigger,
|
|
|
|
/// <summary>
|
|
/// A binding to a property on the templated parent.
|
|
/// </summary>
|
|
TemplatedParent,
|
|
|
|
/// <summary>
|
|
/// A style binding.
|
|
/// </summary>
|
|
Style,
|
|
|
|
/// <summary>
|
|
/// The value is inherited from an ancestor element.
|
|
/// </summary>
|
|
Inherited,
|
|
|
|
/// <summary>
|
|
/// The binding is uninitialized.
|
|
/// </summary>
|
|
Unset = int.MaxValue,
|
|
}
|
|
}
|
|
|