02-17-2013 11:52 PM
Hello,
My custom control requires a right swipe, but this initiates a peek. How can I prevent that?
Solved! Go to Solution.
02-18-2013 03:44 AM
02-18-2013 03:53 AM
if you're using a NavigationPane and open a Page on top from where you dont want allow to peek you can do something like this:
onTopChanged: {
if (workOrderCustomMapPage == page) {
peekEnabled = false
} else {
peekEnabled = true
}
}
in this case for one specific Page I disable peeking