I'm learning XAML for a WinUI3 / C# desktop app and i have found a control for a range selection slider with two handles in the UWP toolkit, but i don't know if/how to implement that namespace in a native WinUI3 project. I'd prefer a proper new implementation if possible, but i don't know if there is something similar? My best searches are coming up empty.
<Page ...
xmlns:controls="using:Microsoft.Toolkit.Uwp.UI.Controls"/>
<controls:RangeSelector x:Name="RangeSelectorControl"
Minimum="10"
Maximum="100"
StepFrequency="2">
</controls:RangeSelector>
CodePudding user response:
Yes, in the WinUI 3 version of the toolkit: CommunityToolkit.WinUI.UI.Controls.Input
https://www.nuget.org/packages/CommunityToolkit.WinUI.UI.Controls.Input/