What is the Relevence of Braces in an XAML Binding Path Declaration
问题 All, the question is a simple one. The following binding does not work, that is, the ascociated Trigger does not fire <DataTrigger Binding="{Binding dataAccess:DataGridTextSearch.IsAnyTextMatch, ElementName=dataGrid}" Value="false"> to fix this and make the binding work, we place the binding reference in braces, as follows <DataTrigger Binding="{Binding (dataAccess:DataGridTextSearch.IsAnyTextMatch), ElementName=dataGrid}" Value="false"> Why does adding the braces resolve the reference