Localization image resources in winforms?

The ResourceManager in . NET does not only do string localization. It can provide localized binary content of any kind, including images.

This means that you will never need to write logic to pick the relevant localized version of an image, and won't even need to manipulate image file paths. You just ask the ResourceManager to give you the image you want, and it will give you the appropriate language version of this image (depending on the current UICulture ).

I would use resource files. They work something like this: "if using this language, load 'Button1A. Jpg', if using other language, load 'Button1B.

Jpg'", etc. I'm not sure of the syntax or how to implement them, but I'm pretty sure you can specify a language/locale somewhere (or maybe it gets specified for you based on Windows settings), and you just provide which image to use when and it'll do the rest for you.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions