标签: wpf xaml binding label
我有一个WPF标签,它绑定到视图模型中的属性:
<Label x:Name="Results" Content="{Binding Matching, String.Format='Results: {0}'}">
我试图将字符串与属性返回的数字连接起来,例如,如果Matching返回5,我想显示:
结果:5
但它不起作用。