0
votes

On Windows Phone Silverlight 8 the maximum UIElement size is 2048x2048.

Does this limitation still exist on WP 8.1 with Windows Runtime XAML?

2
Well, the easiest still is probably just to try - Kevin Gosse

2 Answers

1
votes

No.

  <ScrollViewer>
            <Grid Width="150"
                  Height="40000"
                  Background="Green" Margin="20"></Grid>
  </ScrollViewer>

It's works!

1
votes

Nope. There is no size limitations on Windows Runtime applications. In both Phone and Store application, you can the UIElement in any sizes (both width and height).