Viraj Shah
Viraj Shah

Reputation: 308

How to make not scrollable listbox in windows phone 8

How do I make the listbox that can not scroll in windows phone 8? it should not be even move up and down?

Upvotes: 2

Views: 542

Answers (2)

Pradeep Kesharwani
Pradeep Kesharwani

Reputation: 1478

To achive this you need to set ScrollViewer.VerticalScrollBarVisibility="Disabled" in your listbox control like below example:

<ListBox x:Name="lst" ScrollViewer.VerticalScrollBarVisibility="Disabled">
                        <ListBox.ItemTemplate>
                            <DataTemplate>
                                //add your data template here
                            </DataTemplate>
                        </ListBox.ItemTemplate>
                    </ListBox>

Upvotes: 4

Dov D.
Dov D.

Reputation: 530

Use CSS -ms-touch-action: none;

Upvotes: 2

Related Questions