Mark,
Possibly something like the Winforms designer. When you set the Localizable property on a form to true, it moves string resources (for example button text) to a resource file (Form1.Resx)
Another approach would be to be able to right click on a XAML file on the solution explorer and click Generate Resource or Add to Resource. This will parse the XAML and put all the strings in a resource. The resource can then be edited in the Visual Studio Resource editor. this approach would be used if the XAML was not created in Cider using the Localizable property.
Steve |