如何在WPF绑定中使用ResourceManager中的资源

时间:2011-09-24 15:11:16

标签: wpf xaml data-binding resourcemanager

有没有关于如何在WPF绑定中使用ResourceManager的好教程?我知道如何使用GetString函数来检索特定资源,但我也想在绑定中使用它。

类似

<TextBlock Text="{Binding Resource.EnterName}"/>

感谢

1 个答案:

答案 0 :(得分:2)

绑定不会做多少,除了获取值一次,因为资源不提供任何通知据我所知。您可以使用x:Static获取值,例如:

<TextBlock xmlns:prop="clr-namespace:AppAssemblyName.Properties"
           Text="{x:Static prop:Resources.ResourceName}"/>

(资源的访问者需要设置为公开)