vote up 0 vote down star

Our client recently decided that compiled resource files (such as the usual de-DE\Foo.resources.dll) are not adequate to their needs and that they need to edit the resources (mainly strings) themselves without recompiling.

Now we have built everything with what Visual Studio / Winforms provide us with so far. So every Form has Form.Localizable = true and we're using the default approach to resource files. VS helpfully generates classes here as well which makes accessing those a snap.

Now with many Forms already there it would be rather painful to completely re-write resource access from scratch to use something else than the automatically provided facilities. In fact, with Form.Localizable the designer already generates the needed lookups itself for every control that needs it:

resources.ApplyResources(this.fooLabel, "fooLabel");

so we'd have to recreate that as well which I'd rather avoid, unless we can somehow hook into that that the resource manager uses another implementation.

And we probably need to find out the correct language to use when doing everything ourselves. Something a ResourceManager already does, too.

Is there a nice way to provide uncompiled resource files (I think the easiest way would be to just copy the .resx files to the output folder and parse them at runtime) and have everything working like it does now without touching every part that uses resources? Or is that generally impossible?

I found some ways for ASP.NET but apparently the resource model used by Windows Forms isn't as flexible.

flag

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.