Windows phone Store app Font size Issue -
i have created windows phone 8.1 store app.
i have change setting: setting->ease of access->text size max
now if launch app fonts disturbed larger font sizes, not happening in earlier silverlight apps
is there way create app irrespective of device font size.as not messages or contacts there many complex ui can not adjusted every font sizes.
any appreciated
thanks
sure, xaml text elements support property istextscalefactorenabled set true default. if want elements no affected ease of access settings set property false:
<textblock text="looking fresh" istextscalefactorenabled="false" /> you can read more here:
https://msdn.microsoft.com/en-us/library/windows/apps/hh868163.aspx
Comments
Post a Comment