Vikas
Vikas

Reputation: 21

Phonegap windows phone page bounces on scrolling

I am developing phone gap application for windows phone. On application launch when I scroll on page then pages bounces vertically. I want that page is fixed & non scroll-able. Any Suggestions?

Upvotes: 1

Views: 1660

Answers (1)

TSV
TSV

Reputation: 7641

You can add the following code in the MainPage.xaml.cs file:

    // Constructor
    public MainPage()
    {
        InitializeComponent();
        .... // some default initialization code was here
        // and disable bouncy scrolling option:
        this.CordovaView.DisableBouncyScrolling = true;
    }

Upvotes: 3

Related Questions