-
I noticed the Slider of WPF have Thumb.DragCompleted event to get new value, but it seems that can't in WinUI. So, What can I do? Thanks a million. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
You can use ValueChanged |
Beta Was this translation helpful? Give feedback.
-
For the event when you release the Thumb, you can call ManipulationCompleted
|
Beta Was this translation helpful? Give feedback.
For the event when you release the Thumb, you can call ManipulationCompleted
In XAML :
ManipulationMode="All" ManipulationCompleted="slider1_ManipulationCompleted"
and