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