Ukrainisch und Arabisch als Sprachen hinzugefügt

This commit is contained in:
2026-02-13 12:19:18 +01:00
parent b4d70c4825
commit e50f578547
6 changed files with 340 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
using MySql.Data.MySqlClient;
using System;
using System.Globalization;
using System.Threading;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
@@ -100,6 +101,11 @@ namespace SkyTeam
string culture = selectedItem.Tag.ToString();
Thread.CurrentThread.CurrentUICulture = new CultureInfo(culture);
if (culture == "ar")
this.FlowDirection = FlowDirection.RightToLeft;
else
this.FlowDirection = FlowDirection.LeftToRight;
NavigationService.Navigate(new SettingsPage());
}
}