In This Article

RangeSlider Class

A control that lets a user select a range of values from within a broader range of available values by moving one or more thumbs along a track.

[TemplatePart(Name = "PART_ActiveRange", Type = typeof(Layoutable))]
[TemplatePart(Name = "PART_Container", Type = typeof(Canvas))]
[TemplatePart(Name = "PART_InactiveRange", Type = typeof(Layoutable))]
[PseudoClasses(new string[] { ":horizontal", ":vertical" })]
public class RangeSlider : TemplatedControl, IDataContextProvider, ILogical, IThemeVariantHost, IResourceHost, IResourceNode, IStyleHost, ISetLogicalParent, ISetInheritanceParent, INamed, IInputElement, IDataTemplateHost, ISetterValue, IOrientedElement
Inheritance:
object AvaloniaObject Animatable StyledElement Visual Layoutable Interactive InputElement Control TemplatedControl object
Implements:
IDataContextProvider ILogical IThemeVariantHost IResourceHost IResourceNode IStyleHost ISetLogicalParent ISetInheritanceParent INamed IInputElement IDataTemplateHost ISetterValue IOrientedElement

Constructors

RangeSlider()

Initializes a new instance of the class.

public RangeSlider()

Properties

IsDirectionReversed

When true, values are associated with the opposite side of the control than the default.

public bool IsDirectionReversed { get; set; }

Property Value

bool:

true for values to display right-to-left (horizontal) or top-to-bottom (vertical); otherwise, false for values to display left-to-right (horizontal) or bottom-to-top (vertical). The default value is false.

IsInclusive

Whether the range defined by the slider is inclusive of the points between RangeStart and RangeEnd.

public bool IsInclusive { get; set; }

Property Value

bool:

The default value is true.

IsMarkContentVisible

Indicates if the content of a mark is visible.

public bool IsMarkContentVisible { get; set; }

Property Value

bool:

The default value is true.

Remarks

An individual RangeSliderMark can override this value by setting IsContentVisible.

IsMarkTrackDecorationVisible

Indicates if the track decoration of a mark is visible.

public bool IsMarkTrackDecorationVisible { get; set; }

Property Value

bool:

The default value is true.

Remarks

An individual RangeSliderMark can override this value by setting IsTrackDecorationVisible.

IsRangeDragEnabled

Whether the range between multiple values can be dragged to move all values together.

public bool IsRangeDragEnabled { get; set; }

Property Value

bool:

true to allow all the range to be dragged; otherwise, false. The default value is false.

Remarks

Only applicable when IsRanged is set to true.

IsRangeEditEnabled

Whether to enable the ability to add or remove range values by holding the Ctrl key when pressing the pointer.

public bool IsRangeEditEnabled { get; set; }

Property Value

bool:

The default value is false.

Remarks

Only applicable when IsRanged is set to true.

See Also

IsRanged

Whether the slider is used to define a range of values.

public bool IsRanged { get; set; }

Property Value

bool:

true to allow a range of values to be selected; otherwise, false to allow selecting a single value. The default value is true.

IsSnapToTickEnabled

Indicates whether thumb values automatically move to the closest tick mark.

public bool IsSnapToTickEnabled { get; set; }

Property Value

bool:

The default value is false.

Remarks

Only applicable when TickFrequency is set to a non-zero value..

IsTrackEdgeAlignedWithValue

Indicates if the edges of the track align with the minimum and maximum values.

public bool IsTrackEdgeAlignedWithValue { get; set; }

Property Value

bool:

The default value is false.

Remarks

When false, the track edges will extend the full width and align with the outside edge of a thumb. When true, the track edges are aligned with the position for the minimum and maximum values and will align with the center of a thumb.

LargeChange

The large increment value.

public double LargeChange { get; set; }

Property Value

double:

The default value is 10.

MarkContentPlacement

Indicates the placement of content for a mark.

public RangeSliderPlacement MarkContentPlacement { get; set; }

Property Value

RangeSliderPlacement:

The default value is BottomRight.

Remarks

An individual RangeSliderMark can override this value by setting ContentPlacement.

MarkElements

A collection of all the marks represented on the slider.

public ObservableCollection<RangeSliderMark>? MarkElements { get; set; }

Property Value

ObservableCollection<RangeSliderMark>

MarkSnapDistance

The minimum distance between a dragged thumb and a mark before the thumb snaps to the same value as the mark.

public double MarkSnapDistance { get; set; }

Property Value

double:

Set to 0 to disable snapping to marks. The default value is 0.

Remarks

An individual RangeSliderMark can override this value by setting SnapDistance.

MarkTheme

The control theme to be used for the marks.

public ControlTheme? MarkTheme { get; set; }

Property Value

ControlTheme

Marks

Defines the individual values for RangeSliderMark instances that will be automatically created and added to MarkElements.

public AvaloniaList<double>? Marks { get; set; }

Property Value

AvaloniaList<double>:

The default value is null.

Remarks

Set either the Marks or MarkElements property, but do not set both. Explicitly setting the Marks property will rebuild the MarkElements. Use the MarkElements property if individual marks need to be configured beyond their default values.

Maximum

The maximum possible value.

public double Maximum { get; set; }

Property Value

double:

The default value is 100.

Minimum

The minimum possible value.

public double Minimum { get; set; }

Property Value

double:

The default value is 0.

MinimumStepsBetweenThumbs

The minimum number of "steps" between thumbs, which can be used to prevent overlap. A single "step", in this context, is typically defined by StepFrequency. If IsSnapToTickEnabled and TickFrequency is assigned a positive value then a "step" will be defined by TickFrequency instead.

public int MinimumStepsBetweenThumbs { get; set; }

Property Value

int:

The default value is 0.

Remarks

This property has no affect when OverlapKind is set to Overlap since it would other prevent thumbs from being dragged over each other.

This property is not supported when Ticks is set to a non-null value (i.e., custom tick values are defined).

Orientation

The orientation of the control.

public Orientation Orientation { get; set; }

Property Value

Orientation:

The default value is Avalonia.Layout.Orientation.Horizontal.

OverlapKind

The kind of thumb overlapping to support.

public RangeSliderOverlapKind OverlapKind { get; set; }

Property Value

RangeSliderOverlapKind:

The default value is Overlap.

RangeEditMaximumValueCount

The maximum number of allowed values in the Values collection when range editing is enabled.

public int RangeEditMaximumValueCount { get; set; }

Property Value

int:

The default value is Int32.MaxValue.

Remarks

Only applicable when IsRangeEditEnabled is set to true.

See Also

RangeEditMinimumValueCount

The minimum number of allowed values in the Values collection when range editing is enabled.

public int RangeEditMinimumValueCount { get; set; }

Property Value

int:

The default value is 1.

Remarks

Only applicable when IsRangeEditEnabled is set to true.

See Also

RangeEnd

The upper limit of the currently selected range.

public double RangeEnd { get; set; }

Property Value

double

RangeStart

The lower limit of the currently selected range.

public double RangeStart { get; set; }

Property Value

double

RoundingDecimalPlace

The rounding decimal place.

public int? RoundingDecimalPlace { get; set; }

Property Value

int?:

The rounding decimal place, which is a value between 0 and 15. Set to nullto disable rounding. The default value is 8.

SmallChange

The small increment value.

public double SmallChange { get; set; }

Property Value

double:

The default value is 1.

StepFrequency

The interval between steps.

public double StepFrequency { get; set; }

Property Value

double:

The default value is 0.0.

ThumbTheme

The control theme to be used for the thumbs.

public ControlTheme? ThumbTheme { get; set; }

Property Value

ControlTheme

ThumbValueBadgeDisplayKinds

Indicates when the value badge of a thumb is displayed.

public RangeSliderValueBadgeDisplayKinds ThumbValueBadgeDisplayKinds { get; set; }

Property Value

RangeSliderValueBadgeDisplayKinds:

The default value is Interacting.

ThumbValueBadgePlacement

Indicates the placement of a thumb value badge.

public RangeSliderPlacement ThumbValueBadgePlacement { get; set; }

Property Value

RangeSliderPlacement:

The default value is TopLeft.

Remarks

An individual RangeSliderThumb can override this value by setting ValueBadgePlacement.

TickBarReservedSpace

The reserved space to be used for tick bar controls.

public Rect TickBarReservedSpace { get; }

Property Value

Rect

TickBarTheme

The control theme to be used for the tickbars.

public ControlTheme? TickBarTheme { get; set; }

Property Value

ControlTheme

TickFrequency

The interval between ticks.

public double TickFrequency { get; set; }

Property Value

double:

The default value is 0.0.

TickPlacement

Indicates whether to draw tick marks in relation to the track.

public TickPlacement TickPlacement { get; set; }

Property Value

TickPlacement:

The default value is Avalonia.Controls.TickPlacement.None.

Ticks

Defines the ticks to be drawn on the tick bar.

public AvaloniaList<double>? Ticks { get; set; }

Property Value

AvaloniaList<double>:

The default value is null.

Remarks

When not null, TickFrequency is ignored and only the values in this collection are drawn. Requires that TickPlacement is not set to Avalonia.Controls.TickPlacement.None.

ValueContentConverter

The converter, if any, to be applied to ValueContentConverter and ValueContentConverter properties.

public IValueConverter? ValueContentConverter { get; set; }

Property Value

IValueConverter

See Also

ValueFormat

The format, if any, to be applied to ValueFormat and ValueFormat properties.

public string? ValueFormat { get; set; }

Property Value

string

Remarks

This value can be defined as a numeric (e.g., "G") or composite (e.g., "{0:G}") format string.

Values

A collection of all the value points represented on the slider.

public ObservableCollection<double>? Values { get; set; }

Property Value

ObservableCollection<double>

Methods

CreateThumb()

Creates a RangeSliderThumb to represent a value on the slider.

protected RangeSliderThumb CreateThumb()

Returns

RangeSliderThumb

OnApplyTemplate(TemplateAppliedEventArgs)

Called when the control's template is applied. In simple terms, this means the method is called just before the control is displayed.

protected override void OnApplyTemplate(TemplateAppliedEventArgs e)
Parameter Type Description
e TemplateAppliedEventArgs

The event args.

OnCreateAutomationPeer()

Returns a new, type-specific Avalonia.Automation.Peers.AutomationPeer implementation for the control.

protected override AutomationPeer OnCreateAutomationPeer()

Returns

AutomationPeer:

The type-specific Avalonia.Automation.Peers.AutomationPeer implementation.

OnInitialized()

Called when the control finishes initialization.

protected override void OnInitialized()

ToString()

Returns the string representation of this object.

public override string ToString()

Returns

string:

The string representation of this object.

Fields

IsDirectionReversedProperty

Defines the IsDirectionReversed property.

public static readonly StyledProperty<bool> IsDirectionReversedProperty

IsInclusiveProperty

Defines the IsInclusive property.

public static readonly StyledProperty<bool> IsInclusiveProperty

IsMarkContentVisibleProperty

Defines the IsMarkContentVisible property.

public static readonly StyledProperty<bool> IsMarkContentVisibleProperty

IsMarkTrackDecorationVisibleProperty

Defines the IsMarkTrackDecorationVisible property.

public static readonly StyledProperty<bool> IsMarkTrackDecorationVisibleProperty

IsRangeDragEnabledProperty

Defines the IsRangeDragEnabled property.

public static readonly StyledProperty<bool> IsRangeDragEnabledProperty

IsRangeEditEnabledProperty

Defines the IsRangeEditEnabled property.

public static readonly StyledProperty<bool> IsRangeEditEnabledProperty

IsRangedProperty

Defines the IsRanged property.

public static readonly StyledProperty<bool> IsRangedProperty

IsSnapToTickEnabledProperty

Defines the IsSnapToTickEnabled property.

public static readonly StyledProperty<bool> IsSnapToTickEnabledProperty

IsTrackEdgeAlignedWithValueProperty

Defines the IsTrackEdgeAlignedWithValue property.

public static readonly StyledProperty<bool> IsTrackEdgeAlignedWithValueProperty

LargeChangeProperty

Defines the LargeChange property.

public static readonly StyledProperty<double> LargeChangeProperty

MarkContentPlacementProperty

Defines the MarkContentPlacement property.

public static readonly StyledProperty<RangeSliderPlacement> MarkContentPlacementProperty

MarkElementsProperty

Defines the MarkElements property.

public static readonly StyledProperty<ObservableCollection<RangeSliderMark>?> MarkElementsProperty

MarkSnapDistanceProperty

Defines the MarkSnapDistance property.

public static readonly StyledProperty<double> MarkSnapDistanceProperty

MarkThemeProperty

Defines the MarkTheme property.

public static readonly StyledProperty<ControlTheme?> MarkThemeProperty

MarksProperty

Defines the Marks property.

public static readonly StyledProperty<AvaloniaList<double>?> MarksProperty

MaximumProperty

Defines the Maximum property.

public static readonly StyledProperty<double> MaximumProperty

MinimumProperty

Defines the Minimum property.

public static readonly StyledProperty<double> MinimumProperty

MinimumStepsBetweenThumbsProperty

Defines the MinimumStepsBetweenThumbs property.

public static readonly StyledProperty<int> MinimumStepsBetweenThumbsProperty

OrientationProperty

Defines the Orientation property.

public static readonly StyledProperty<Orientation> OrientationProperty

OverlapKindProperty

Defines the OverlapKind property.

public static readonly StyledProperty<RangeSliderOverlapKind> OverlapKindProperty

RangeEditMaximumValueCountProperty

Defines the RangeEditMaximumValueCount property.

public static readonly StyledProperty<int> RangeEditMaximumValueCountProperty

RangeEditMinimumValueCountProperty

Defines the RangeEditMinimumValueCount property.

public static readonly StyledProperty<int> RangeEditMinimumValueCountProperty

RangeEndProperty

Defines the RangeEnd property.

public static readonly StyledProperty<double> RangeEndProperty

RangeStartProperty

Defines the RangeStart property.

public static readonly StyledProperty<double> RangeStartProperty

RoundingDecimalPlaceProperty

Defines the RoundingDecimalPlace property.

public static readonly StyledProperty<int?> RoundingDecimalPlaceProperty

SmallChangeProperty

Defines the SmallChange property.

public static readonly StyledProperty<double> SmallChangeProperty

StepFrequencyProperty

Defines the StepFrequency property.

public static readonly StyledProperty<double> StepFrequencyProperty

ThumbThemeProperty

Defines the ThumbTheme property.

public static readonly StyledProperty<ControlTheme?> ThumbThemeProperty

ThumbValueBadgeDisplayKindsProperty

Defines the ThumbValueBadgeDisplayKinds property.

public static readonly StyledProperty<RangeSliderValueBadgeDisplayKinds> ThumbValueBadgeDisplayKindsProperty

ThumbValueBadgePlacementProperty

Defines the ThumbValueBadgePlacement property.

public static readonly StyledProperty<RangeSliderPlacement> ThumbValueBadgePlacementProperty

TickBarReservedSpaceProperty

Defines the TickBarReservedSpace property.

public static readonly DirectProperty<RangeSlider, Rect> TickBarReservedSpaceProperty

TickBarThemeProperty

Defines the TickBarTheme property.

public static readonly StyledProperty<ControlTheme?> TickBarThemeProperty

TickFrequencyProperty

Defines the TickFrequency property.

public static readonly StyledProperty<double> TickFrequencyProperty

TickPlacementProperty

Defines the TickPlacement property.

public static readonly StyledProperty<TickPlacement> TickPlacementProperty

TicksProperty

Defines the Ticks property.

public static readonly StyledProperty<AvaloniaList<double>?> TicksProperty

ValueContentConverterProperty

Defines the ValueContentConverter property.

public static readonly StyledProperty<IValueConverter?> ValueContentConverterProperty

ValueFormatProperty

Defines the ValueFormat property.

public static readonly StyledProperty<string?> ValueFormatProperty

ValuesProperty

Defines the Values property.

public static readonly StyledProperty<ObservableCollection<double>?> ValuesProperty

Inherited Members

  • TemplatedControl.BackgroundProperty
  • TemplatedControl.BackgroundSizingProperty
  • TemplatedControl.BorderBrushProperty
  • TemplatedControl.BorderThicknessProperty
  • TemplatedControl.CornerRadiusProperty
  • TemplatedControl.FontFamilyProperty
  • TemplatedControl.FontFeaturesProperty
  • TemplatedControl.FontSizeProperty
  • TemplatedControl.FontStyleProperty
  • TemplatedControl.FontWeightProperty
  • TemplatedControl.FontStretchProperty
  • TemplatedControl.ForegroundProperty
  • TemplatedControl.LetterSpacingProperty
  • TemplatedControl.PaddingProperty
  • TemplatedControl.TemplateProperty
  • TemplatedControl.IsTemplateFocusTargetProperty
  • TemplatedControl.TemplateAppliedEvent
  • TemplatedControl.GetIsTemplateFocusTarget(Control)
  • TemplatedControl.SetIsTemplateFocusTarget(Control, bool)
  • TemplatedControl.ApplyTemplate()
  • TemplatedControl.GetTemplateFocusTarget()
  • TemplatedControl.OnAttachedToLogicalTree(LogicalTreeAttachmentEventArgs)
  • TemplatedControl.OnDetachedFromLogicalTree(LogicalTreeAttachmentEventArgs)
  • TemplatedControl.OnTemplateChanged(AvaloniaPropertyChangedEventArgs)
  • TemplatedControl.Background
  • TemplatedControl.BackgroundSizing
  • TemplatedControl.BorderBrush
  • TemplatedControl.BorderThickness
  • TemplatedControl.CornerRadius
  • TemplatedControl.FontFamily
  • TemplatedControl.FontFeatures
  • TemplatedControl.FontSize
  • TemplatedControl.FontStyle
  • TemplatedControl.FontWeight
  • TemplatedControl.FontStretch
  • TemplatedControl.Foreground
  • TemplatedControl.LetterSpacing
  • TemplatedControl.Padding
  • TemplatedControl.Template
  • TemplatedControl.TemplateApplied
  • Control.FocusAdornerProperty
  • Control.TagProperty
  • Control.ContextMenuProperty
  • Control.ContextFlyoutProperty
  • Control.RequestBringIntoViewEvent
  • Control.LoadedEvent
  • Control.UnloadedEvent
  • Control.SizeChangedEvent
  • Control.OnLoaded(RoutedEventArgs)
  • Control.OnUnloaded(RoutedEventArgs)
  • Control.OnSizeChanged(SizeChangedEventArgs)
  • Control.OnAttachedToVisualTreeCore(VisualTreeAttachmentEventArgs)
  • Control.OnDetachedFromVisualTreeCore(VisualTreeAttachmentEventArgs)
  • Control.OnGotFocus(FocusChangedEventArgs)
  • Control.OnLostFocus(FocusChangedEventArgs)
  • Control.OnPointerReleased(PointerReleasedEventArgs)
  • Control.OnKeyUp(KeyEventArgs)
  • Control.OnPropertyChanged(AvaloniaPropertyChangedEventArgs)
  • Control.UpdateDataValidation(AvaloniaProperty, BindingValueType, Exception)
  • Control.FocusAdorner
  • Control.DataTemplates
  • Control.ContextMenu
  • Control.ContextFlyout
  • Control.IsLoaded
  • Control.Tag
  • Control.Loaded
  • Control.Unloaded
  • Control.SizeChanged
  • InputElement.FocusableProperty
  • InputElement.IsEnabledProperty
  • InputElement.IsEffectivelyEnabledProperty
  • InputElement.CursorProperty
  • InputElement.IsKeyboardFocusWithinProperty
  • InputElement.IsFocusedProperty
  • InputElement.IsHitTestVisibleProperty
  • InputElement.IsPointerOverProperty
  • InputElement.IsTabStopProperty
  • InputElement.GotFocusEvent
  • InputElement.GettingFocusEvent
  • InputElement.LostFocusEvent
  • InputElement.LosingFocusEvent
  • InputElement.KeyDownEvent
  • InputElement.KeyUpEvent
  • InputElement.TabIndexProperty
  • InputElement.TextInputEvent
  • InputElement.TextInputMethodClientRequestedEvent
  • InputElement.PointerEnteredEvent
  • InputElement.PointerExitedEvent
  • InputElement.PointerMovedEvent
  • InputElement.PointerPressedEvent
  • InputElement.PointerReleasedEvent
  • InputElement.PointerCaptureLostEvent
  • InputElement.PointerWheelChangedEvent
  • InputElement.ContextRequestedEvent
  • InputElement.ContextCanceledEvent
  • InputElement.IsHoldingEnabledProperty
  • InputElement.IsHoldWithMouseEnabledProperty
  • InputElement.PinchEvent
  • InputElement.PinchEndedEvent
  • InputElement.PullGestureEvent
  • InputElement.PullGestureEndedEvent
  • InputElement.SwipeGestureEvent
  • InputElement.SwipeGestureEndedEvent
  • InputElement.ScrollGestureEvent
  • InputElement.ScrollGestureInertiaStartingEvent
  • InputElement.ScrollGestureEndedEvent
  • InputElement.PointerTouchPadGestureMagnifyEvent
  • InputElement.PointerTouchPadGestureRotateEvent
  • InputElement.PointerTouchPadGestureSwipeEvent
  • InputElement.TappedEvent
  • InputElement.RightTappedEvent
  • InputElement.HoldingEvent
  • InputElement.DoubleTappedEvent
  • InputElement.Focus(NavigationMethod, KeyModifiers)
  • InputElement.OnAccessKey(RoutedEventArgs)
  • InputElement.OnGettingFocus(FocusChangingEventArgs)
  • InputElement.OnLosingFocus(FocusChangingEventArgs)
  • InputElement.OnKeyDown(KeyEventArgs)
  • InputElement.OnTextInput(TextInputEventArgs)
  • InputElement.OnPointerEntered(PointerEventArgs)
  • InputElement.OnPointerExited(PointerEventArgs)
  • InputElement.OnPointerMoved(PointerEventArgs)
  • InputElement.OnPointerPressed(PointerPressedEventArgs)
  • InputElement.GetNextTabStopOverride()
  • InputElement.GetPreviousTabStopOverride()
  • InputElement.GetFirstFocusableElementOverride()
  • InputElement.GetLastFocusableElementOverride()
  • InputElement.OnPointerCaptureLost(PointerCaptureLostEventArgs)
  • InputElement.ProcessTabStopOverride(IInputElement, IInputElement, bool, bool, ref IInputElement)
  • InputElement.ProcessCandidateTabStopOverride(IInputElement, IInputElement, IInputElement, bool, ref IInputElement)
  • InputElement.OnPointerWheelChanged(PointerWheelEventArgs)
  • InputElement.OnTapped(TappedEventArgs)
  • InputElement.OnRightTapped(TappedEventArgs)
  • InputElement.OnDoubleTapped(TappedEventArgs)
  • InputElement.OnHolding(HoldingRoutedEventArgs)
  • InputElement.UpdateIsEffectivelyEnabled()
  • InputElement.GetIsHoldingEnabled(StyledElement)
  • InputElement.SetIsHoldingEnabled(StyledElement, bool)
  • InputElement.GetIsHoldWithMouseEnabled(StyledElement)
  • InputElement.SetIsHoldWithMouseEnabled(StyledElement, bool)
  • InputElement.Focusable
  • InputElement.IsEnabled
  • InputElement.Cursor
  • InputElement.IsKeyboardFocusWithin
  • InputElement.IsFocused
  • InputElement.IsHitTestVisible
  • InputElement.IsPointerOver
  • InputElement.IsTabStop
  • InputElement.IsEffectivelyEnabled
  • InputElement.TabIndex
  • InputElement.KeyBindings
  • InputElement.IsEnabledCore
  • InputElement.GestureRecognizers
  • InputElement.GotFocus
  • InputElement.GettingFocus
  • InputElement.LostFocus
  • InputElement.LosingFocus
  • InputElement.KeyDown
  • InputElement.KeyUp
  • InputElement.TextInput
  • InputElement.TextInputMethodClientRequested
  • InputElement.PointerEntered
  • InputElement.PointerExited
  • InputElement.PointerMoved
  • InputElement.PointerPressed
  • InputElement.PointerReleased
  • InputElement.PointerCaptureLost
  • InputElement.PointerWheelChanged
  • InputElement.ContextRequested
  • InputElement.ContextCanceled
  • InputElement.Pinch
  • InputElement.PinchEnded
  • InputElement.PullGesture
  • InputElement.PullGestureEnded
  • InputElement.ScrollGesture
  • InputElement.ScrollGestureInertiaStarting
  • InputElement.ScrollGestureEnded
  • InputElement.PointerTouchPadGestureMagnify
  • InputElement.PointerTouchPadGestureRotate
  • InputElement.SwipeGesture
  • InputElement.SwipeGestureEnded
  • InputElement.PointerTouchPadGestureSwipe
  • InputElement.Tapped
  • InputElement.RightTapped
  • InputElement.Holding
  • InputElement.DoubleTapped
  • Interactive.AddHandler(RoutedEvent, Delegate, RoutingStrategies, bool)
  • Interactive.AddHandler<TEventArgs>(RoutedEvent<TEventArgs>, EventHandler<TEventArgs>, RoutingStrategies, bool)
  • Interactive.RemoveHandler(RoutedEvent, Delegate)
  • Interactive.RemoveHandler<TEventArgs>(RoutedEvent<TEventArgs>, EventHandler<TEventArgs>)
  • Interactive.RaiseEvent(RoutedEventArgs)
  • Interactive.BuildEventRoute(RoutedEvent)
  • Layoutable.DesiredSizeProperty
  • Layoutable.WidthProperty
  • Layoutable.HeightProperty
  • Layoutable.MinWidthProperty
  • Layoutable.MaxWidthProperty
  • Layoutable.MinHeightProperty
  • Layoutable.MaxHeightProperty
  • Layoutable.MarginProperty
  • Layoutable.HorizontalAlignmentProperty
  • Layoutable.VerticalAlignmentProperty
  • Layoutable.UseLayoutRoundingProperty
  • Layoutable.UpdateLayout()
  • Layoutable.Measure(Size)
  • Layoutable.Arrange(Rect)
  • Layoutable.InvalidateMeasure()
  • Layoutable.InvalidateArrange()
  • Layoutable.AffectsMeasure<T>(params AvaloniaProperty[])
  • Layoutable.AffectsArrange<T>(params AvaloniaProperty[])
  • Layoutable.MeasureCore(Size)
  • Layoutable.MeasureOverride(Size)
  • Layoutable.ArrangeCore(Rect)
  • Layoutable.ArrangeOverride(Size)
  • Layoutable.OnMeasureInvalidated()
  • Layoutable.OnVisualParentChanged(Visual, Visual)
  • Layoutable.Width
  • Layoutable.Height
  • Layoutable.MinWidth
  • Layoutable.MaxWidth
  • Layoutable.MinHeight
  • Layoutable.MaxHeight
  • Layoutable.Margin
  • Layoutable.HorizontalAlignment
  • Layoutable.VerticalAlignment
  • Layoutable.DesiredSize
  • Layoutable.IsMeasureValid
  • Layoutable.IsArrangeValid
  • Layoutable.UseLayoutRounding
  • Layoutable.EffectiveViewportChanged
  • Layoutable.LayoutUpdated
  • Visual.BoundsProperty
  • Visual.ClipToBoundsProperty
  • Visual.ClipProperty
  • Visual.IsVisibleProperty
  • Visual.OpacityProperty
  • Visual.OpacityMaskProperty
  • Visual.CacheModeProperty
  • Visual.EffectProperty
  • Visual.HasMirrorTransformProperty
  • Visual.RenderTransformProperty
  • Visual.RenderTransformOriginProperty
  • Visual.FlowDirectionProperty
  • Visual.VisualParentProperty
  • Visual.ZIndexProperty
  • Visual.GetFlowDirection(Visual)
  • Visual.SetFlowDirection(Visual, FlowDirection)
  • Visual.InvalidateVisual()
  • Visual.Render(DrawingContext)
  • Visual.AffectsRender<T>(params AvaloniaProperty[])
  • Visual.LogicalChildrenCollectionChanged(object, NotifyCollectionChangedEventArgs)
  • Visual.OnAttachedToVisualTree(VisualTreeAttachmentEventArgs)
  • Visual.OnDetachedFromVisualTree(VisualTreeAttachmentEventArgs)
  • Visual.InvalidateMirrorTransform()
  • Visual.Bounds
  • Visual.ClipToBounds
  • Visual.Clip
  • Visual.IsEffectivelyVisible
  • Visual.IsVisible
  • Visual.Opacity
  • Visual.OpacityMask
  • Visual.CacheMode
  • Visual.Effect
  • Visual.HasMirrorTransform
  • Visual.RenderTransform
  • Visual.RenderTransformOrigin
  • Visual.FlowDirection
  • Visual.ZIndex
  • Visual.VisualChildren
  • Visual.VisualRoot
  • Visual.BypassFlowDirectionPolicies
  • Visual.AttachedToVisualTree
  • Visual.DetachedFromVisualTree
  • StyledElement.DataContextProperty
  • StyledElement.NameProperty
  • StyledElement.ParentProperty
  • StyledElement.TemplatedParentProperty
  • StyledElement.ThemeProperty
  • StyledElement.BeginInit()
  • StyledElement.EndInit()
  • StyledElement.ApplyStyling()
  • StyledElement.InitializeIfNeeded()
  • StyledElement.TryGetResource(object, ThemeVariant, out object)
  • StyledElement.OnDataContextChanged(EventArgs)
  • StyledElement.OnDataContextBeginUpdate()
  • StyledElement.OnDataContextEndUpdate()
  • StyledElement.Name
  • StyledElement.Classes
  • StyledElement.DataContext
  • StyledElement.IsInitialized
  • StyledElement.Styles
  • StyledElement.StyleKey
  • StyledElement.Resources
  • StyledElement.TemplatedParent
  • StyledElement.Theme
  • StyledElement.LogicalChildren
  • StyledElement.PseudoClasses
  • StyledElement.StyleKeyOverride
  • StyledElement.Parent
  • StyledElement.ActualThemeVariant
  • StyledElement.AttachedToLogicalTree
  • StyledElement.DetachedFromLogicalTree
  • StyledElement.DataContextChanged
  • StyledElement.Initialized
  • StyledElement.ResourcesChanged
  • StyledElement.ActualThemeVariantChanged
  • Animatable.TransitionsProperty
  • Animatable.OnPropertyChangedCore(AvaloniaPropertyChangedEventArgs)
  • Animatable.Transitions
  • AvaloniaObject.CheckAccess()
  • AvaloniaObject.VerifyAccess()
  • AvaloniaObject.ClearValue(AvaloniaProperty)
  • AvaloniaObject.ClearValue<T>(AvaloniaProperty<T>)
  • AvaloniaObject.ClearValue<T>(StyledProperty<T>)
  • AvaloniaObject.ClearValue<T>(DirectPropertyBase<T>)
  • AvaloniaObject.Equals(object)
  • AvaloniaObject.GetHashCode()
  • AvaloniaObject.GetValue(AvaloniaProperty)
  • AvaloniaObject.GetValue<T>(StyledProperty<T>)
  • AvaloniaObject.GetValue<T>(DirectPropertyBase<T>)
  • AvaloniaObject.GetBaseValue<T>(StyledProperty<T>)
  • AvaloniaObject.IsAnimating(AvaloniaProperty)
  • AvaloniaObject.IsSet(AvaloniaProperty)
  • AvaloniaObject.SetValue(AvaloniaProperty, object, BindingPriority)
  • AvaloniaObject.SetValue<T>(StyledProperty<T>, T, BindingPriority)
  • AvaloniaObject.SetValue<T>(DirectPropertyBase<T>, T)
  • AvaloniaObject.SetCurrentValue(AvaloniaProperty, object)
  • AvaloniaObject.SetCurrentValue<T>(StyledProperty<T>, T)
  • AvaloniaObject.Bind(AvaloniaProperty, BindingBase)
  • AvaloniaObject.Bind(AvaloniaProperty, IObservable<object>, BindingPriority)
  • AvaloniaObject.Bind<T>(StyledProperty<T>, IObservable<object>, BindingPriority)
  • AvaloniaObject.Bind<T>(StyledProperty<T>, IObservable<T>, BindingPriority)
  • AvaloniaObject.Bind<T>(StyledProperty<T>, IObservable<BindingValue<T>>, BindingPriority)
  • AvaloniaObject.Bind<T>(DirectPropertyBase<T>, IObservable<object>)
  • AvaloniaObject.Bind<T>(DirectPropertyBase<T>, IObservable<T>)
  • AvaloniaObject.Bind<T>(DirectPropertyBase<T>, IObservable<BindingValue<T>>)
  • AvaloniaObject.CoerceValue(AvaloniaProperty)
  • AvaloniaObject.RaisePropertyChanged<T>(DirectPropertyBase<T>, T, T)
  • AvaloniaObject.SetAndRaise<T>(DirectPropertyBase<T>, ref T, T)
  • AvaloniaObject.InheritanceParent
  • AvaloniaObject.this[AvaloniaProperty]
  • AvaloniaObject.this[IndexerDescriptor]
  • AvaloniaObject.Dispatcher
  • AvaloniaObject.PropertyChanged
  • object.GetType()
  • object.MemberwiseClone()
  • object.Equals(object, object)
  • object.ReferenceEquals(object, object)

Extension Methods