1
0
Fork 0
mirror of https://github.com/wagesj45/butterflow-ui.git synced 2025-09-09 03:00:39 -05:00
butterflow-ui/butterflow-ui/OptionsWindow.xaml.cs
Jordan Wages 01d62e8136 Localizations
Added Arabic, Japanese, Russian, and Chinese translations via auto-translator.
2018-07-14 22:17:15 -05:00

62 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace butterflow_ui
{
/// <summary>
/// Interaction logic for OptionsWindow.xaml
/// </summary>
public partial class OptionsWindow : Window
{
#region Properties
/// <summary> Gets or sets the supported languages. </summary>
/// <value> The supported languages. </value>
public List<CultureInfo> SupportedLanguages { get; set; } = new List<CultureInfo>(new[]
{
CultureInfo.CreateSpecificCulture("en-US"),
CultureInfo.CreateSpecificCulture("es"),
CultureInfo.CreateSpecificCulture("ar"),
CultureInfo.CreateSpecificCulture("ja"),
CultureInfo.CreateSpecificCulture("ru"),
CultureInfo.CreateSpecificCulture("zh-CN"),
});
#endregion
#region Constructors
/// <summary> Default constructor. </summary>
public OptionsWindow()
{
InitializeComponent();
}
#endregion
#region Methods
/// <summary> Event handler. Called by btnSave for click events. </summary>
/// <param name="sender"> Source of the event. </param>
/// <param name="e"> Routed event information. </param>
private void btnSave_Click(object sender, RoutedEventArgs e)
{
Properties.Settings.Default.Save();
this.Close();
}
#endregion
}
}