bkm*_*tan 3 wpf xaml string-formatting visual-studio-2008-sp1
我在使用 stringformat 绑定的 WPF 的 VS 2008 SP1 中遇到错误,wpf 在 vs 2008 中是否存在固有问题?
预期的错误 1 ' ConstituentCrossrateGridControl.xaml 70 141 PriceViewWpfLibrary
正如错误消息所暗示的那样,尝试将您的 StringFormat 值括在单引号中。例如:
<TextBlock Text="{Binding StringFormat='{}{0:N}'}" />
Run Code Online (Sandbox Code Playgroud)