C#代码转换此XAML标签内容绑定?

时间:2016-07-05 19:24:57

标签: c# wpf xaml

您好我有一个绑定到资源文件的标签。标签如下:

<Label Name="LabelName" Content="{x:Static p:Resources.LabelName}" />

如何将其转换为C#代码,以便我可以动态生成标签?

我试过

LabelName.SetBinding(ContentProperty, "{x:Static p:Resources.LabelName}");

但标签内容在屏幕上显示为空白。

谢谢。

1 个答案:

答案 0 :(得分:0)

LabelName.Content = WPFLocalization.Properties.Resources.LabelName;