Metro App How to disable Gridview scrolling

2019-02-24 12:47发布

Is it possible to disable scrolling in GridView ?

2条回答
神经病院院长
2楼-- · 2019-02-24 12:52

Try this inside of the GridView

<GridView
    ScrollViewer.HorizontalScrollBarVisibility="Disabled">
查看更多
在下西门庆
3楼-- · 2019-02-24 13:09

As an alternative you could use

<GridView ScrollViewer.HorizontalScrollMode="Disabled" />

If you're setting this property dynamically, the Scrolling will be disabled but the ScrollPosition stays (on *ScrollBarVisibilty=Disabled the ScrollPosition gets set to 0)

Dynamic Example:

ScrollViewer.SetHorizontalScrollMode(YourGridView, ScrollMode.Disabled);
查看更多
登录 后发表回答