MBZ
MBZ

Reputation: 27592

Right to Left (RTL) Tiles

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

Answers (2)

Nathan Kuchta
Nathan Kuchta

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

Disco Banana
Disco Banana

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

Related Questions