Mtf.WPF.LanguageService 1.0.6

dotnet add package Mtf.WPF.LanguageService --version 1.0.6
NuGet\Install-Package Mtf.WPF.LanguageService -Version 1.0.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Mtf.WPF.LanguageService" Version="1.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Mtf.WPF.LanguageService --version 1.0.6
#r "nuget: Mtf.WPF.LanguageService, 1.0.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Mtf.WPF.LanguageService as a Cake Addin
#addin nuget:?package=Mtf.WPF.LanguageService&version=1.0.6

// Install Mtf.WPF.LanguageService as a Cake Tool
#tool nuget:?package=Mtf.WPF.LanguageService&version=1.0.6

Usage

GitHub URL Developer's URL Facebook Page

using LanguageService;
using LanguageService.WPF;

public partial class MainWindow : Window
{
	public MainWindow()
	{
		InitializeComponent();

		lv.ItemsSource = new[] { Lng.Elem("Users"), Lng.Elem("Groups") };
		rtb.Document.Blocks.Add(new Paragraph(new Run(Lng.Elem("File name"))));

		Translator.Translate(this);
	}
}

If you need to translate to Hungarian, just use this code snippet.

Lng.DefaultLanguage = LanguageService.Language.Hungarian;
Translator.Translate(this);

You can translate from any language to any other language like this.

Lng.Translate(Language.Hungarian, "Ismétlődés", Language.English);
Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.8

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.6 320 12/3/2022
1.0.5 475 11/14/2020
1.0.4 425 8/7/2020
1.0.3 369 8/7/2020
1.0.2 476 7/19/2020
1.0.1 551 5/13/2020

Add Playtime register language elements.