diff --git a/Files/Views/Pages/Properties.xaml.cs b/Files/Views/Pages/Properties.xaml.cs index feda600f4f28..a1b641cbd6fa 100644 --- a/Files/Views/Pages/Properties.xaml.cs +++ b/Files/Views/Pages/Properties.xaml.cs @@ -6,6 +6,7 @@ using System; using System.Threading; using Windows.ApplicationModel.Core; +using Windows.ApplicationModel.Resources.Core; using Windows.Foundation.Metadata; using Windows.System; using Windows.UI; @@ -36,6 +37,13 @@ public sealed partial class Properties : Page public Properties() { InitializeComponent(); + + var flowDirectionSetting = ResourceContext.GetForCurrentView().QualifierValues["LayoutDirection"]; + + if (flowDirectionSetting == "RTL") + { + FlowDirection = FlowDirection.RightToLeft; + } } protected override void OnNavigatedTo(NavigationEventArgs e)