How do I disable window resizing in a Universal Windows app?

When I create a new Windows Universal app and run it, I can resize it. How do I disable this feature?

Compared to WPF, you can set a property to a ResizeMode

value ResizeMode.NoResize

. I tried to implement this in my project, but it didn't work as expected.

+3


source to share





All Articles