2

我正在使用资源文件进行翻译,典型的标签如下所示:

<Label Content="{x:Static Resx:FrmMngView.MsgLastModification}"/>

在某些情况下正在使用 StringFormat,我想翻译它们:

<TextBlock Text="{Binding Items.ItemCount, StringFormat=users: {0}}" />

其中“用户”一词在法语中的翻译是“utilisateur”。我如何在这里使用我的 resx 翻译密钥?

4

1 回答 1

2

您可以将整个格式字符串保存为资源并在Binding.StringFormat.

于 2012-07-10T21:01:32.060 回答