Localizing a XAML app with plain .resx usually means string-typed keys that break silently at
runtime, and a language change that only takes effect after a restart or window reload.
ResXLocalization fixes both: you keep the .resx files and editors you already use, and get
compile-checked keys (a renamed or deleted resource becomes a build error, not a runtime
surprise) and instant, in-place language switching - in Avalonia and WPF alike.
<!-- Strongly-typed key, generated from your .resx, updates live on every culture switch. -->
<TextBlock Text="{l:Localize {x:Static res:AppStringsKeys.Greeting}}" />// Switch the whole UI to German - every bound string re-resolves in place, no reload.
Localizer.Current.CurrentCulture = new CultureInfo("de");
The included sample apps (Avalonia · WPF) - pick a language and every binding updates live, no reload.
- ⚡ Live, no-reload language switching - set one property and every bound string updates in place. No window reload, no view rebuild, no restart.
- 🔒 Type-safe, compile-checked keys - a source generator turns every
.resxinto strongly-typed keys with full IntelliSense. - 📦 Zero configuration - install one NuGet package and build; typed keys are generated automatically, nothing else to set up.
- 🚀 Native AOT & trim clean (Avalonia) - no reflection over your resources; publishes with
PublishAot=trueout of the box. (WPF is Windows-only and does not support Native AOT.) - 🗂️ First-class multiple
.resx- look up by typed key, scope to one file, or search across all registered files in a defined order. - 🔤 Enum localization built in - localize enum members by naming convention, in item templates and as bound values. See Localizing enums.
- 🧮 Format arguments -
Get(key, args…)formats the translation in the active culture; in XAML, bind theLocalizeArgs.Arg0…Arg8attached properties. See Dynamic format arguments. - 🩺 Missing-translation diagnostics - a visible
!key!sentinel (configurable) plus aTranslationNotFoundevent for logging and coverage reports. - 🌐 Language-picker ready -
GetAvailableCultures()discovers the cultures your app actually ships. - 🧩 MVVM-friendly - an injectable
ILocalizerservice withINotifyPropertyChanged, markup extensions for XAML, and a clean code-behind API. - 🪶 Leak-safe - discarded controls stay collectable (Avalonia uses weak events; WPF binds to the singleton through WPF's own weak binding-target references).
- Requirements
- Installation
- Quick start
- Localizing enums
- Dynamic format arguments
- Guides and API reference
- Troubleshooting
- The sample applications
- Building from source
- Versioning
- Contributing
- License
- Author
- An app targeting .NET 8 or later, built with the .NET 8 SDK or later.
- For Avalonia: Avalonia 12. For WPF: Windows.
.resxresource files with the standard sibling*.Designer.csaccessor, as generated by Visual Studio's or Rider's classic resx tooling. SDK-onlyGenerateResxSourceaccessors are not eligible; see Troubleshooting.
Install the package for your UI framework:
# Avalonia
dotnet add package ResXLocalization.Avalonia
# WPF
dotnet add package ResXLocalization.WPFResXLocalization.Avalonia |
ResXLocalization.WPF |
|
|---|---|---|
| Targets | net8.0 · net10.0 |
net8.0-windows · net10.0-windows |
| Platforms | cross-platform (Avalonia 12) | Windows only |
| Native AOT | ✅ Fully supported | ❌ Not supported (WPF limitation) |
That's it - the source generator and the build wiring for your .resx files are included; there is
nothing else to configure.
A few project properties are recommended. For Avalonia (required if you publish with Native AOT):
<PropertyGroup>
<!-- The cultures you ship. Each one builds a satellite assembly; required for AOT. -->
<SatelliteResourceLanguages>en;de</SatelliteResourceLanguages>
<!-- Lets the analyzers verify AOT-safety on a normal build. -->
<IsAotCompatible>true</IsAotCompatible>
<!-- Recommended for Avalonia apps in general. -->
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>For WPF, only the cultures you ship are worth declaring (WPF does not support AOT):
<PropertyGroup>
<SatelliteResourceLanguages>en;de</SatelliteResourceLanguages>
</PropertyGroup>Add a .resx file the normal way - for example Resources/AppStrings.resx (your neutral/default language) - and a satellite file per culture, e.g. Resources/AppStrings.de.resx:
| Key | AppStrings.resx (English) |
AppStrings.de.resx (German) |
|---|---|---|
WindowTitle |
My Application |
Meine Anwendung |
Greeting |
Hello and welcome! |
Hallo und willkommen! |
On every build, the source generator inspects each .resx and emits a typed key class named <FileName>Keys in the same namespace as your resource file. For AppStrings.resx you get:
// <auto-generated/>
namespace YourApp.Resources;
public static partial class AppStringsKeys
{
public static readonly ResourceKey Greeting = new("Greeting", AppStrings.ResourceManager);
public static readonly ResourceKey WindowTitle = new("WindowTitle", AppStrings.ResourceManager);
// …one ResourceKey per string entry, sorted, with sanitized member names.
}Each ResourceKey carries both the key name and the ResourceManager it belongs to - that is what makes typed lookups direct and collision-free.
Note
Only string entries become keys. Binary resources, images, colors, and any entry carrying a type/mimetype are skipped, and resource names that aren't valid C# identifiers are sanitized into valid member names.
Register each resource file once, then choose the starting culture.
Avalonia (Program.cs):
using System.Globalization;
using RentADeveloper.ResXLocalization;
using YourApp.Resources;
Localizer.Current.RegisterResourceManager(AppStrings.ResourceManager);
Localizer.Current.CurrentCulture = new CultureInfo("en");WPF (App.xaml.cs):
using System.Globalization;
using System.Windows;
using RentADeveloper.ResXLocalization;
using YourApp.Resources;
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
Localizer.Current.RegisterResourceManager(AppStrings.ResourceManager);
Localizer.Current.CurrentCulture = new CultureInfo("en");
}
}Registration is only needed for search-all lookups; typed and scoped lookups need no registration.
Tip
In Avalonia, put the registration (and the initial CurrentCulture) inside BuildAvaloniaApp() rather than Main. BuildAvaloniaApp runs at runtime and under the XAML previewer, so search-all lookups like {l:Localize Greeting} resolve at design time too instead of showing the !Greeting! sentinel.
Add the namespaces and bind with the {l:Localize} markup extension.
Avalonia:
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:l="clr-namespace:RentADeveloper.ResXLocalization.Avalonia;assembly=ResXLocalization.Avalonia"
xmlns:res="clr-namespace:YourApp.Resources"
Title="{l:Localize {x:Static res:AppStringsKeys.WindowTitle}}">
<TextBlock Text="{l:Localize {x:Static res:AppStringsKeys.Greeting}}" />
</Window>WPF:
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:l="clr-namespace:RentADeveloper.ResXLocalization.WPF;assembly=ResXLocalization.WPF"
xmlns:res="clr-namespace:YourApp.Resources"
Title="{l:Localize {x:Static res:AppStringsKeys.WindowTitle}}">
<TextBlock Text="{l:Localize {x:Static res:AppStringsKeys.Greeting}}" />
</Window>xmlns:lpoints at the framework package (Avalonia:assembly=ResXLocalization.Avalonia; WPF:assembly=ResXLocalization.WPF).xmlns:respoints at the namespace of your generated keys / resource accessors.
Localizer.Current.CurrentCulture = new CultureInfo("de");Every {l:Localize} binding re-resolves immediately. No reload, no flicker.
Enum members are localized by naming convention: add one string entry per member to any of your
.resx files, named Enum_<EnumTypeName>_<MemberName>. No attributes on the enum, no extra code.
public enum FileSortOrder { Unsorted, Ascending, Descending }| Key | AppStrings.resx (English) |
AppStrings.de.resx (German) |
|---|---|---|
Enum_FileSortOrder_Unsorted |
Unsorted |
Unsortiert |
Enum_FileSortOrder_Ascending |
Ascending (A-Z) |
Aufsteigend (A-Z) |
Enum_FileSortOrder_Descending |
Descending (Z-A) |
Absteigend (Z-A) |
Like every other lookup, enum labels update live when the culture changes. The same three usages work identically in Avalonia and WPF:
Inside a ComboBox/ListBox item template each item is the enum value (the DataContext), so
{l:LocalizeEnum} localizes it directly:
<ComboBox ItemsSource="{Binding FileSortOrders}"
SelectedItem="{Binding SelectedFileSortOrder}">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{l:LocalizeEnum}" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>When the enum is a bound property rather than the DataContext, use LocalizeEnumConverter in a
MultiBinding. The second binding - to the current culture - re-triggers the conversion on every
language switch:
<!-- xmlns:core="clr-namespace:RentADeveloper.ResXLocalization;assembly=ResXLocalization.Core" -->
<TextBlock>
<TextBlock.Text>
<MultiBinding Converter="{x:Static l:LocalizeEnumConverter.Default}">
<Binding Path="SelectedFileSortOrder" />
<Binding Path="CurrentCulture" Source="{x:Static core:Localizer.Current}" />
</MultiBinding>
</TextBlock.Text>
</TextBlock>Localizer.Current.Get(FileSortOrder.Ascending); // "Ascending (A-Z)" / "Aufsteigend (A-Z)"The markup extension, the converter, and the code API all accept a KeyPrefix (default
Enum_) and an optional ResourceManager that scopes the lookup to one .resx file - useful
for giving the same enum different label sets, or for keeping enum labels in their own file:
<TextBlock Text="{l:LocalizeEnum KeyPrefix=Display_,
ResourceManager={x:Static res:SortingStrings.ResourceManager}}" />Localizer.Current.Get(FileSortOrder.Ascending, SortingStrings.ResourceManager, "Display_");To customize the converter, declare your own instance in resources
(LocalizeEnumConverter.Default is read-only):
<l:LocalizeEnumConverter x:Key="DisplayEnumConverter" KeyPrefix="Display_" />A resource value can be a composite format string, and the arguments can come straight from your view model. Add the entry as usual:
| Key | AppStrings.resx (English) |
AppStrings.de.resx (German) |
|---|---|---|
PeopleInvited |
{0} people invited |
{0} Personen eingeladen |
Then bind the LocalizeArgs.Arg0…Arg8 attached properties on the element that carries the
localized property - the same XAML in Avalonia and WPF:
<TextBlock l:LocalizeArgs.Arg0="{Binding PeopleCount}"
Text="{l:Localize {x:Static res:AppStringsKeys.PeopleInvited}}" />The rendered text re-formats live whenever a bound argument changes and whenever the language
switches - PeopleCount = 5 renders 5 people invited, and switching to German re-renders it as
5 Personen eingeladen in place.
Worth knowing:
- Nine slots,
Arg0throughArg8. Arguments above the highest set slot are trimmed; a set slot with unset slots below it (say, onlyArg2) formats the gaps asnull, which renders empty. - Arguments are per element. Two localized properties on the same element - for example a
localized
Textand a localizedToolTip- share the one argument set. Give each its own element when they need different arguments. - Per-argument format specifiers belong in the resource string - e.g.
{0:N0} people invited- where translators can adjust them per language. Formatting runs in the active culture viaString.Format. - No arguments set - no formatting. An element without any
ArgNresolves exactly as before, so existing resource values containing literal{or}keep working without{{escaping. The missing-key sentinel (!key!) is likewise never formatted. - Keep it simple. For very complex strings, compose the text in your view model with
Get(key, args…)instead of wiring many argument slots. And composite formatting does not handle pluralization -1 people invitedis on the resource author; use separate singular/plural resources when it matters.
The API reference documents every public type and member. The sections below cover the operational details that go beyond the quick start.
In C# you almost always need only the first namespace:
| Namespace | Contains |
|---|---|
RentADeveloper.ResXLocalization |
ILocalizer, Localizer, ResourceKey - the shared engine |
RentADeveloper.ResXLocalization.Avalonia |
Avalonia LocalizeExtension, LocalizeEnumExtension, LocalizeEnumConverter |
RentADeveloper.ResXLocalization.WPF |
WPF LocalizeExtension, LocalizeEnumExtension, LocalizeEnumConverter |
Register the ambient instance so it can be injected as ILocalizer:
services.AddSingleton<ILocalizer>(_ => Localizer.Current);Alternatively, assign a DI-owned implementation to Localizer.Current before creating views. The
property rejects null, and the markup extensions always use its current value.
Prefer generated ResourceKey values: they bind a compile-checked name directly to its resource
manager. Scoped string lookups accept a key and manager, while search-all lookups inspect registered
managers in registration order.
Normal .NET ResourceManager fallback applies:
| Situation | Result | TranslationNotFound |
|---|---|---|
de-DE entry exists |
de-DE value |
No |
Missing in de-DE, exists in de |
Parent de value |
No |
| Missing in satellite, exists in neutral resources | Neutral value | No |
| Missing across the complete fallback chain | !key! by default |
Yes |
Localizer.MissingTranslationFormat changes the sentinel. Because fallback runs first, a key that resolves
from a parent or neutral value does not count as missing - the sentinel and Localizer.TranslationNotFound
report unresolvable keys, not incomplete per-language coverage.
Formatting overloads (Get(key, args…)) pass the resolved text and arguments to String.Format
using the localizer's current culture.
Localizer.Current lives for the whole process, so a strong CultureChanged subscription keeps its
subscriber alive. Short-lived subscribers - a view model owned by a window, for example - should
unsubscribe when they are disposed (the sample view models show the pattern).
A string shows up as !key!. The key could not be resolved in the current culture's complete
fallback chain. Check that the key exists in the neutral .resx, and - for search-all lookups like
{l:Localize Greeting} or {l:LocalizeEnum} - that the resource manager was registered via
RegisterResourceManager. Subscribe to TranslationNotFound to log every miss.
No typed …Keys class is generated.
- Ensure the neutral filename is dot-free and a same-folder classic
.Designer.csexists. - Use the .NET 8 SDK or later. An older compiler may reject the generator with
CS9057. - SDK
GenerateResxSourceoutput lives underobjand does not qualify; usePublicResXFileCodeGeneratororResXFileCodeGenerator. RXLGEN001identifies malformed eligible.resxXML and points at the source file.RXLGEN002identifies a missing or unrecognized same-folder classic accessor.
Native AOT publishing (Avalonia). Publish with PublishAot=true and list the shipped cultures
in SatelliteResourceLanguages so the satellite assemblies are retained. WPF does not support
Native AOT.
Avalonia version resolution. The Avalonia package declares 12.0.5 as its minimum so it still builds under the .NET 8 SDK; applications building with a current SDK resolve Avalonia 12.1+ normally.
Two complete, runnable showcases exercise every feature and combination - a scrolling window with a live language ComboBox:
Run them:
dotnet run --project samples/ResXLocalization.Avalonia.Sample
dotnet run --project samples/ResXLocalization.WPF.Sample # Windows onlyYou need the .NET 10 SDK (see global.json); the produced packages target .NET 8 and .NET 10.
# Build everything (must be 0 warnings / 0 errors - warnings are promoted to errors).
dotnet build ResXLocalization.slnx -c Release # Windows (includes WPF)
dotnet build ResXLocalization.NonWindows.slnf -c Release # Linux/macOS (skips WPF)See CONTRIBUTING.md for running the test suites, packing the NuGet packages, and formatting the code before committing.
This project follows Semantic Versioning. See the CHANGELOG for the history of changes.
Contributions are welcome! Please read CONTRIBUTING.md first. In short: open an issue to discuss larger changes, keep the build warning-free, update the CHANGELOG.md, and make sure the tests pass.
Released under the MIT License. © 2026 David Liebeherr.
Thank you Mike James from AvaloniaUI OÜ for the written permission to use Avalonia in the name of the ResXLocalization.Avalonia NuGet package.
Avalonia is a registered trademark of AvaloniaUI OÜ. This project is not affiliated with or endorsed by AvaloniaUI OÜ.
David Liebeherr - rent-a-developer 📧 info@rent-a-developer.de
If this library saves you time, a ⭐ on GitHub is appreciated!
