[Enterprise Library]String Resource Tool[转]


在 Enterprise Library 的代码中,几乎每个项目我们都可以看到一个SR.strings 这样的文件。
这样的文件是为系统支持各个语言版本所作的工作。

简单来说,你需要在 SR.strings 中,书写各个本地化版本的异常信息、提示信息等信息。然后使用 String Resource Generator 工具产生对应的 .resx 文件以及对应的CS文件。

这样在代码中调用这个信息就可以用类似下面的代码进行调用:

    this.primitivesResultsTextBox.Text +=
     SR.AddItemToCacheMessage(product.ProductID, product.ProductName, product.ProductPrice,
     this.enterNewItemForm.Expiration.ToString(),
     this.enterNewItemForm.Priority.ToString()) + "\r\n";
其中的SR类中的所有方法、属性,都是通过String Resource Generator 工具根据SR.strings 文件的配置生成的。

这个工具是 Martin 开发的。
有关这个工具的更加详细信息可以看:
http://projectdistributor.readify.net/Projects/Project.aspx?projectId=2
或者是 Martin 的Blog。


你可能感兴趣的:(resource)