Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

[Bug] Fixed RangeSlider eventname crash #1545

Merged
merged 5 commits into from
Aug 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,31 @@ public class RangeSlider : BaseTemplatedView<AbsoluteLayout>

const double disabledOpacity = .6;

[Preserve(Conditional = true)]
public event EventHandler? ValueChanged;

[Preserve(Conditional = true)]
public event EventHandler? LowerValueChanged;

[Preserve(Conditional = true)]
public event EventHandler? UpperValueChanged;

[Preserve(Conditional = true)]
public event EventHandler? DragStarted;

[Preserve(Conditional = true)]
public event EventHandler? LowerDragStarted;

[Preserve(Conditional = true)]
public event EventHandler? UpperDragStarted;

[Preserve(Conditional = true)]
public event EventHandler? DragCompleted;

[Preserve(Conditional = true)]
public event EventHandler? LowerDragCompleted;

[Preserve(Conditional = true)]
public event EventHandler? UpperDragCompleted;

public static BindableProperty MinimumValueProperty
Expand Down