Reputation: 1299
I have a windows phone 8.1 app which has a lot of textual data. But when i go to settings > ease of access and increase the text size, the text gets bloated on the screen including the controls. Is there a way to handle this in the app?
Upvotes: 1
Views: 85
Reputation: 12019
You want to set the IsTextScaleFactorEnabled
property to false
on your controls.
If you ever need to manually determine the text scale-factor, you can get it from UISettings
.
Upvotes: 1