mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-28 20:58:07 +03:00

This fixes VS messages regarding namespaces, removes some redundant usings and SDK parameters, and adds XAML design data contexts.
12 lines
285 B
C#
12 lines
285 B
C#
using TRX_ConfigToolLib.Models.Lang;
|
|
using TRX_ConfigToolLib.Utils;
|
|
|
|
namespace TRX_ConfigToolLib.Models;
|
|
|
|
public class BaseLanguageViewModel : BaseNotifyPropertyChanged
|
|
{
|
|
public static Dictionary<string, string> ViewText
|
|
{
|
|
get => Language.Instance.Controls;
|
|
}
|
|
}
|