You can specify how to show visual feedback when the scroll reaches the end point by using the C1Zoom.BoundaryFeedbackMode property.
If the C1Zoom.BoundaryFeedbackMode property is Split when the scrolling reaches the end point, the content area will continue to scroll a little, and then bound back. This is the default behavior.
If the C1Zoom.BoundaryFeedbackMode property is Standard when the scrolling reaches the end point, the content area will continue to scroll a little, and then bound back.
Use the following code to programatically set the C1Zoom.BoundaryFeedbackMode property to Standard:
Visual Basic |
Copy Code
|
---|---|
C1Zoom1.BoundaryFeedbackMode = C1.Win.TouchToolKit.BoundaryFeedbackMode.Standard |
Title Text |
Copy Code
|
---|---|
c1Zoom1.BoundaryFeedbackMode = C1.Win.TouchToolKit.BoundaryFeedbackMode.Standard; |