可以将滚动查看器添加到相关面板吗?

时间:2016-02-15 23:18:41

标签: c# xaml win-universal-app scrollviewer

是否可以在UWP中向相对面板添加scrollviewer?我试过了,似乎根本没有工作。当我改变手机的方向时,我需要滚动查看器以确保显示屏幕上的所有控件。

1 个答案:

答案 0 :(得分:2)

我也面临同样的情况,我所做的可能对你有帮助, 我将RelativePanel放在ScrollViewer内,而ScrollViewer将放在Grid中。 VisualStateManager中的RelativePanel内容不在<Grid> <VisualStateManager.VisualStateGroups> ... </VisualStateManager.VisualStateGroups> <ScrollViewer> <RelativePanel> ... </RelativePanel> </ScrollViewer> </Grid> 中。 如下所示:

        Picasso.with(context)
            .load(imageURL)
            .error(R.drawable.default).into(imageView);