Using Hashtable as DataContext (for WPF/XAML Binding)
问题 In code I have a Hashtable named MyHashtable . This Hashtable contains an element with key= "Value" , value= 3 . I'm currently trying to bind this value to a textbox. This is my XAML code: <TextBlock Margin="4" Text="{Binding MyHashtable[Value]}" /> <TextBlock Margin="4" DataContext="{Binding MyHashtable}" Text="{Binding [Value]}" /> Q: Why does the second binding not work, while the first binding works just great? For the second binding I have tried other bindings for the text, such as: