I'm working on Windows Store application basically developped for screen resolution 1366x768. But for anothers resolutions I want to provide proportional adapting when all content is shown on the screen in the same proportions like it would be shown on the defined screen resolution (in my case 1366x768).
Is it possible to provide something like static resolution for application or may there is another ways to reach this?
Try using a ViewBox
and set the child element to 1366 width, 768 height. The contents should scale proportionally to whatever resolution the user's device is.