Reputation: 27592
Is it possible to create an Right to Left (RTL) tile for Windows 8 apps?
The tiles switch to RTL direction when one changes the windows settings but I need to force it even on non-RTL machines.
Upvotes: 1
Views: 714
Reputation: 14182
For tile or toast notifications, setting the lang
attribute to an RTL language (e.g., "ar-SA") on either the <binding />
or <visual/>
element in the notification XML will perform layout appropriate for the specified language.
Upvotes: 1
Reputation: 102
See this MSDN article. http://msdn.microsoft.com/en-us/library/windows/apps/jj712702.aspx You should be able to use UnicodeDirectionMarkers.LeftToRightDirectionMarker to mark the text and reverse it.
Upvotes: 1