Reputation: 12268
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
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