Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
325
how can i enable the scroll bar for the XamGrid when the XamGrid's mode is "IsEnable=False"
posted

anybody know it? thanks in advance...

Parents
No Data
Reply
  • 440
    posted

    Hi,

    in theory,  once you set IsEnabled to False the control stops receiving input events. Here are two options that come into my mind:

    1. If you need a readonly Grid you can set each Column of this XamGrid to IsReadOnly=True. This will prevent changes from you users but will keep the scrolling functionality.
    2. Another alternative  is to place the xamGrid into a ScrollViewer. Then you will have a scrolling, but it will also scroll the headers of the columns.

    Give us more info on what are you trying to achieve so we can work something out together.

Children