Hi All,
Our XBAP application needs to be running on our user laptops/desktops these laptop/desktops are having different screen resolutions. Due to this our appreciation appearing in laptop/desktops chopped or on some laptop/desktops layout/controls appear differently.
As some posts suggested we used ViewBox (with stretch property UniformToFill or Uniform ) with ScrollViewer , this introduced a problem of controls, labels appearing bigger occupying the max screen which is also not a very good solution..
<Grid>
<ScrollViewer VerticalScrollBarVisibility="Visible" HorizontalScrollBarVisibility="Visible">
<Viewbox Stretch="Uniform">
....
...
</Viewbox></ScrollViewer>
</Grid>
Appreciate if someone can help with a solution which solves our issue.
Prakash.G