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
yesterday - last edited yesterday
waht is workOrderCustomMapPage
is it id: of page or property variant
yesterday
yesterday
actually in my application
i am using navigatione pane as firstpage ,i want to disable the peek for secondpage
i tried same code but it is not working
please help me
yesterday
This should work for any page in the app