bloxstrap/Bloxstrap/UI/Elements/Dialogs/LanguageSelectorDialog.xaml.cs
pizzaboxer 81d7ffe3da
Draft: localisation support
this is a draft as i can't fully test this right now because i'm currently 37000 feet in the air and a 75 MB data quota costs 10 bucks :(

this also may be the first documented instance of me using wpf 100% properly as bill gates himself intended
2024-06-21 22:10:11 +01:00

34 lines
848 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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;
using Bloxstrap.UI.ViewModels.Dialogs;
namespace Bloxstrap.UI.Elements.Dialogs
{
/// <summary>
/// Interaction logic for LanguageSelectorDialog.xaml
/// </summary>
public partial class LanguageSelectorDialog
{
public LanguageSelectorDialog()
{
var viewModel = new LanguageSelectorViewModel();
DataContext = viewModel;
InitializeComponent();
viewModel.CloseRequestEvent += (_, _) => Close();
}
}
}