Saber Amani
Saber Amani

Reputation: 6489

Best way to implement a multilingual application in silverlight and WPF

I have always been interested in how should I implement a multilingual applications and what or which way I should go to deal with this and also what's the best way to control the layouts in application scope? I've read many articles but the more read, the more confused I get. I want to know Is there any standard pattern to implement application such as this.

Any advice will be helpful.

Upvotes: 2

Views: 2119

Answers (2)

Haris Hasan
Haris Hasan

Reputation: 30097

I have found Location using MarkupExtension the best way to do localization in WPF and I also have successfully used it in one of my WPF projects.

It allows you to change the language of whole application at run-time. You can allow user to select and change language at run-time without requiring user to restart the app.

Upvotes: 1

Navid Rahmani
Navid Rahmani

Reputation: 7968

I'm currently developing a multilingual application, these links helped me a lot:

WPF Globalization and Localization Overview
WPF Localization Guidance
IMO working with BAML is very painful instead I'm using WPF localization extension now, It's very good library and very easy to use.

Upvotes: 1

Related Questions