Noel Kennedy
Noel Kennedy

Reputation: 12268

Are there any tools that support resx localization refactoring in xaml?

For example, using resharper in c# code I can perform a 'Move to resource' refactor on a string literal. Resharper will move the hard-coded string to a resx file and replace my c# with a reference to the strongly typed resource. This is very useful when writing a globalized application. I am looking for a tool with similar functionality but for xaml.

Upvotes: 5

Views: 937

Answers (1)

Jura Gorohovsky
Jura Gorohovsky

Reputation: 10148

ReSharper's Move to Resource actually does support XAML but only in WPF projects. Silverlight and WP7 are not currently supported.

Upvotes: 3

Related Questions