您好我有一个绑定到资源文件的标签。标签如下:
<Label Name="LabelName" Content="{x:Static p:Resources.LabelName}" />
如何将其转换为C#代码,以便我可以动态生成标签?
我试过
LabelName.SetBinding(ContentProperty, "{x:Static p:Resources.LabelName}");
但标签内容在屏幕上显示为空白。
谢谢。
答案 0 :(得分:0)
LabelName.Content = WPFLocalization.Properties.Resources.LabelName;