i'm trying to get uwp app's initial page size to take on a specific width and height leveraging to ensure wrapping as necessary of TextBlock content.
If I don't set Width and Height properties at Page or Grid container for StackPanel layout control of content then the behaves as i'd expect it in the event where I use grab handles on view edges and corners to resize it.
If I do set Width and Height properties at Page or Grid container for StackPanel layout control of content then the does not appear to work at all.
What is the right way to set the desired initial Width and Height for uwp app Page and have the child Grid/StackPanel/TextBlock[@TextWrapping="Wrap"] content behave as expected when outer window resizing events occur?